metadata
license: creativeml-openrail-m
base_model: kyujinpy/KO-anything-v4-5
training_prompt: A bear is playing guitar
tags:
- tune-a-video
- text-to-video
- diffusers
- korean
inference: false
Tune-A-VideKO-anything
Github: Kyujinpy/Tune-A-VideKO
Model Description
- Base model: kyujinpy/KO-anything-v4-5
- Training prompt: A bear is playing guitar
Samples
Test prompt: 1์๋ ๋ ๊ธฐํ๋ฅผ ์ฐ์ฃผํ๊ณ ์๋ค, ํฐ ๋จธ๋ฆฌ, ์ค๊ฐ ๋จธ๋ฆฌ, ๊ณ ์์ด ๊ท, ๊ท์ฌ์ด, ์ค์นดํ, ์ฌํท, ์ผ์ธ, ๊ฑฐ๋ฆฌ, ์๋
Test prompt: 1์๋ ๊ฐ ๊ธฐํ ์ฐ์ฃผ๋ฅผ ํ๊ณ ์์ต๋๋ค, ๋ฐ๋ค, ๋์ ๊ฐ์, ๊ธด ๋จธ๋ฆฌ, ์นด๋ฆฌ์ค๋ง
Test prompt: 1์๋ , ๊ธฐํ ์ฐ์ฃผ, ์์๊น, ์์์๋, ๋นจ๊ฐ์ ๊ธฐํ, ํด๋ณ
Usage
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-anything-v4-5"
unet_model_path = "kyujinpy/Tune-A-VideKO-anything"
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 = "1์๋
๋ ๊ธฐํ๋ฅผ ์ฐ์ฃผํ๊ณ ์๋ค, ํฐ ๋จธ๋ฆฌ, ์ค๊ฐ ๋จธ๋ฆฌ, ๊ณ ์์ด ๊ท, ๊ท์ฌ์ด, ์ค์นดํ, ์ฌํท, ์ผ์ธ, ๊ฑฐ๋ฆฌ, ์๋
"
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")
Related Papers:
- Tune-A-Video: One-Shot Tuning of Image Diffusion Models for Text-to-Video Generation
- Stable Diffusion: High-Resolution Image Synthesis with Latent Diffusion Models