An open API service indexing awesome lists of open source software.

https://github.com/srpkdyy/VideoLDM

Unofficial PyTorch implementation of the VideoLDM.
https://github.com/srpkdyy/VideoLDM

Last synced: 6 months ago
JSON representation

Unofficial PyTorch implementation of the VideoLDM.

Awesome Lists containing this project

README

          

# Video LDM

![model](assets/4-Figure4-1.png)

## Overview

This is an unofficial PyTorch implementation of the following paper.

> **Align your Latents: High-Resolution Video Synthesis with Latent Diffusion Models**

> Andreas Blattmann, Robin Rombach, Huan Ling, Tim Dockhorn, Seung Wook Kim, Sanja Fidler, Karsten Kreis

> https://arxiv.org/abs/2304.08818

## Usage

```python
from videoldm import VideoLDM

model = VideoLDM.from_pretrained(
'CompVis/stable-diffusion-v1-4',
subfolder='unet',
low_cpu_mem_usage=False
)
```

## Comments
- This code builds on [diffusers](https://huggingface.co/docs/diffusers/index). Thanks for open-sourcing!