Korean-stable-diffusion
Collection
ํ๊ตญ์ด stable diffusion: T2I & T2V
โข
5 items
โข
Updated
โข
1
Github: Kyujinpy/Tune-A-VideKO
Test prompt: ํ ๋ผ๊ฐ ๊ธฐํ๋ฅผ ์น๊ณ ์์ต๋๋ค, ๋ชจ๋ํ ๋์ฆ๋ ์คํ์ผ
Test prompt: ์์๊ธด ์์๊ฐ ๊ธฐํ๋ฅผ ์น๊ณ ์์ต๋๋ค, ๋ชจ๋ํ ๋์ฆ๋ ์คํ์ผ
Test prompt: ์ฌ์๊ฐ ๊ธฐํ๋ฅผ ์น๊ณ ์์ต๋๋ค, ๋ชจ๋ํ ๋์ฆ๋ ์คํ์ผ
Clone the github repo
git clone https://github.com/showlab/Tune-A-Video.git
Run inference code
from tuneavideo.pipelines.pipeline_tuneavideo import TuneAVideoPipeline
from tuneavideo.models.unet import UNet3DConditionModel
from tuneavideo.util import save_videos_grid
import torch
pretrained_model_path = "kyujinpy/KO-stable-diffusion-disney"
unet_model_path = "kyujinpy/Tune-A-VideKO-disney"
unet = UNet3DConditionModel.from_pretrained(unet_model_path, subfolder='unet', torch_dtype=torch.float16).to('cuda')
pipe = TuneAVideoPipeline.from_pretrained(pretrained_model_path, unet=unet, torch_dtype=torch.float16).to("cuda")
pipe.enable_xformers_memory_efficient_attention()
prompt = "์ฌ์๊ฐ ๊ธฐํ๋ฅผ ์น๊ณ ์์ต๋๋ค, ๋ชจ๋ํ ๋์ฆ๋ ์คํ์ผ"
video = pipe(prompt, video_length=14, height=512, width=512, num_inference_steps=50, guidance_scale=7.5).videos
save_videos_grid(video, f"./{prompt}.gif")
Unable to build the model tree, the base model loops to the model itself. Learn more.