forked from alibaba/animate-anything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
train.py
871 lines (724 loc) · 32.8 KB
/
train.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
import argparse
import datetime
import logging
import inspect
import math
import os
import json
import gc
import copy
import random
from typing import Dict, Optional, Tuple
from omegaconf import OmegaConf
import cv2
import torch
import torch.nn.functional as F
import torch.utils.checkpoint
import torchvision.transforms as T
import diffusers
import transformers
import numpy as np
from tqdm.auto import tqdm
from PIL import Image
from accelerate import Accelerator
from accelerate.logging import get_logger
from accelerate.utils import set_seed
from diffusers.models import AutoencoderKL
from diffusers import DPMSolverMultistepScheduler, DDPMScheduler
from diffusers.image_processor import VaeImageProcessor
from diffusers.optimization import get_scheduler
from diffusers.utils import check_min_version
from diffusers.utils.import_utils import is_xformers_available
from diffusers.models.attention_processor import AttnProcessor2_0, Attention
from diffusers.models.attention import BasicTransformerBlock
from diffusers.schedulers.scheduling_ddim import rescale_zero_terminal_snr
from transformers import CLIPTextModel, CLIPTokenizer
from transformers.models.clip.modeling_clip import CLIPEncoder
from utils.dataset import get_train_dataset, extend_datasets
from einops import rearrange, repeat
import imageio
from models.unet_3d_condition_mask import UNet3DConditionModel
from models.pipeline import LatentToVideoPipeline
from utils.common import read_mask, generate_random_mask, slerp, calculate_motion_score, \
read_video, calculate_motion_precision, calculate_latent_motion_score, \
DDPM_forward, DDPM_forward_timesteps, DDPM_forward_mask, motion_mask_loss, \
generate_center_mask, tensor_to_vae_latent
already_printed_trainables = False
logger = get_logger(__name__, log_level="INFO")
def create_logging(logging, logger, accelerator):
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
datefmt="%m/%d/%Y %H:%M:%S",
level=logging.INFO,
)
logger.info(accelerator.state, main_process_only=False)
def accelerate_set_verbose(accelerator):
if accelerator.is_local_main_process:
transformers.utils.logging.set_verbosity_warning()
diffusers.utils.logging.set_verbosity_info()
else:
transformers.utils.logging.set_verbosity_error()
diffusers.utils.logging.set_verbosity_error()
def create_output_folders(output_dir, config):
now = datetime.datetime.now().strftime("%Y-%m-%dT%H-%M-%S")
out_dir = os.path.join(output_dir, f"train_{now}")
os.makedirs(out_dir, exist_ok=True)
os.makedirs(f"{out_dir}/samples", exist_ok=True)
OmegaConf.save(config, os.path.join(out_dir, 'config.yaml'))
return out_dir
def load_primary_models(pretrained_model_path, in_channels=-1, motion_strength=False):
noise_scheduler = DDPMScheduler.from_pretrained(pretrained_model_path, subfolder="scheduler")
tokenizer = CLIPTokenizer.from_pretrained(pretrained_model_path, subfolder="tokenizer")
text_encoder = CLIPTextModel.from_pretrained(pretrained_model_path, subfolder="text_encoder")
vae = AutoencoderKL.from_pretrained(pretrained_model_path, subfolder="vae")
unet = UNet3DConditionModel.from_pretrained(pretrained_model_path, subfolder="unet")
if in_channels>0 and unet.config.in_channels != in_channels:
#first time init, modify unet conv in
unet2 = unet
unet = UNet3DConditionModel.from_pretrained(pretrained_model_path, subfolder="unet",
in_channels=in_channels,
low_cpu_mem_usage=False, device_map=None, ignore_mismatched_sizes=True,
motion_strength=motion_strength)
unet.conv_in.bias.data = copy.deepcopy(unet2.conv_in.bias)
torch.nn.init.zeros_(unet.conv_in.weight)
load_in_channel = unet2.conv_in.weight.data.shape[1]
unet.conv_in.weight.data[:,in_channels-load_in_channel:]= copy.deepcopy(unet2.conv_in.weight.data)
del unet2
return noise_scheduler, tokenizer, text_encoder, vae, unet
def unet_and_text_g_c(unet, text_encoder, unet_enable, text_enable):
if unet_enable:
unet.enable_gradient_checkpointing()
else:
unet.disable_gradient_checkpointing()
if text_enable:
text_encoder.gradient_checkpointing_enable()
else:
text_encoder.gradient_checkpointing_disable()
def freeze_models(models_to_freeze):
for model in models_to_freeze:
if model is not None: model.requires_grad_(False)
def is_attn(name):
return ('attn1' or 'attn2' == name.split('.')[-1])
def set_processors(attentions):
for attn in attentions: attn.set_processor(AttnProcessor2_0())
def set_torch_2_attn(unet):
optim_count = 0
for name, module in unet.named_modules():
if is_attn(name):
if isinstance(module, torch.nn.ModuleList):
for m in module:
if isinstance(m, BasicTransformerBlock):
set_processors([m.attn1, m.attn2])
optim_count += 1
if optim_count > 0:
print(f"{optim_count} Attention layers using Scaled Dot Product Attention.")
def handle_memory_attention(enable_xformers_memory_efficient_attention, enable_torch_2_attn, unet):
try:
is_torch_2 = hasattr(F, 'scaled_dot_product_attention')
enable_torch_2 = is_torch_2 and enable_torch_2_attn
if enable_xformers_memory_efficient_attention and not enable_torch_2:
if is_xformers_available():
from xformers.ops import MemoryEfficientAttentionFlashAttentionOp
unet.enable_xformers_memory_efficient_attention(attention_op=MemoryEfficientAttentionFlashAttentionOp)
else:
raise ValueError("xformers is not available. Make sure it is installed correctly")
if enable_torch_2:
set_torch_2_attn(unet)
except:
print("Could not enable memory efficient attention for xformers or Torch 2.0.")
def param_optim(model, condition, extra_params=None, is_lora=False, negation=None):
extra_params = extra_params if len(extra_params.keys()) > 0 else None
return {
"model": model,
"condition": condition,
'extra_params': extra_params,
'is_lora': is_lora,
"negation": negation
}
def create_optim_params(name='param', params=None, lr=5e-6, extra_params=None):
params = {
"name": name,
"params": params,
"lr": lr
}
if extra_params is not None:
for k, v in extra_params.items():
params[k] = v
return params
def negate_params(name, negation):
# We have to do this if we are co-training with LoRA.
# This ensures that parameter groups aren't duplicated.
if negation is None: return False
for n in negation:
if n in name and 'temp' not in name:
return True
return False
def create_optimizer_params(model_list, lr):
import itertools
optimizer_params = []
for optim in model_list:
model, condition, extra_params, is_lora, negation = optim.values()
for n, p in model.named_parameters():
if p.requires_grad:
params = create_optim_params(n, p, lr, extra_params)
optimizer_params.append(params)
return optimizer_params
def get_optimizer(use_8bit_adam):
if use_8bit_adam:
try:
import bitsandbytes as bnb
except ImportError:
raise ImportError(
"Please install bitsandbytes to use 8-bit Adam. You can do so by running `pip install bitsandbytes`"
)
return bnb.optim.AdamW8bit
else:
return torch.optim.AdamW
def is_mixed_precision(accelerator):
weight_dtype = torch.float32
if accelerator.mixed_precision == "fp16":
weight_dtype = torch.float16
elif accelerator.mixed_precision == "bf16":
weight_dtype = torch.bfloat16
return weight_dtype
def cast_to_gpu_and_type(model_list, device, weight_dtype):
for model in model_list:
if model is not None: model.to(device, dtype=weight_dtype)
def handle_trainable_modules(model, trainable_modules=None, is_enabled=True, negation=None):
global already_printed_trainables
# This can most definitely be refactored :-)
unfrozen_params = 0
if trainable_modules is not None:
for name, module in model.named_modules():
for tm in tuple(trainable_modules):
if tm == 'all':
model.requires_grad_(is_enabled)
unfrozen_params =len(list(model.parameters()))
break
if tm in name and 'lora' not in name:
for m in module.parameters():
m.requires_grad_(is_enabled)
if is_enabled: unfrozen_params +=1
if unfrozen_params > 0 and not already_printed_trainables:
already_printed_trainables = True
print(f"{unfrozen_params} params have been unfrozen for training.")
def sample_noise(latents, noise_strength, use_offset_noise=False):
b ,c, f, *_ = latents.shape
noise_latents = torch.randn_like(latents, device=latents.device)
offset_noise = None
if use_offset_noise:
offset_noise = torch.randn(b, c, f, 1, 1, device=latents.device)
noise_latents = noise_latents + noise_strength * offset_noise
return noise_latents
def should_sample(global_step, validation_steps, validation_data):
return (global_step % validation_steps == 0 or global_step == 5) \
and validation_data.sample_preview
def save_pipe(
path,
global_step,
accelerator,
unet,
text_encoder,
vae,
output_dir,
is_checkpoint=False,
save_pretrained_model=True
):
if is_checkpoint:
save_path = os.path.join(output_dir, f"checkpoint-{global_step}")
os.makedirs(save_path, exist_ok=True)
else:
save_path = output_dir
# Copy the model without creating a reference to it. This allows keeping the state of our lora training if enabled.
unet_out = copy.deepcopy(unet)
text_encoder_out = copy.deepcopy(text_encoder)
vae_out = copy.deepcopy(vae)
pipeline = TextToVideoSDPipeline.from_pretrained(
path,
unet=unet_out,
text_encoder=text_encoder_out,
vae=vae_out,
).to(torch_dtype=torch.float32)
if save_pretrained_model:
pipeline.save_pretrained(save_path)
logger.info(f"Saved model at {save_path} on step {global_step}")
del pipeline
del unet_out
del text_encoder_out
del vae_out
torch.cuda.empty_cache()
gc.collect()
def replace_prompt(prompt, token, wlist):
for w in wlist:
if w in prompt: return prompt.replace(w, token)
return prompt
def prompt_image(image, processor, encoder):
if type(image) == str:
image = Image.open(image)
image = processor(images=image, return_tensors="pt")['pixel_values']
image = image.to(encoder.device).to(encoder.dtype)
inputs = encoder(image).pooler_output.to(encoder.dtype).unsqueeze(1)
#inputs = encoder(image).last_hidden_state.to(encoder.dtype)
return inputs
def main(
pretrained_model_path: str,
output_dir: str,
train_data: Dict,
validation_data: Dict,
extra_train_data: list = [],
dataset_types: Tuple[str] = ('json'),
shuffle: bool = True,
validation_steps: int = 100,
trainable_modules: Tuple[str] = None, # Eg: ("attn1", "attn2")
not_trainable_modules = [],
extra_unet_params = None,
extra_text_encoder_params = None,
train_batch_size: int = 1,
max_train_steps: int = 500,
learning_rate: float = 5e-5,
scale_lr: bool = False,
lr_scheduler: str = "constant_with_warmup",
lr_warmup_steps: int = 20,
adam_beta1: float = 0.9,
adam_beta2: float = 0.999,
adam_weight_decay: float = 1e-2,
adam_epsilon: float = 1e-08,
max_grad_norm: float = 1.0,
gradient_accumulation_steps: int = 1,
gradient_checkpointing: bool = False,
text_encoder_gradient_checkpointing: bool = False,
checkpointing_steps: int = 500,
resume_from_checkpoint: Optional[str] = None,
resume_step: Optional[int] = None,
mixed_precision: Optional[str] = "fp16",
use_8bit_adam: bool = False,
enable_xformers_memory_efficient_attention: bool = True,
enable_torch_2_attn: bool = False,
seed: Optional[int] = None,
use_offset_noise: bool = False,
rescale_schedule: bool = False,
offset_noise_strength: float = 0.1,
extend_dataset: bool = False,
cache_latents: bool = False,
cached_latent_dir = None,
save_pretrained_model: bool = True,
logger_type: str = 'tensorboard',
motion_mask=False,
motion_strength=False,
in_channels=5,
**kwargs
):
*_, config = inspect.getargvalues(inspect.currentframe())
accelerator = Accelerator(
gradient_accumulation_steps=gradient_accumulation_steps,
mixed_precision=mixed_precision,
log_with=logger_type,
project_dir=output_dir
)
# Make one log on every process with the configuration for debugging.
create_logging(logging, logger, accelerator)
# Initialize accelerate, transformers, and diffusers warnings
accelerate_set_verbose(accelerator)
# If passed along, set the training seed now.
if seed is not None:
set_seed(seed)
# Handle the output folder creation
if accelerator.is_main_process:
output_dir = create_output_folders(output_dir, config)
# Load scheduler, tokenizer and models.
noise_scheduler, tokenizer, text_encoder, vae, unet = load_primary_models(pretrained_model_path, in_channels, motion_strength=motion_strength)
vae_processor = VaeImageProcessor()
# Freeze any necessary models
freeze_models([vae, text_encoder, unet])
# Enable xformers if available
handle_memory_attention(enable_xformers_memory_efficient_attention, enable_torch_2_attn, unet)
if scale_lr:
learning_rate = (
learning_rate * gradient_accumulation_steps * train_batch_size * accelerator.num_processes
)
# Initialize the optimizer
optimizer_cls = get_optimizer(use_8bit_adam)
# Create parameters to optimize over with a condition (if "condition" is true, optimize it)
extra_unet_params = extra_unet_params if extra_unet_params is not None else {}
extra_text_encoder_params = extra_unet_params if extra_unet_params is not None else {}
trainable_modules_available = trainable_modules is not None
# Unfreeze UNET Layers
if trainable_modules_available:
unet.train()
handle_trainable_modules(
unet,
trainable_modules,
is_enabled=True,
)
optim_params = [
param_optim(unet, trainable_modules_available, extra_params=extra_unet_params),
]
params = create_optimizer_params(optim_params, learning_rate)
# Create Optimizer
optimizer = optimizer_cls(
params,
lr=learning_rate,
betas=(adam_beta1, adam_beta2),
weight_decay=adam_weight_decay,
eps=adam_epsilon,
)
# Scheduler
lr_scheduler = get_scheduler(
lr_scheduler,
optimizer=optimizer,
num_warmup_steps=lr_warmup_steps * gradient_accumulation_steps,
num_training_steps=max_train_steps * gradient_accumulation_steps,
)
# Get the training dataset based on types (json, single_video, image)
train_datasets = get_train_dataset(dataset_types, train_data, tokenizer)
# If you have extra train data, you can add a list of however many you would like.
# Eg: extra_train_data: [{: {dataset_types, train_data: {etc...}}}]
try:
if extra_train_data is not None and len(extra_train_data) > 0:
for dataset in extra_train_data:
d_t, t_d = dataset['dataset_types'], dataset['train_data']
train_datasets += get_train_dataset(d_t, t_d, tokenizer)
except Exception as e:
print(f"Could not process extra train datasets due to an error : {e}")
# Extend datasets that are less than the greatest one. This allows for more balanced training.
attrs = ['train_data', 'frames', 'image_dir', 'video_files']
extend_datasets(train_datasets, attrs, extend=extend_dataset)
# Process one dataset
if len(train_datasets) == 1:
train_dataset = train_datasets[0]
# Process many datasets
else:
train_dataset = torch.utils.data.ConcatDataset(train_datasets)
# DataLoaders creation:
train_dataloader = torch.utils.data.DataLoader(
train_dataset,
batch_size=train_batch_size,
shuffle=shuffle
)
# Prepare everything with our `accelerator`.
unet, optimizer, train_dataloader, lr_scheduler = accelerator.prepare(
unet,
optimizer,
train_dataloader,
lr_scheduler,
)
# Use Gradient Checkpointing if enabled.
unet_and_text_g_c(
unet,
text_encoder,
gradient_checkpointing,
text_encoder_gradient_checkpointing
)
# Enable VAE slicing to save memory.
vae.enable_slicing()
# For mixed precision training we cast the text_encoder and vae weights to half-precision
# as these models are only used for inference, keeping weights in full precision is not required.
weight_dtype = is_mixed_precision(accelerator)
# Move text encoders, and VAE to GPU
models_to_cast = [text_encoder, vae]
cast_to_gpu_and_type(models_to_cast, accelerator.device, weight_dtype)
# Fix noise schedules to predcit light and dark areas if available.
if not use_offset_noise and rescale_schedule:
noise_scheduler.betas = rescale_zero_terminal_snr(noise_scheduler.betas)
# We need to initialize the trackers we use, and also store our configuration.
# The trackers initializes automatically on the main process.
if accelerator.is_main_process:
accelerator.init_trackers("text2video-fine-tune")
# Train!
total_batch_size = train_batch_size * accelerator.num_processes * gradient_accumulation_steps
num_train_epochs = math.ceil(max_train_steps * gradient_accumulation_steps / len(train_dataloader) / accelerator.num_processes)
logger.info("***** Running training *****")
logger.info(f" Num examples = {len(train_dataset)}")
logger.info(f" Num Epochs = {num_train_epochs}")
logger.info(f" Instantaneous batch size per device = {train_batch_size}")
logger.info(f" Total train batch size (w. parallel, distributed & accumulation) = {total_batch_size}")
logger.info(f" Gradient Accumulation steps = {gradient_accumulation_steps}")
logger.info(f" Total optimization steps = {max_train_steps}")
global_step = 0
first_epoch = 0
# Only show the progress bar once on each machine.
progress_bar = tqdm(range(global_step, max_train_steps), disable=not accelerator.is_local_main_process)
progress_bar.set_description("Steps")
# *Potentially* Fixes gradient checkpointing training.
# See: https://github.com/prigoyal/pytorch_memonger/blob/master/tutorial/Checkpointing_for_PyTorch_models.ipynb
if kwargs.get('eval_train', False):
unet.eval()
text_encoder.eval()
uncond_input = tokenizer([""]*train_batch_size, padding="max_length", max_length=tokenizer.model_max_length,
truncation=True, return_tensors="pt").input_ids.to(accelerator.device)
for epoch in range(first_epoch, num_train_epochs):
train_loss = 0.0
for step, batch in enumerate(train_dataloader):
# Skip steps until we reach the resumed step
if resume_from_checkpoint and epoch == first_epoch and step < resume_step:
if step % gradient_accumulation_steps == 0:
progress_bar.update(1)
continue
with accelerator.accumulate(unet) ,accelerator.accumulate(text_encoder):
with accelerator.autocast():
loss, latents = finetune_unet(accelerator, batch, use_offset_noise, cache_latents, vae,
rescale_schedule, offset_noise_strength, text_encoder,
unet, noise_scheduler, uncond_input, motion_mask, motion_strength)
device = loss.device
# Gather the losses across all processes for logging (if we use distributed training).
avg_loss = accelerator.gather(loss.repeat(train_batch_size)).mean()
train_loss += avg_loss.item() / gradient_accumulation_steps
# Backpropagate
try:
accelerator.backward(loss)
params_to_clip = unet.parameters()
accelerator.clip_grad_norm_(params_to_clip, max_grad_norm)
optimizer.step()
lr_scheduler.step()
optimizer.zero_grad(set_to_none=True)
except Exception as e:
print(f"An error has occured during backpropogation! {e}")
continue
# Checks if the accelerator has performed an optimization step behind the scenes
if accelerator.sync_gradients:
progress_bar.update(1)
global_step += 1
accelerator.log({"train_loss": train_loss}, step=global_step)
train_loss = 0.0
if global_step % checkpointing_steps == 0 and accelerator.is_main_process:
save_pipe(
pretrained_model_path,
global_step,
accelerator,
accelerator.unwrap_model(unet),
accelerator.unwrap_model(text_encoder),
vae,
output_dir,
is_checkpoint=True,
save_pretrained_model=save_pretrained_model
)
if should_sample(global_step, validation_steps, validation_data) and accelerator.is_main_process:
if global_step == 1: print("Performing validation prompt.")
with accelerator.autocast():
batch_eval(accelerator.unwrap_model(unet), accelerator.unwrap_model(text_encoder), vae, vae_processor, pretrained_model_path,
validation_data, f"{output_dir}/samples", True, iters=1)
logs = {"step_loss": loss.detach().item(), "lr": lr_scheduler.get_last_lr()[0]}
accelerator.log({"training_loss": loss.detach().item()}, step=step)
progress_bar.set_postfix(**logs)
if global_step >= max_train_steps:
break
# Create the pipeline using the trained modules and save it.
accelerator.wait_for_everyone()
if accelerator.is_main_process:
save_pipe(
pretrained_model_path,
global_step,
accelerator,
accelerator.unwrap_model(unet),
accelerator.unwrap_model(text_encoder),
vae,
output_dir,
is_checkpoint=False,
save_pretrained_model=save_pretrained_model
)
accelerator.end_training()
def remove_noise(
scheduler,
original_samples: torch.FloatTensor,
noise: torch.FloatTensor,
timesteps: torch.IntTensor,
) -> torch.FloatTensor:
# Make sure alphas_cumprod and timestep have same device and dtype as original_samples
alphas_cumprod = scheduler.alphas_cumprod.to(device=original_samples.device, dtype=original_samples.dtype)
timesteps = timesteps.to(original_samples.device)
sqrt_alpha_prod = alphas_cumprod[timesteps] ** 0.5
sqrt_alpha_prod = sqrt_alpha_prod.flatten()
while len(sqrt_alpha_prod.shape) < len(original_samples.shape):
sqrt_alpha_prod = sqrt_alpha_prod.unsqueeze(-1)
sqrt_one_minus_alpha_prod = (1 - alphas_cumprod[timesteps]) ** 0.5
sqrt_one_minus_alpha_prod = sqrt_one_minus_alpha_prod.flatten()
while len(sqrt_one_minus_alpha_prod.shape) < len(original_samples.shape):
sqrt_one_minus_alpha_prod = sqrt_one_minus_alpha_prod.unsqueeze(-1)
removed = (original_samples - sqrt_one_minus_alpha_prod * noise)/sqrt_alpha_prod
return removed
def finetune_unet(accelerator, batch, use_offset_noise,
cache_latents, vae, rescale_schedule, offset_noise_strength,
text_encoder, unet, noise_scheduler, uncond_input,
motion_mask, motion_strength):
vae.eval()
dtype=vae.dtype
# Convert videos to latent space
pixel_values = batch["pixel_values"].to(dtype)
bsz = pixel_values.shape[0]
if not cache_latents:
latents = tensor_to_vae_latent(pixel_values, vae)
else:
latents = pixel_values
# Get video length
video_length = latents.shape[2]
condition_latent = latents[:,:, 0:1].detach().clone()
mask = batch["mask"]
mask = mask.div(255).to(dtype)
h, w = latents.shape[-2:]
mask = T.Resize((h, w), antialias=False)(mask)
mask[mask<0.5] = 0
mask[mask>=0.5] = 1
mask = rearrange(mask, 'b h w -> b 1 1 h w')
freeze = repeat(condition_latent, 'b c 1 h w -> b c f h w', f=video_length)
if motion_mask:
latents = freeze * (1-mask) + latents * mask
motion = batch["motion"]
latent_motion = calculate_latent_motion_score(latents)
# Sample noise that we'll add to the latents
use_offset_noise = use_offset_noise and not rescale_schedule
noise = sample_noise(latents, offset_noise_strength, use_offset_noise)
# Sample a random timestep for each video
timesteps = torch.randint(0, noise_scheduler.config.num_train_timesteps, (bsz,), device=latents.device)
timesteps = timesteps.long()
# Add noise to the latents according to the noise magnitude at each timestep
# (this is the forward diffusion process)
noisy_latents = noise_scheduler.add_noise(latents, noise, timesteps)
# Encode text embeddings
token_ids = batch['prompt_ids']
encoder_hidden_states = text_encoder(token_ids)[0]
uncond_hidden_states = text_encoder(uncond_input)[0]
# Get the target for loss depending on the prediction type
if noise_scheduler.config.prediction_type == "epsilon":
target = noise
elif noise_scheduler.config.prediction_type == "v_prediction":
target = noise_scheduler.get_velocity(latents, noise, timesteps)
else:
raise ValueError(f"Unknown prediction type {noise_scheduler.prediction_type}")
if random.random() < 0.15:
encoder_hidden_states = uncond_hidden_states
model_pred = unet(noisy_latents, timesteps, condition_latent=condition_latent, mask=mask,
encoder_hidden_states=encoder_hidden_states, motion=latent_motion).sample
loss = F.mse_loss(model_pred.float(), target.float(), reduction="mean")
predict_x0 = remove_noise(noise_scheduler, noisy_latents, model_pred, timesteps)
if motion_strength:
motion_loss = F.mse_loss(latent_motion,
calculate_latent_motion_score(predict_x0))
loss += 0.001 * motion_loss
return loss, latents
def eval(pipeline, vae_processor, validation_data, out_file, index, forward_t=25, preview=True):
vae = pipeline.vae
diffusion_scheduler = pipeline.scheduler
device = vae.device
dtype = vae.dtype
prompt = validation_data.prompt
pimg = Image.open(validation_data.prompt_image)
if pimg.mode == "RGBA":
pimg = pimg.convert("RGB")
width, height = pimg.size
scale = math.sqrt(width*height / (validation_data.height*validation_data.width))
validation_data.height = round(height/scale/8)*8
validation_data.width = round(width/scale/8)*8
input_image = vae_processor.preprocess(pimg, validation_data.height, validation_data.width)
input_image = input_image.unsqueeze(0).to(dtype).to(device)
input_image_latents = tensor_to_vae_latent(input_image, vae)
if 'mask' in validation_data:
mask = Image.open(validation_data.mask)
mask = mask.resize((validation_data.width, validation_data.height))
np_mask = np.array(mask)
np_mask[np_mask!=0]=255
else:
np_mask = np.ones([validation_data.height, validation_data.width], dtype=np.uint8)*255
out_mask_path = os.path.splitext(out_file)[0] + "_mask.jpg"
Image.fromarray(np_mask).save(out_mask_path)
initial_latents, timesteps = DDPM_forward_timesteps(input_image_latents, forward_t, validation_data.num_frames, diffusion_scheduler)
mask = T.ToTensor()(np_mask).to(dtype).to(device)
b, c, f, h, w = initial_latents.shape
mask = T.Resize([h, w], antialias=False)(mask)
mask = rearrange(mask, 'b h w -> b 1 1 h w')
motion_strength = validation_data.get("strength", index+3)
with torch.no_grad():
video_frames, video_latents = pipeline(
prompt=prompt,
latents=initial_latents,
width=validation_data.width,
height=validation_data.height,
num_frames=validation_data.num_frames,
num_inference_steps=validation_data.num_inference_steps,
guidance_scale=validation_data.guidance_scale,
condition_latent=input_image_latents,
mask=mask,
motion=[motion_strength],
return_dict=False,
timesteps=timesteps,
)
if preview:
fps = validation_data.get('fps', 8)
imageio.mimwrite(out_file, video_frames, duration=int(1000/fps), loop=0)
imageio.mimwrite(out_file.replace('gif', '.mp4'), video_frames, fps=fps)
real_motion_strength = calculate_latent_motion_score(video_latents).cpu().numpy()[0]
precision = calculate_motion_precision(video_frames, np_mask)
print(f"save file {out_file}, motion strength {motion_strength} -> {real_motion_strength}, motion precision {precision}")
del pipeline
torch.cuda.empty_cache()
return precision
def batch_eval(unet, text_encoder, vae, vae_processor, pretrained_model_path,
validation_data, output_dir, preview, global_step=0, iters=6):
device = vae.device
dtype = vae.dtype
unet.eval()
text_encoder.eval()
pipeline = LatentToVideoPipeline.from_pretrained(
pretrained_model_path,
text_encoder=text_encoder,
vae=vae,
unet=unet
)
diffusion_scheduler = DPMSolverMultistepScheduler.from_config(pipeline.scheduler.config)
diffusion_scheduler.set_timesteps(validation_data.num_inference_steps, device=device)
pipeline.scheduler = diffusion_scheduler
motion_errors = []
motion_precisions = []
motion_precision = 0
for t in range(iters):
name= os.path.basename(validation_data.prompt_image)
out_file_dir = f"{output_dir}/{name.split('.')[0]}"
os.makedirs(out_file_dir, exist_ok=True)
out_file = f"{out_file_dir}/{global_step+t}.gif"
precision = eval(pipeline, vae_processor,
validation_data, out_file, t, forward_t=validation_data.num_inference_steps, preview=preview)
motion_precision += precision
motion_precision = motion_precision/iters
print(validation_data.prompt_image, "precision", motion_precision)
del pipeline
def main_eval(
pretrained_model_path: str,
validation_data: Dict,
enable_xformers_memory_efficient_attention: bool = True,
enable_torch_2_attn: bool = False,
seed: Optional[int] = None,
motion_mask = False,
motion_strength = False,
**kwargs
):
if seed is not None:
set_seed(seed)
# Load scheduler, tokenizer and models.
noise_scheduler, tokenizer, text_encoder, vae, unet = load_primary_models(pretrained_model_path, motion_strength=motion_strength)
vae_processor = VaeImageProcessor()
# Freeze any necessary models
freeze_models([vae, text_encoder, unet])
# Enable xformers if available
handle_memory_attention(enable_xformers_memory_efficient_attention, enable_torch_2_attn, unet)
# Enable VAE slicing to save memory.
vae.enable_slicing()
# For mixed precision training we cast the text_encoder and vae weights to half-precision
# as these models are only used for inference, keeping weights in full precision is not required.
weight_dtype = torch.half
# Move text encoders, and VAE to GPU
models_to_cast = [text_encoder, unet, vae]
cast_to_gpu_and_type(models_to_cast, torch.device("cuda"), weight_dtype)
batch_eval(unet, text_encoder, vae, vae_processor, pretrained_model_path,
validation_data, "output/demo", True)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--config", type=str, default="./configs/my_config.yaml")
parser.add_argument("--eval", action="store_true")
parser.add_argument('rest', nargs=argparse.REMAINDER)
args = parser.parse_args()
args_dict = OmegaConf.load(args.config)
cli_dict = OmegaConf.from_dotlist(args.rest)
args_dict = OmegaConf.merge(args_dict, cli_dict)
if args.eval:
main_eval(**args_dict)
else:
main(**args_dict)