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
- ✨ add name to img generation, tiled attr to pipe by @nateraw in #78
- Updates for diffusers 0.5.1 by @nateraw in #82
- Cleanup and fix tests by @nateraw in #84
- New interface by @nateraw in #85
- Update notebook with new interface + access msg by @nateraw in #86
- Updates for diffusers 0.6.0 and release 0.6.0 by @nateraw in #87
Full Changelog: v0.5.3...v0.6.0