Skip to content

Releases: nateraw/stable-diffusion-videos

0.5.2

10 Oct 18:06
b7e176d
Compare
Choose a tag to compare

Release 0.5.1 failed because I didn't update the version in init.py properly. retrying.

What's Changed

Full Changelog: v0.5.1...v0.5.2

0.5.1

10 Oct 18:02
223cc70
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.5.1

v0.5.0

07 Oct 21:32
4e98524
Compare
Choose a tag to compare

What's Changed

🔥 This PR introduced ability to make music videos that interpolate to the beat of the song!!

Full Changelog: v0.4.0...v0.5.0

0.4.0

06 Oct 19:21
2fb40bd
Compare
Choose a tag to compare

What's Changed

  • CD: allow from draft by @Borda in #51
  • use lerp for text by default by @nateraw in #55
  • added param typing to walk function and updated the walk function to take in num_steps as a list by @danielpatrickhug in #52
  • Rename num_steps to num_interpolation_steps by @nateraw in #61
  • Update version to 0.4.0 by @nateraw in #62

New Contributors

Full Changelog: v0.3.0...v0.4.0

0.3.0

21 Sep 06:07
50d1cb9
Compare
Choose a tag to compare

stable_diffusion_videos==0.3.0 🚀

Highlights

Resume Support 🔥

You can now resume unfinished runs instead of starting over. Just pass resume=True and we'll resume the run at <output_dir>/<name>.

from stable_diffusion_videos import walk

video_path = walk(
    output_dir='dreams',
    name='my_unfinished_run',
    resume=True  # All you need to do!
)

Thank you to @codefaux for adding this feature.

Batch Inference 🔥

We've been generating frames one at a time. It's a lot faster to do more than one instead. Play with the batch_size kwarg until you go out of memory, then reduce the value by 1. For me, I am able to do batch_size=4 on a V100 16GB, which generates images ~20% faster.

from stable_diffusion_videos import walk

walk(
    prompts=['a cat', 'a dog'],
    seeds=[42, 123],
    batch_size=4,  # All you need to do!
    num_steps=60,
    make_video=True
)

What's Changed

New Contributors

Full Changelog: v0.2.0...v0.3.0

0.2.0

12 Sep 10:27
5ae166d
Compare
Choose a tag to compare

You can now do 4x upsampling (thanks to Real-ESRGAN) to make your results even more awesome!

What's Changed

Full Changelog: v0.1.2...v0.2.0

v0.1.2

09 Sep 03:06
4a3b971
Compare
Choose a tag to compare

What's Changed

  • Add prompt config, various utils and update to diffusers==0.3.0 by @nateraw in #17
  • Update version tag for 0.1.2 by @nateraw in #18

Full Changelog: v0.1.1...v0.1.2

0.1.1

07 Sep 22:00
e2ddeab
Compare
Choose a tag to compare

Try release again

0.1.0

07 Sep 18:48
6e3ec16
Compare
Choose a tag to compare

add pypi package