-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.py
More file actions
159 lines (135 loc) · 4.98 KB
/
sample.py
File metadata and controls
159 lines (135 loc) · 4.98 KB
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
"""
Sample new images from a pre-trained DiT.
"""
import torch
torch.backends.cuda.matmul.allow_tf32 = True
torch.backends.cudnn.allow_tf32 = True
from torchvision.utils import save_image
from diffusion import create_diffusion
from diffusers.models import AutoencoderKL
from download import find_model
import argparse
import numpy as np
def main(args):
# Setup PyTorch:
torch.set_grad_enabled(False)
device = "cuda" if torch.cuda.is_available() else "cpu"
if args.ckpt is None:
assert (
args.model == "DiT-XL/2"
), "Only DiT-XL/2 models are available for auto-download."
assert args.image_size in [256, 512]
assert args.num_classes == 1000
# initialize diffusin process
diffusion = create_diffusion(str(args.num_sampling_steps))
# Load model:
latent_size = args.image_size // 8
if args.accelerate_method is not None and args.accelerate_method == "dynamiclayer":
from models.dynamic_models import DiT_models
else:
from models.models import DiT_models
model = DiT_models[args.model](
input_size=latent_size, num_classes=args.num_classes
).to(device)
if args.accelerate_method is not None and "dynamiclayer" in args.accelerate_method:
model.load_ranking(
args.path, args.num_sampling_steps, diffusion.timestep_map, args.thres
)
# Auto-download a pre-trained model or load a custom DiT checkpoint from train.py:
ckpt_path = args.ckpt or f"DiT-XL-2-{args.image_size}x{args.image_size}.pt"
state_dict = find_model(ckpt_path)
model.load_state_dict(state_dict)
model.eval() # important!
vae = AutoencoderKL.from_pretrained(f"stabilityai/sd-vae-ft-{args.vae}").to(device)
torch.manual_seed(args.seed)
# Labels to condition the model with (feel free to change):
class_labels = [207, 992, 387, 974, 142, 979, 417, 279]
# Create sampling noise:
n = len(class_labels)
z = torch.randn(n, 4, latent_size, latent_size, device=device)
y = torch.tensor(class_labels, device=device)
# Setup classifier-free guidance:
z = torch.cat([z, z], 0)
y_null = torch.tensor([1000] * n, device=device)
y = torch.cat([y, y_null], 0)
model_kwargs = dict(y=y, cfg_scale=args.cfg_scale)
# Sample images:
import time
times = []
for _ in range(6):
start_time = time.time()
if args.p_sample:
samples = diffusion.p_sample_loop(
model.forward_with_cfg,
z.shape,
z,
clip_denoised=False,
model_kwargs=model_kwargs,
progress=True,
device=device,
)
elif args.ddim_sample:
samples = diffusion.ddim_sample_loop(
model.forward_with_cfg,
z.shape,
z,
clip_denoised=False,
model_kwargs=model_kwargs,
progress=True,
device=device,
)
times.append(time.time() - start_time)
model.reset()
if len(times) > 1:
times = np.array(times[1:])
print("Sampling time: {:.3f}±{:.3f}".format(np.mean(times), np.std(times)))
samples, _ = samples.chunk(2, dim=0) # Remove null class samples
samples = vae.decode(samples / 0.18215).sample
save_image(
samples,
f"Sample_NFE{args.num_sampling_steps}_Method_{args.accelerate_method}.png",
nrow=8,
normalize=True,
value_range=(-1, 1),
)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--model", type=str, default="DiT-XL/2")
parser.add_argument("--vae", type=str, choices=["ema", "mse"], default="ema")
parser.add_argument("--image-size", type=int, choices=[256, 512], default=256)
parser.add_argument("--num-classes", type=int, default=1000)
parser.add_argument("--cfg-scale", type=float, default=4.0)
parser.add_argument("--num-sampling-steps", type=int, default=250)
parser.add_argument("--seed", type=int, default=0)
parser.add_argument(
"--ckpt",
type=str,
default=None,
help="Optional path to a DiT checkpoint (default: auto-download a pre-trained DiT-XL/2 model).",
)
parser.add_argument(
"--accelerate-method",
type=str,
default=None,
help="Use the accelerated version of the model.",
)
parser.add_argument(
"--ddim-sample",
action="store_true",
default=False,
)
parser.add_argument(
"--p-sample",
action="store_true",
default=False,
)
parser.add_argument(
"--path", type=str, default=None, help="Optional path to a router checkpoint"
)
parser.add_argument("--thres", type=float, default=0.5)
args = parser.parse_args()
main(args)