Skip to content

Releases: nateraw/stable-diffusion-videos

0.9.2

Choose a tag to compare

@nateraw nateraw released this 16 Dec 08:16
819851c

What's Changed

Full Changelog: v0.9.1...v0.9.2

v0.9.1

Choose a tag to compare

@nateraw nateraw released this 21 Sep 05:10
984f950

What's Changed

  • fix some bugs
  • pkg: convert setup.py to standard pyproject.toml by @Borda in #208

Full Changelog: v0.9.0...v0.9.1

0.9.0

Choose a tag to compare

@nateraw nateraw released this 07 May 03:19
a7c5ad6

What's Changed

New Contributors

Full Changelog: v0.8.1...v0.9.0

0.8.1

Choose a tag to compare

@nateraw nateraw released this 20 Jan 22:00
dbc988d

What's Changed

New Contributors

Full Changelog: v0.8.0...v0.8.1

0.8.0

Choose a tag to compare

@nateraw nateraw released this 06 Jan 20:41
6162a04

What's Changed

Full Changelog: v0.7.1...v0.8.0

0.7.1

Choose a tag to compare

@nateraw nateraw released this 05 Dec 18:14
85cd3fa

What's Changed

Full Changelog: v0.7.0...v0.7.1

0.7.0

Choose a tag to compare

@nateraw nateraw released this 05 Dec 17:56
c1871c1

What's Changed

New Contributors

Full Changelog: v0.6.2...v0.7.0

0.6.2

Choose a tag to compare

@nateraw nateraw released this 25 Oct 20:55
1dbc2c0

What's Changed

Full Changelog: v0.6.1...v0.6.2

0.6.1

Choose a tag to compare

@nateraw nateraw released this 22 Oct 03:49
d2ac212

This release just pins av<10.0.0 as the latest version breaks torchvision.io.write_video, which we use in this package.

What's Changed

Full Changelog: v0.6.0...v0.6.1

0.6.0

Choose a tag to compare

@nateraw nateraw released this 20 Oct 03:26
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