edl-relight / README.md
jayhsu0627
minor
d4ff430
metadata
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

from diffusers import StableVideoDiffusionPipeline
pipe = StableVideoDiffusionPipeline.from_pretrained(
    "your-username/my-video-relight-model", torch_dtype=torch.float16
).to("cuda")
...