scheduler.py 2.77 KB
Newer Older
1
import math
PengGao's avatar
PengGao committed
2
3
from typing import List, Optional, Tuple, Union

4
5
import numpy as np
import torch
PengGao's avatar
PengGao committed
6

7
8
9
from lightx2v.models.schedulers.wan.scheduler import WanScheduler


10
class WanStepDistillScheduler(WanScheduler):
11
12
13
    def __init__(self, config):
        super().__init__(config)
        self.denoising_step_list = config.denoising_step_list
Zhuguanyu Wu's avatar
Zhuguanyu Wu committed
14
        self.infer_steps = len(self.denoising_step_list)
wangshankun's avatar
wangshankun committed
15
        self.sample_shift = self.config.sample_shift
16

17
18
19
20
        self.num_train_timesteps = 1000
        self.sigma_max = 1.0
        self.sigma_min = 0.0

21
22
23
24
25
26
27
28
29
    def prepare(self, image_encoder_output):
        self.generator = torch.Generator(device=self.device)
        self.generator.manual_seed(self.config.seed)

        self.prepare_latents(self.config.target_shape, dtype=torch.float32)

        if self.config.task in ["t2v"]:
            self.seq_len = math.ceil((self.config.target_shape[2] * self.config.target_shape[3]) / (self.config.patch_size[1] * self.config.patch_size[2]) * self.config.target_shape[1])
        elif self.config.task in ["i2v"]:
wangshankun's avatar
wangshankun committed
30
            self.seq_len = self.config.lat_h * self.config.lat_w // (self.config.patch_size[1] * self.config.patch_size[2]) * self.config.target_shape[1]
31

Zhuguanyu Wu's avatar
Zhuguanyu Wu committed
32
        self.set_denoising_timesteps(device=self.device)
33
34

    def set_denoising_timesteps(self, device: Union[str, torch.device] = None):
35
36
37
38
        sigma_start = self.sigma_min + (self.sigma_max - self.sigma_min)
        self.sigmas = torch.linspace(sigma_start, self.sigma_min, self.num_train_timesteps + 1)[:-1]
        self.sigmas = self.sample_shift * self.sigmas / (1 + (self.sample_shift - 1) * self.sigmas)
        self.timesteps = self.sigmas * self.num_train_timesteps
39

40
41
42
        self.denoising_step_index = [self.num_train_timesteps - x for x in self.denoising_step_list]
        self.timesteps = self.timesteps[self.denoising_step_index].to(device)
        self.sigmas = self.sigmas[self.denoising_step_index].to("cpu")
43
44
45

    def reset(self):
        self.prepare_latents(self.config.target_shape, dtype=torch.float32)
46
47
48
49
50
51
52
53
54
55
56

    def add_noise(self, original_samples, noise, sigma):
        sample = (1 - sigma) * original_samples + sigma * noise
        return sample.type_as(noise)

    def step_post(self):
        flow_pred = self.noise_pred.to(torch.float32)
        sigma = self.sigmas[self.step_index].item()
        noisy_image_or_video = self.latents.to(torch.float32) - sigma * flow_pred
        if self.step_index < self.infer_steps - 1:
            sigma = self.sigmas[self.step_index + 1].item()
57
58
            noise = torch.randn(noisy_image_or_video.shape, dtype=torch.float32, device=self.device, generator=self.generator)
            noisy_image_or_video = self.add_noise(noisy_image_or_video, noise=noise, sigma=self.sigmas[self.step_index + 1].item())
59
        self.latents = noisy_image_or_video.to(self.latents.dtype)