Skip to content

0.6.0

Compare
Choose a tag to compare
@nateraw nateraw released this 20 Oct 03:26
· 99 commits to main since this release
9a3919e

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