github nateraw/stable-diffusion-videos v0.6.0
0.6.0

latest releases: v0.8.1, v0.8.0, v0.7.1...
20 months ago

New Interface!

The interface is now a wrapper of the pipeline, which lets you use any pipeline instance you'd like in the app.

from stable_diffusion_videos import StableDiffusionWalkPipeline, Interface
import torch

pipeline = StableDiffusionWalkPipeline.from_pretrained(
    "CompVis/stable-diffusion-v1-4",
    torch_dtype=torch.float16,
    revision="fp16",
).to("cuda")

interface = Interface(pipeline)
interface.launch(debug=True)

What's Changed

Full Changelog: v0.5.3...v0.6.0

Don't miss a new stable-diffusion-videos release

NewReleases is sending notifications on new releases.