|
from diffusers import DiffusionPipeline |
|
from .invert import Inverter |
|
from .generate import Generator |
|
from .utils import init_model, seed_everything, get_frame_ids |
|
import torch |
|
from omegaconf import OmegaConf |
|
|
|
class VidToMePipeline(DiffusionPipeline): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, device="cuda", sd_version="1.5", float_precision="fp16", height=512, width=512): |
|
|
|
self.register_to_config(device=device, sd_version=sd_version, float_precision=float_precision, height=height, width=width) |
|
self.sd_version = sd_version |
|
self.float_precision = float_precision |
|
self.height = height |
|
self.width = width |
|
|
|
pipe, scheduler, model_key = init_model(device, sd_version, None, "none", float_precision) |
|
self.pipe = pipe |
|
self.scheduler = scheduler |
|
self.model_key = model_key |
|
super().__init__() |
|
|
|
def __call__(self, video_path=None, video_prompt=None, edit_prompt=None, |
|
control_type="none", n_timesteps=50, guidance_scale=7.5, |
|
negative_prompt="ugly, blurry, low res", frame_range=None, |
|
use_lora=False, seed=123, local_merge_ratio=0.9, global_merge_ratio=0.8): |
|
|
|
|
|
config = self._build_config(video_path, video_prompt, edit_prompt, control_type, |
|
n_timesteps, guidance_scale, negative_prompt, |
|
frame_range, use_lora, seed, local_merge_ratio, global_merge_ratio) |
|
|
|
|
|
seed_everything(config['seed']) |
|
|
|
|
|
print("Start inversion!") |
|
inversion = Inverter(self.pipe, self.scheduler, config) |
|
inversion(config['input_path'], config['inversion']['save_path']) |
|
|
|
|
|
print("Start generation!") |
|
generator = Generator(self.pipe, self.scheduler, config) |
|
frame_ids = get_frame_ids(config['generation']['frame_range'], None) |
|
generator(config['input_path'], config['generation']['latents_path'], |
|
config['generation']['output_path'], frame_ids=frame_ids) |
|
print(f"Output generated at: {config['generation']['output_path']}") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from omegaconf import OmegaConf |
|
|
|
def _build_config(self, video_path, video_prompt, edit_prompt, control_type, |
|
n_timesteps, guidance_scale, negative_prompt, frame_range, |
|
use_lora, seed, local_merge_ratio, global_merge_ratio): |
|
|
|
config = OmegaConf.create({ |
|
'sd_version': '1.5', |
|
'input_path': video_path, |
|
'work_dir': "outputs/", |
|
'height': 512, |
|
'width': 512, |
|
'inversion': { |
|
'prompt': video_prompt or "Default video prompt.", |
|
'save_path': "outputs/latents", |
|
'steps': 50, |
|
'save_intermediate': False |
|
}, |
|
'generation': { |
|
'control': control_type, |
|
'guidance_scale': guidance_scale, |
|
'n_timesteps': n_timesteps, |
|
'negative_prompt': negative_prompt, |
|
'prompt': edit_prompt or "Default edit prompt.", |
|
'latents_path': "outputs/latents", |
|
'output_path': "outputs/final", |
|
'frame_range': frame_range or [0, 32], |
|
'use_lora': use_lora, |
|
'local_merge_ratio': local_merge_ratio, |
|
'global_merge_ratio': global_merge_ratio |
|
}, |
|
'seed': seed, |
|
'device': "cuda", |
|
'float_precision': "fp16" |
|
}) |
|
|
|
return config |
|
|
|
|
|
|
|
|
|
|
|
|