-
Notifications
You must be signed in to change notification settings - Fork 600
/
train_s2.py
742 lines (642 loc) · 27.5 KB
/
train_s2.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
import argparse
import logging
import math
import os
import os.path as osp
import random
import warnings
from pathlib import Path
from collections import OrderedDict
import copy
import diffusers
import numpy as np
import torch
import torch.nn.functional as F
import torch.utils.checkpoint
import transformers
from torchvision.utils import save_image
from accelerate import Accelerator
from accelerate.logging import get_logger
from accelerate.utils import DistributedDataParallelKwargs
from diffusers import AutoencoderKL, DDIMScheduler
from diffusers.optimization import get_scheduler
from diffusers.utils import check_min_version
from diffusers.utils.import_utils import is_xformers_available
from omegaconf import OmegaConf
from PIL import Image, ImageOps
from tqdm.auto import tqdm
from transformers import CLIPVisionModelWithProjection
from einops import rearrange
from models.champ_model import ChampModel
from models.guidance_encoder import GuidanceEncoder
from models.unet_2d_condition import UNet2DConditionModel
from models.unet_3d import UNet3DConditionModel
from models.mutual_self_attention import ReferenceAttentionControl
from datasets.video_dataset import VideoDataset
from datasets.data_utils import mask_to_bkgd
from utils.tb_tracker import TbTracker
from utils.util import seed_everything, delete_additional_ckpt, compute_snr
from utils.video_utils import save_videos_grid, save_videos_from_pil
from pipelines.pipeline_guidance2video import MultiGuidance2VideoPipeline
warnings.filterwarnings("ignore")
check_min_version("0.10.0.dev0")
logger = get_logger(__name__, log_level="INFO")
def padding_pil(img_pil, img_size):
# resize a PIL image and zero padding the short edge
W, H = img_pil.size
resize_ratio = img_size / max(W, H)
new_W, new_H = int(W * resize_ratio), int(H * resize_ratio)
img_pil = img_pil.resize((new_W, new_H))
left = (img_size - new_W) // 2
right = img_size - new_W - left
top = (img_size - new_H) // 2
bottom = img_size - new_H - top
padding_border = (left, top, right, bottom)
img_pil = ImageOps.expand(img_pil, border=padding_border, fill=0)
return img_pil
def concat_pil(img_pil_lst):
# horizontally concat PIL images
# NOTE(ZSH): assume all images are of same size
W, H = img_pil_lst[0].size
num_img = len(img_pil_lst)
new_width = num_img * W
new_image = Image.new("RGB", (new_width, H), color=0)
for img_idx, img in enumerate(img_pil_lst):
new_image.paste(img, (W * img_idx, 0))
return new_image
def validate(
ref_img_path,
guid_folder,
guid_types,
guid_start_idx,
clip_length,
width, height,
pipe,
generator,
denoising_steps=20,
guidance_scale=3.5,
aug_type="Resize",
):
ref_img_pil = Image.open(ref_img_path)
if aug_type =="Padding":
ref_img_pil = padding_pil(ref_img_pil, height)
guid_folder = Path(guid_folder)
guid_img_pil_lst = []
for guid_type in guid_types:
guid_img_lst = sorted((guid_folder / guid_type).iterdir())
guid_img_clip_lst = guid_img_lst[guid_start_idx: guid_start_idx + clip_length]
single_guid_pil_lst = []
for guid_img_path in guid_img_clip_lst:
if guid_type == "semantic_map":
mask_img_path = guid_folder / "mask" / guid_img_path.name
guid_img_pil = mask_to_bkgd(guid_img_path, mask_img_path)
else:
guid_img_pil = Image.open(guid_img_path).convert("RGB")
if aug_type == "Padding":
guid_img_pil = padding_pil(guid_img_pil, height)
single_guid_pil_lst += [guid_img_pil]
guid_img_pil_lst.append(single_guid_pil_lst)
val_videos = pipe(
ref_img_pil,
guid_img_pil_lst,
guid_types,
width,
height,
clip_length,
denoising_steps,
guidance_scale,
generator=generator,
).videos
return val_videos, ref_img_pil, guid_img_pil_lst
def log_validation(
cfg,
vae,
image_enc,
model,
scheduler,
accelerator,
width,
height,
seed=42,
dtype=torch.float16,
):
logger.info("Running validation ...")
unwrap_model = accelerator.unwrap_model(model)
reference_unet = unwrap_model.reference_unet
denoising_unet = unwrap_model.denoising_unet
guid_types = unwrap_model.guidance_types
guidance_encoder_group = {
f"guidance_encoder_{g}": getattr(unwrap_model, f"guidance_encoder_{g}") for g in guid_types
}
for _, module in guidance_encoder_group.items():
module.to(dtype=dtype)
generator = torch.manual_seed(seed)
tmp_denoising_unet = copy.deepcopy(denoising_unet)
tmp_denoising_unet = tmp_denoising_unet.to(dtype=dtype)
pipeline = MultiGuidance2VideoPipeline(
vae=vae,
image_encoder=image_enc,
reference_unet=reference_unet,
denoising_unet=tmp_denoising_unet,
**guidance_encoder_group,
scheduler=scheduler,
)
pipeline = pipeline.to(accelerator.device)
ref_img_lst = cfg.validation.ref_images
guid_folder_lst = cfg.validation.guidance_folders
guid_idxes = cfg.validation.guidance_indexes
clip_length = cfg.validation.clip_length
val_results = []
for val_idx, (ref_img_path, guid_folder, guid_start_idx) in enumerate(
zip(ref_img_lst, guid_folder_lst, guid_idxes)):
video_tensor, ref_img_pil, guid_img_pil_lst = validate(
ref_img_path=ref_img_path,
guid_folder=guid_folder,
guid_types=guid_types,
guid_start_idx=guid_start_idx,
clip_length=clip_length,
width=width,
height=height,
pipe=pipeline,
generator=generator,
aug_type=cfg.data.aug_type
)
video_tensor = video_tensor[0, ...].permute(1, 2, 3, 0).cpu().numpy()
W, H = ref_img_pil.size
video_pil_lst = []
for frame_idx, image_tensor in enumerate(video_tensor):
result_img_pil = Image.fromarray((image_tensor * 255).astype(np.uint8))
result_img_pil = result_img_pil.resize((W, H))
frame_guid_pil_lst = [g[frame_idx].resize((W, H)) for g in guid_img_pil_lst]
result_pil_lst = [result_img_pil, ref_img_pil, *frame_guid_pil_lst]
concated_pil = concat_pil(result_pil_lst)
video_pil_lst.append(concated_pil)
val_results.append({"name": f"val_{val_idx}", "video": video_pil_lst})
del tmp_denoising_unet
del pipeline
torch.cuda.empty_cache()
return val_results
def setup_guidance_encoder(cfg):
guidance_encoder_group = dict()
for guidance_type in cfg.data.guids:
guidance_encoder_group[guidance_type] = GuidanceEncoder(
guidance_embedding_channels=cfg.guidance_encoder_kwargs.guidance_embedding_channels,
guidance_input_channels=cfg.guidance_encoder_kwargs.guidance_input_channels,
block_out_channels=cfg.guidance_encoder_kwargs.block_out_channels,
)
return guidance_encoder_group
def load_stage1_state_dict(
denoising_unet,
reference_unet,
guidance_encoder_group,
stage1_ckpt_dir, stage1_ckpt_step="latest",
):
if stage1_ckpt_step == "latest":
ckpt_files = sorted(os.listdir(stage1_ckpt_dir), key=lambda x: int(x.split("-")[-1].split(".")[0]))
latest_pth_name = (Path(stage1_ckpt_dir) / ckpt_files[-1]).stem
stage1_ckpt_step = int(latest_pth_name.split("-")[-1])
denoising_unet.load_state_dict(
torch.load(
os.path.join(stage1_ckpt_dir, f"denoising_unet-{stage1_ckpt_step}.pth"),
map_location="cpu",
),
strict=False,
)
reference_unet.load_state_dict(
torch.load(
os.path.join(stage1_ckpt_dir, f"reference_unet-{stage1_ckpt_step}.pth"),
map_location="cpu",
),
strict=False,
)
for k, module in guidance_encoder_group.items():
module.load_state_dict(
torch.load(
osp.join(stage1_ckpt_dir, f"guidance_encoder_{k}-{stage1_ckpt_step}.pth"),
map_location="cpu",
),
strict=False,
)
logger.info(f"Loaded stage1 models from {stage1_ckpt_dir}, step={stage1_ckpt_step}")
def main(cfg):
kwargs = DistributedDataParallelKwargs(find_unused_parameters=False)
tb_tracker = TbTracker(cfg.exp_name, cfg.output_dir)
accelerator = Accelerator(
gradient_accumulation_steps=cfg.solver.gradient_accumulation_steps,
mixed_precision=cfg.solver.mixed_precision,
log_with=tb_tracker,
project_dir=f'{cfg.output_dir}/{cfg.exp_name}',
kwargs_handlers=[kwargs],
)
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=True)
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()
if cfg.seed is not None:
seed_everything(cfg.seed)
if cfg.weight_dtype == "fp16":
weight_dtype = torch.float16
elif cfg.weight_dtype == "fp32":
weight_dtype = torch.float32
else:
raise ValueError(
f"Do not support weight dtype: {cfg.weight_dtype} during training"
)
sched_kwargs = OmegaConf.to_container(cfg.noise_scheduler_kwargs)
if cfg.enable_zero_snr:
sched_kwargs.update(
rescale_betas_zero_snr=True,
timestep_spacing="trailing",
prediction_type="v_prediction",
)
val_noise_scheduler = DDIMScheduler(**sched_kwargs)
sched_kwargs.update({"beta_schedule": "scaled_linear"})
train_noise_scheduler = DDIMScheduler(**sched_kwargs)
vae = AutoencoderKL.from_pretrained(cfg.vae_model_path).to(
"cuda", dtype=weight_dtype
)
reference_unet = UNet2DConditionModel.from_pretrained(
cfg.base_model_path,
subfolder="unet",
).to(device="cuda", dtype=weight_dtype)
denoising_unet = UNet3DConditionModel.from_pretrained_2d(
cfg.base_model_path,
cfg.mm_path,
subfolder="unet",
unet_additional_kwargs=OmegaConf.to_container(
cfg.unet_additional_kwargs
),
).to(device="cuda")
image_enc = CLIPVisionModelWithProjection.from_pretrained(
cfg.image_encoder_path,
).to(dtype=weight_dtype, device="cuda")
guidance_encoder_group = setup_guidance_encoder(cfg)
load_stage1_state_dict(
denoising_unet,
reference_unet,
guidance_encoder_group,
cfg.stage1_ckpt_dir,
cfg.stage1_ckpt_step,
)
# Freeze
vae.requires_grad_(False)
image_enc.requires_grad_(False)
reference_unet.requires_grad_(False)
denoising_unet.requires_grad_(False)
for module in guidance_encoder_group.values():
module.requires_grad_(False)
for name, module in denoising_unet.named_modules():
if "motion_modules" in name:
for params in module.parameters():
params.requires_grad = True
reference_control_writer = ReferenceAttentionControl(
reference_unet,
do_classifier_free_guidance=False,
mode="write",
fusion_blocks="full",
)
reference_control_reader = ReferenceAttentionControl(
denoising_unet,
do_classifier_free_guidance=False,
mode="read",
fusion_blocks="full",
)
model = ChampModel(
reference_unet,
denoising_unet,
reference_control_writer,
reference_control_reader,
guidance_encoder_group,
)
if cfg.solver.enable_xformers_memory_efficient_attention:
if is_xformers_available():
reference_unet.enable_xformers_memory_efficient_attention()
denoising_unet.enable_xformers_memory_efficient_attention()
else:
raise ValueError(
"xformers is not available. Make sure it is installed correctly"
)
if cfg.solver.gradient_checkpointing:
reference_unet.enable_gradient_checkpointing()
denoising_unet.enable_gradient_checkpointing()
if cfg.solver.scale_lr:
learning_rate = (
cfg.solver.learning_rate
* cfg.solver.gradient_accumulation_steps
* cfg.data.train_bs
* accelerator.num_processes
)
else:
learning_rate = cfg.solver.learning_rate
if cfg.solver.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`"
)
optimizer_cls = bnb.optim.AdamW8bit
else:
optimizer_cls = torch.optim.AdamW
trainable_params = list(filter(lambda p: p.requires_grad, model.parameters()))
logger.info(f"Total trainable params {len(trainable_params)}")
optimizer = optimizer_cls(
trainable_params,
lr=learning_rate,
betas=(cfg.solver.adam_beta1, cfg.solver.adam_beta2),
weight_decay=cfg.solver.adam_weight_decay,
eps=cfg.solver.adam_epsilon,
)
lr_scheduler = get_scheduler(
cfg.solver.lr_scheduler,
optimizer=optimizer,
num_warmup_steps=cfg.solver.lr_warmup_steps
* cfg.solver.gradient_accumulation_steps,
num_training_steps=cfg.solver.max_train_steps
* cfg.solver.gradient_accumulation_steps,
)
train_dataset = VideoDataset(
video_folder=cfg.data.video_folder,
image_size=cfg.data.image_size,
sample_frames=cfg.data.sample_frames,
sample_rate=cfg.data.sample_rate,
data_parts=cfg.data.data_parts,
guids=cfg.data.guids,
extra_region=None,
bbox_crop=cfg.data.bbox_crop,
bbox_resize_ratio=tuple(cfg.data.bbox_resize_ratio),
)
train_dataloader = torch.utils.data.DataLoader(
train_dataset, batch_size=cfg.data.train_bs, shuffle=True, num_workers=16
)
model, optimizer, train_dataloader, lr_scheduler = accelerator.prepare(
model, optimizer, train_dataloader, lr_scheduler
)
num_update_steps_per_epoch = math.ceil(
len(train_dataloader) / cfg.solver.gradient_accumulation_steps
)
num_train_epochs = math.ceil(
cfg.solver.max_train_steps / num_update_steps_per_epoch
)
logger.info("Start training ...")
logger.info(f"Num Samples: {len(train_dataset)}")
logger.info(f"Train Batchsize: {cfg.data.train_bs}")
logger.info(f"Num Epochs: {num_train_epochs}")
logger.info(f"Total Steps: {cfg.solver.max_train_steps}")
global_step, first_epoch = 0, 0
if cfg.resume_from_checkpoint:
if cfg.resume_from_checkpoint != "latest":
resume_dir = cfg.resume_from_checkpoint
else:
resume_dir = f"{cfg.output_dir}/{cfg.exp_name}/checkpoints"
dirs = os.listdir(resume_dir)
dirs = [d for d in dirs if d.startswith("checkpoint")]
dirs = sorted(dirs, key=lambda x: int(x.split("-")[1]))
path = dirs[-1]
accelerator.load_state(os.path.join(resume_dir, path))
accelerator.print(f"Resuming from checkpoint {path}")
global_step = int(path.split("-")[1])
first_epoch = global_step // num_update_steps_per_epoch
progress_bar = tqdm(
range(global_step, cfg.solver.max_train_steps),
disable=not accelerator.is_local_main_process,
)
progress_bar.set_description("Steps")
for epoch in range(first_epoch, num_train_epochs):
train_loss = 0.0
for _, batch in enumerate(train_dataloader):
with accelerator.accumulate(model):
# Convert videos to latent space
pixel_values_vid = batch["tgt_vid"].to(weight_dtype)
with torch.no_grad():
video_length = pixel_values_vid.shape[1]
pixel_values_vid = rearrange(
pixel_values_vid, "b f c h w -> (b f) c h w"
)
latents = vae.encode(pixel_values_vid).latent_dist.sample()
latents = rearrange(
latents, "(b f) c h w -> b c f h w", f=video_length
)
latents = latents * 0.18215
noise = torch.randn_like(latents)
if cfg.noise_offset > 0:
noise += cfg.noise_offset * torch.randn(
(latents.shape[0], latents.shape[1], 1, 1, 1),
device=latents.device,
)
bsz = latents.shape[0]
# Sample a random timestep for each video
timesteps = torch.randint(
0,
train_noise_scheduler.num_train_timesteps,
(bsz,),
device=latents.device,
)
timesteps = timesteps.long()
tgt_guid_videos = batch["tgt_guid_vid"] # (bs, f, c, H, W)
tgt_guid_videos = tgt_guid_videos.transpose(
1, 2
) # (bs, c, f, H, W)
uncond_fwd = random.random() < cfg.uncond_ratio
clip_image_list = []
ref_image_list = []
for batch_idx, (ref_img, clip_img) in enumerate(
zip(
batch["ref_img"],
batch["clip_img"],
)
):
if uncond_fwd:
clip_image_list.append(torch.zeros_like(clip_img))
else:
clip_image_list.append(clip_img)
ref_image_list.append(ref_img)
with torch.no_grad():
ref_img = torch.stack(ref_image_list, dim=0).to(
dtype=vae.dtype, device=vae.device
)
ref_image_latents = vae.encode(
ref_img
).latent_dist.sample() # (bs, d, 64, 64)
ref_image_latents = ref_image_latents * 0.18215
clip_img = torch.stack(clip_image_list, dim=0).to(
dtype=image_enc.dtype, device=image_enc.device
)
clip_img = clip_img.to(device="cuda", dtype=weight_dtype)
clip_image_embeds = image_enc(
clip_img.to("cuda", dtype=weight_dtype)
).image_embeds
clip_image_embeds = clip_image_embeds.unsqueeze(1) # (bs, 1, d)
# add noise
noisy_latents = train_noise_scheduler.add_noise(
latents, noise, timesteps
)
# Get the target for loss depending on the prediction type
if train_noise_scheduler.prediction_type == "epsilon":
target = noise
elif train_noise_scheduler.prediction_type == "v_prediction":
target = train_noise_scheduler.get_velocity(
latents, noise, timesteps
)
else:
raise ValueError(
f"Unknown prediction type {train_noise_scheduler.prediction_type}"
)
model_pred = model(
noisy_latents,
timesteps,
ref_image_latents,
clip_image_embeds,
tgt_guid_videos,
uncond_fwd=uncond_fwd,
)
if cfg.snr_gamma == 0:
loss = F.mse_loss(
model_pred.float(), target.float(), reduction="mean"
)
else:
snr = compute_snr(train_noise_scheduler, timesteps)
if train_noise_scheduler.config.prediction_type == "v_prediction":
# Velocity objective requires that we add one to SNR values before we divide by them.
snr = snr + 1
mse_loss_weights = (
torch.stack(
[snr, cfg.snr_gamma * torch.ones_like(timesteps)], dim=1
).min(dim=1)[0]
/ snr
)
loss = F.mse_loss(
model_pred.float(), target.float(), reduction="none"
)
loss = (
loss.mean(dim=list(range(1, len(loss.shape))))
* mse_loss_weights
)
loss = loss.mean()
# Gather the losses across all processes for logging (if we use distributed training).
avg_loss = accelerator.gather(loss.repeat(cfg.data.train_bs)).mean()
train_loss += avg_loss.item() / cfg.solver.gradient_accumulation_steps
# Backpropagate
accelerator.backward(loss)
if accelerator.sync_gradients:
accelerator.clip_grad_norm_(
trainable_params,
cfg.solver.max_grad_norm,
)
optimizer.step()
lr_scheduler.step()
optimizer.zero_grad()
save_dir = f'{cfg.output_dir}/{cfg.exp_name}'
if accelerator.sync_gradients:
reference_control_reader.clear()
reference_control_writer.clear()
progress_bar.update(1)
global_step += 1
tb_tracker.add_scalar(tag='train loss', scalar_value=train_loss, global_step=global_step)
train_loss = 0.0
# save checkpoints
if global_step % cfg.checkpointing_steps == 0:
if accelerator.is_main_process:
save_path = os.path.join(save_dir, "checkpoints", f"checkpoint-{global_step}")
delete_additional_ckpt(save_dir, 6)
accelerator.save_state(save_path)
# sanity check
if global_step % cfg.validation.validation_steps == 0 or global_step == 1:
ref_forcheck = batch['ref_img'] * 0.5 + 0.5
img_forcheck = batch['tgt_vid'] * 0.5 + 0.5
ref_forcheck = ref_forcheck.unsqueeze(2).repeat(1, 1, video_length, 1, 1)
img_forcheck = rearrange(img_forcheck, 'b f c h w -> b c f h w')
guid_forcheck = list(torch.chunk(batch['tgt_guid_vid'], batch['tgt_guid_vid'].shape[2]//3, dim=2))
guid_forcheck = [rearrange(g, 'b f c h w -> b c f h w') for g in guid_forcheck]
video_forcheck = torch.cat([ref_forcheck, img_forcheck] + guid_forcheck, dim=0).cpu()
save_videos_grid(video_forcheck, f'{save_dir}/sanity_check/data-{global_step:06d}-rank{accelerator.device.index}.gif', fps=30, n_rows=3)
if global_step % cfg.validation.validation_steps == 0 or global_step == 1:
if accelerator.is_main_process:
sample_dicts = log_validation(
cfg=cfg,
vae=vae,
image_enc=image_enc,
model=model,
scheduler=val_noise_scheduler,
accelerator=accelerator,
width=cfg.data.image_size,
height=cfg.data.image_size,
seed=cfg.seed
)
for sample_dict in sample_dicts:
sample_name = sample_dict["name"]
video = sample_dict["video"]
save_videos_from_pil(video, f'{save_dir}/validation/6fps-{global_step:06d}-{sample_name}.mp4', fps=6)
save_videos_from_pil(video, f'{save_dir}/validation/30fps-{global_step:06d}-{sample_name}.mp4', fps=30)
logs = {
"step_loss": loss.detach().item(),
"lr": lr_scheduler.get_last_lr()[0],
"stage": 2,
}
progress_bar.set_postfix(**logs)
if global_step >= cfg.solver.max_train_steps:
break
# save model after each epoch
if accelerator.is_main_process and (epoch + 1) % cfg.save_model_epoch_interval == 0 :
# save motion module only
unwrap_model = accelerator.unwrap_model(model)
save_checkpoint(
unwrap_model.denoising_unet,
f"{save_dir}/saved_models",
"motion_module",
global_step,
total_limit=None,
)
accelerator.wait_for_everyone()
accelerator.end_training()
def save_checkpoint(model, save_dir, prefix, ckpt_num, total_limit=None):
save_path = osp.join(save_dir, f"{prefix}-{ckpt_num}.pth")
if total_limit is not None:
checkpoints = os.listdir(save_dir)
checkpoints = [d for d in checkpoints if d.startswith(prefix)]
checkpoints = sorted(
checkpoints, key=lambda x: int(x.split("-")[1].split(".")[0])
)
if len(checkpoints) >= total_limit:
num_to_remove = len(checkpoints) - total_limit + 1
removing_checkpoints = checkpoints[0:num_to_remove]
logger.info(
f"{len(checkpoints)} checkpoints already exist, removing {len(removing_checkpoints)} checkpoints"
)
logger.info(f"removing checkpoints: {', '.join(removing_checkpoints)}")
for removing_checkpoint in removing_checkpoints:
removing_checkpoint = os.path.join(save_dir, removing_checkpoint)
os.remove(removing_checkpoint)
mm_state_dict = OrderedDict()
state_dict = model.state_dict()
for key in state_dict:
if "motion_module" in key:
mm_state_dict[key] = state_dict[key]
torch.save(mm_state_dict, save_path)
if __name__ == "__main__":
import shutil
parser = argparse.ArgumentParser()
parser.add_argument("--config", type=str, default="./configs/train/stage2.yaml")
args = parser.parse_args()
if args.config[-5:] == ".yaml":
config = OmegaConf.load(args.config)
else:
raise ValueError("Do not support this format config file")
save_dir = os.path.join(config.output_dir, config.exp_name)
os.makedirs(save_dir, exist_ok=True)
os.makedirs(os.path.join(save_dir, 'checkpoints'), exist_ok=True)
os.makedirs(os.path.join(save_dir, 'sanity_check'), exist_ok=True)
os.makedirs(os.path.join(save_dir, 'saved_models'), exist_ok=True)
os.makedirs(os.path.join(save_dir, 'validation'), exist_ok=True)
# save config, script
shutil.copy(args.config, os.path.join(save_dir, 'sanity_check', f'{config.exp_name}.yaml'))
shutil.copy(os.path.abspath(__file__), os.path.join(save_dir, 'sanity_check'))
main(config)