Created
September 16, 2022 01:39
-
-
Save Sentdex/f9519adf3b0ac79370d2c0e31b00593b to your computer and use it in GitHub Desktop.
example for making stable diffusion video w/ interpolation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from stable_diffusion_videos.stable_diffusion_walk import walk | |
prompt_n_seed = { | |
"1965 Porsche 911": 743, | |
"1975 Porsche 911": 140, | |
"1985 Porsche 911": 40, | |
"1995 Porsche 911": 560, | |
"2005 Porsche 911 directly facing camera": 996, | |
"2015 Porsche 911": 283, | |
"2020 Porsche 911": 116, | |
"2020 Porsche 911 GT3 RS": 277, | |
} | |
walk(prompts=list(prompt_n_seed.keys()), | |
seeds=list(prompt_n_seed.values()), | |
make_video=True, | |
name="porschevolution", | |
num_steps=200, | |
use_lerp_for_text=True, | |
upscale=True | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
请问如何使用?