New Interface!
The interface is now a wrapper of the pipeline, which lets you use any pipeline instance you'd like in the app.
python
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
* :sparkles: add name to img generation, tiled attr to pipe by nateraw in https://github.com/nateraw/stable-diffusion-videos/pull/78
* Updates for diffusers 0.5.1 by nateraw in https://github.com/nateraw/stable-diffusion-videos/pull/82
* Cleanup and fix tests by nateraw in https://github.com/nateraw/stable-diffusion-videos/pull/84
* New interface by nateraw in https://github.com/nateraw/stable-diffusion-videos/pull/85
* Update notebook with new interface + access msg by nateraw in https://github.com/nateraw/stable-diffusion-videos/pull/86
* Updates for diffusers 0.6.0 and release 0.6.0 by nateraw in https://github.com/nateraw/stable-diffusion-videos/pull/87
**Full Changelog**: https://github.com/nateraw/stable-diffusion-videos/compare/v0.5.3...v0.6.0