File size: 472 Bytes
b4c07a1 d4ff430 b4c07a1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ---
tags:
- video-diffusion
- relighting
- stable-diffusion
license: apache-2.0
library_name: diffusers
pipeline_tag: image-to-video
---
# My Video Relight Model
This model was fine-tuned to perform video relighting using Stable Video Diffusion.
...
## Usage
```python
from diffusers import StableVideoDiffusionPipeline
pipe = StableVideoDiffusionPipeline.from_pretrained(
"your-username/my-video-relight-model", torch_dtype=torch.float16
).to("cuda")
...
|