-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathptp_utils.py
532 lines (443 loc) · 20.1 KB
/
ptp_utils.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
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import numpy as np
import torch
from PIL import Image, ImageDraw, ImageFont
import cv2
from typing import Optional, Union, Tuple, List, Callable, Dict
from IPython.display import display
from tqdm.notebook import tqdm
import os
def text_under_image(image: np.ndarray, text: str, text_color: Tuple[int, int, int] = (0, 0, 0)):
h, w, c = image.shape
offset = int(h * .2)
img = np.ones((h + offset, w, c), dtype=np.uint8) * 255
font = cv2.FONT_HERSHEY_SIMPLEX
# font = ImageFont.truetype("/usr/share/fonts/truetype/noto/NotoMono-Regular.ttf", font_size)
img[:h] = image
textsize = cv2.getTextSize(text, font, 1, 2)[0]
text_x, text_y = (w - textsize[0]) // 2, h + offset - textsize[1] // 2
cv2.putText(img, text, (text_x, text_y ), font, 1, text_color, 2)
return img
def view_images(images, num_rows=1, offset_ratio=0.02,save=False,id=0):
if type(images) is list:
num_empCty = len(images) % num_rows
elif images.ndim == 4:
num_empty = images.shape[0] % num_rows
else:
images = [images]
num_empty = 0
empty_images = np.ones(images[0].shape, dtype=np.uint8) * 255
images = [image.astype(np.uint8) for image in images] + [empty_images] * num_empty
num_items = len(images)
h, w, c = images[0].shape
offset = int(h * offset_ratio)
num_cols = num_items // num_rows
image_ = np.ones((h * num_rows + offset * (num_rows - 1),
w * num_cols + offset * (num_cols - 1), 3), dtype=np.uint8) * 255
for i in range(num_rows):
for j in range(num_cols):
image_[i * (h + offset): i * (h + offset) + h:, j * (w + offset): j * (w + offset) + w] = images[
i * num_cols + j]
pil_img = Image.fromarray(image_)
display(pil_img)
def diffusion_step(model, controller, latents, context, t, guidance_scale, low_resource=False):
if low_resource:
noise_pred_uncond = model.unet(latents, t, encoder_hidden_states=context[0])["sample"]
noise_prediction_text = model.unet(latents, t, encoder_hidden_states=context[1])["sample"]
else:
latents_input = torch.cat([latents] * 2) # [2,4,64,64]
noise_pred = model.unet(latents_input, t, encoder_hidden_states=context)["sample"]
noise_pred_uncond, noise_prediction_text = noise_pred.chunk(2)
noise_pred = noise_pred_uncond + guidance_scale * (noise_prediction_text - noise_pred_uncond)
latents = model.scheduler.step(noise_pred, t, latents)["prev_sample"]
latents = controller.step_callback(latents)
return latents
def latent2image(vae, latents,id=0):
latents = 1 / 0.18215 * latents
image = vae.decode(latents)['sample']
image = (image / 2 + 0.5).clamp(0, 1)
image = image.cpu().permute(0, 2, 3, 1).numpy()
images = (image * 255).astype(np.uint8)
# pil_images = [Image.fromarray(image) for image in images]
# for num, im in enumerate(pil_images):
# im.save("F:/ICT/backdoor_detection/backdoor/backdoor_mitigating/all_images/ic/1/{}.png".format(id))
return images
def init_latent(latent, model, height, width, generator, batch_size):
if latent is None:
latent = torch.randn(
(1, model.unet.in_channels, height // 8, width // 8),
generator=generator,
requires_grad=True,
)
# latent = latent.to(torch.float16)
latents = latent.expand(batch_size, model.unet.in_channels, height // 8, width // 8).to(model.device)
return latent, latents
@torch.no_grad()
def text2image_ldm(
model,
prompt: List[str],
controller,
num_inference_steps: int = 50,
guidance_scale: Optional[float] = 7.,
generator: Optional[torch.Generator] = None,
latent: Optional[torch.FloatTensor] = None,
):
register_attention_control(model, controller)
height = width = 256
batch_size = len(prompt)
uncond_input = model.tokenizer([""] * batch_size, padding="max_length", max_length=77, return_tensors="pt")
uncond_embeddings = model.bert(uncond_input.input_ids.to(model.device))[0]
text_input = model.tokenizer(prompt, padding="max_length", max_length=77, return_tensors="pt")
text_embeddings = model.bert(text_input.input_ids.to(model.device))[0]
latent, latents = init_latent(latent, model, height, width, generator, batch_size)
context = torch.cat([uncond_embeddings, text_embeddings])
model.scheduler.set_timesteps(num_inference_steps)
for t in tqdm(model.scheduler.timesteps):
latents = diffusion_step(model, controller, latents, context, t, guidance_scale)
image = latent2image(model.vqvae, latents)
return image, latent
@torch.no_grad()
def text2image_ldm_stable(
model,
prompt: List[str],
controller,
num_inference_steps: int = 50,
guidance_scale: float = 7.5,
generator: Optional[torch.Generator] = None,
latent: Optional[torch.FloatTensor] = None,
low_resource: bool = False,
):
register_attention_control(model, controller) # controller.num_attn = 32
height = width = 512
batch_size = len(prompt) # batchsize = 2
text_input = model.tokenizer(
prompt,
padding="max_length",
max_length=model.tokenizer.model_max_length,
truncation=True,
return_tensors="pt",
)
text_embeddings = model.text_encoder(text_input.input_ids.to(model.device))[0] # [2,77,768]
max_length = text_input.input_ids.shape[-1]
uncond_input = model.tokenizer(
[""] * batch_size, padding="max_length", max_length=max_length, return_tensors="pt"
)
uncond_embeddings = model.text_encoder(uncond_input.input_ids.to(model.device))[0]
context = [uncond_embeddings, text_embeddings] # list -> [[2,77,768],[2,77,768]]
if not low_resource:
context = torch.cat(context) # [4,77,768]
latent, latents = init_latent(latent, model, height, width, generator, batch_size)
# [1,4,64,64],[2,4,64,64]
# set timesteps
model.scheduler.set_timesteps(num_inference_steps)
z_i = []
for t in tqdm(model.scheduler.timesteps):
latents = diffusion_step(model, controller, latents, context, t, guidance_scale, low_resource) # [1,4,64,64]
z_i.append(latents)
# image = latent2image(model.vae, latents)
z_i = torch.stack(z_i,dim=1)
return z_i
@torch.no_grad()
def text2image_ldm_stable_v2(
model,
prompt: List[str],
controller,
num_inference_steps: int = 50,
guidance_scale: float = 7.5,
generator: Optional[torch.Generator] = None,
latent: Optional[torch.FloatTensor] = None,
low_resource: bool = False,
id: int = 0
):
# register_attention_control_v2(model, controller) # controller.num_attn = 32
register_attention_control(model, controller) # controller.num_attn = 32
height = width = 512
batch_size = len(prompt) # batchsize = 2
text_input = model.tokenizer(
prompt,
padding="max_length",
max_length=model.tokenizer.model_max_length,
truncation=True,
return_tensors="pt",
)
text_embeddings = model.text_encoder(text_input.input_ids.to(model.device))[0] # [2,77,768]
max_length = text_input.input_ids.shape[-1]
uncond_input = model.tokenizer(
[""] * batch_size, padding="max_length", max_length=max_length, return_tensors="pt"
)
uncond_embeddings = model.text_encoder(uncond_input.input_ids.to(model.device))[0]
context = [uncond_embeddings, text_embeddings] # list -> [[2,77,768],[2,77,768]]
if not low_resource:
context = torch.cat(context) # [4,77,768]
latent, latents = init_latent(latent, model, height, width, generator, batch_size)
# [1,4,64,64],[2,4,64,64]
# set timesteps
model.scheduler.set_timesteps(num_inference_steps)
for t in model.scheduler.timesteps:
latents = diffusion_step(model, controller, latents, context, t, guidance_scale, low_resource)
# latents = scale_tensor(latents)
image = latent2image(model.vae, latents,id)
return image, latents
def scale_tensor(x):
# 计算张量的最大值和最小值
min_value = x.min()
max_value = x.max()
# 计算缩放因子
scale = 2 / (max_value - min_value)
# 将张量缩放到[-1, 1]范围
scaled_x = scale * (x - min_value) - 1
return scaled_x
@torch.no_grad()
def text2image_ldm_stable_v3(
model,
prompt: List[str],
controller,
num_inference_steps: int = 50,
guidance_scale: float = 7.5,
generator: Optional[torch.Generator] = None,
latent: Optional[torch.FloatTensor] = None,
low_resource: bool = False,
lora: bool = True
):
if lora:
register_attention_control_v2(model, controller) # controller.num_attn = 32
else:
register_attention_control(model, controller) # controller.num_attn = 32
height = width = 512
batch_size = len(prompt)
text_input = model.tokenizer(
prompt,
padding="max_length",
max_length=model.tokenizer.model_max_length,
truncation=True,
return_tensors="pt",
)
text_embeddings = model.text_encoder(text_input.input_ids.to(model.device))[0] # [2,77,768]
max_length = text_input.input_ids.shape[-1]
uncond_input = model.tokenizer(
[""] * batch_size, padding="max_length", max_length=max_length, return_tensors="pt"
)
uncond_embeddings = model.text_encoder(uncond_input.input_ids.to(model.device))[0]
context = [uncond_embeddings, text_embeddings] # list -> [[2,77,768],[2,77,768]]
if not low_resource:
context = torch.cat(context) # [4,77,768]
latent, latents = init_latent(latent, model, height, width, generator, batch_size)
# [1,4,64,64],[2,4,64,64]
# set timesteps
model.scheduler.set_timesteps(num_inference_steps)
for t in model.scheduler.timesteps:
latents = diffusion_step(model, controller, latents, context, t, guidance_scale, low_resource)
image = latent2image(model.vae, latents,id)
return latents
def text2image_ldm_stable_v4(
model,
text_input,
text_embeddings,
uncond_embeddings,
batch_size,
controller,
num_inference_steps: int = 50,
guidance_scale: float = 7.5,
generator: Optional[torch.Generator] = None,
latent: Optional[torch.FloatTensor] = None,
low_resource: bool = False,
lora: bool = True
):
if lora:
register_attention_control_v2(model, controller) # controller.num_attn = 32
else:
register_attention_control(model, controller) # controller.num_attn = 32
height = width = 512
context = [uncond_embeddings, text_embeddings.to(model.device)] # list -> [[2,77,768],[2,77,768]]
if not low_resource:
context = torch.cat(context) # [4,77,768]
latent, latents = init_latent(latent, model, height, width, generator, batch_size)
# [1,4,64,64],[2,4,64,64]
# set timesteps
model.scheduler.set_timesteps(num_inference_steps)
for t in model.scheduler.timesteps:
latents = diffusion_step(model, controller, latents, context, t, guidance_scale, low_resource)
def register_attention_control(model, controller):
def ca_forward(self, place_in_unet):
to_out = self.to_out
if type(to_out) is torch.nn.modules.container.ModuleList:
to_out = self.to_out[0]
else:
to_out = self.to_out
def forward(hidden_states, encoder_hidden_states=None, attention_mask=None, **cross_attention_kwargs):
x = hidden_states # [2,4096,320]
context = encoder_hidden_states # [2,77,768]
is_cross = context is not None
context = context if is_cross else x
batch_size, sequence_length, _ = (
hidden_states.shape if encoder_hidden_states is None else encoder_hidden_states.shape
)
attention_mask = self.prepare_attention_mask(attention_mask, sequence_length, batch_size)
query = self.to_q(hidden_states)
query = self.head_to_batch_dim(query)
if encoder_hidden_states is None:
encoder_hidden_states = hidden_states
elif self.norm_cross:
encoder_hidden_states = self.norm_encoder_hidden_states(encoder_hidden_states)
key = self.to_k(encoder_hidden_states) # [16, 4096, 40]
value = self.to_v(encoder_hidden_states) # [16, 4096, 40]
key = self.head_to_batch_dim(key) # [16, 4096, 40]
value = self.head_to_batch_dim(value) # [16, 4096, 40]
attention_probs = self.get_attention_scores(query, key, attention_mask) # [16, 4096, 4096]
controller(attention_probs, is_cross, place_in_unet)
hidden_states = torch.bmm(attention_probs, value) # [16, 4096, 40]
hidden_states = self.batch_to_head_dim(hidden_states) # [2, 4096, 320]
# linear proj
hidden_states = self.to_out[0](hidden_states) # [2, 4096, 320]
# dropout
hidden_states = self.to_out[1](hidden_states) # [2, 4096, 320]
return hidden_states
return forward
class DummyController:
def __call__(self, *args):
return args[0]
def __init__(self):
self.num_att_layers = 0
if controller is None:
controller = DummyController()
def register_recr(net_, count, place_in_unet):
if net_.__class__.__name__ == 'Attention':
net_.forward = ca_forward(net_, place_in_unet)
return count + 1
elif hasattr(net_, 'children'):
for net__ in net_.children():
count = register_recr(net__, count, place_in_unet)
return count
cross_att_count = 0
sub_nets = model.unet.named_children()
for net in sub_nets:
if "down" in net[0]:
cross_att_count += register_recr(net[1], 0, "down")
elif "up" in net[0]:
cross_att_count += register_recr(net[1], 0, "up")
elif "mid" in net[0]:
cross_att_count += register_recr(net[1], 0, "mid")
controller.num_att_layers = cross_att_count # 32 = 12 + 18 + 2
def register_attention_control_v2(model, controller):
def ca_forward(self, place_in_unet):
to_out = self.to_out
if type(to_out) is torch.nn.modules.container.ModuleList:
to_out = self.to_out[0]
else:
to_out = self.to_out
def forward(hidden_states, encoder_hidden_states=None, attention_mask=None, **cross_attention_kwargs):
scale = 1
x = hidden_states # [2,4096,320]
context = encoder_hidden_states # [2,77,768]
is_cross = context is not None
context = context if is_cross else x
batch_size, sequence_length, _ = (
hidden_states.shape if encoder_hidden_states is None else encoder_hidden_states.shape
)
attention_mask = self.prepare_attention_mask(attention_mask, sequence_length, batch_size)
query = self.to_q(hidden_states) + scale * self.processor.to_q_lora(hidden_states)
query = self.head_to_batch_dim(query)
if encoder_hidden_states is None:
encoder_hidden_states = hidden_states
elif self.norm_cross:
encoder_hidden_states = self.norm_encoder_hidden_states(encoder_hidden_states)
key = self.to_k(encoder_hidden_states) + scale * self.processor.to_k_lora(encoder_hidden_states)
value = self.to_v(encoder_hidden_states) + scale * self.processor.to_v_lora(encoder_hidden_states)
key = self.head_to_batch_dim(key)
value = self.head_to_batch_dim(value)
attention_probs = self.get_attention_scores(query, key, attention_mask)
controller(attention_probs, is_cross, place_in_unet)
hidden_states = torch.bmm(attention_probs, value)
hidden_states = self.batch_to_head_dim(hidden_states)
# linear proj
hidden_states = self.to_out[0](hidden_states) + scale * self.processor.to_out_lora(hidden_states)
# dropout
hidden_states = self.to_out[1](hidden_states)
return hidden_states
return forward
class DummyController:
def __call__(self, *args):
return args[0]
def __init__(self):
self.num_att_layers = 0
if controller is None:
controller = DummyController()
def register_recr(net_, count, place_in_unet):
if net_.__class__.__name__ == 'Attention':
net_.forward = ca_forward(net_, place_in_unet)
return count + 1
elif hasattr(net_, 'children'):
for net__ in net_.children():
count = register_recr(net__, count, place_in_unet)
return count
cross_att_count = 0
sub_nets = model.unet.named_children()
for net in sub_nets:
if "down" in net[0]:
cross_att_count += register_recr(net[1], 0, "down")
elif "up" in net[0]:
cross_att_count += register_recr(net[1], 0, "up")
elif "mid" in net[0]:
cross_att_count += register_recr(net[1], 0, "mid")
controller.num_att_layers = cross_att_count # 32 = 12 + 18 + 2
def get_word_inds(text: str, word_place: int, tokenizer):
'''找到字符串中包含目标文本的位置'''
split_text = text.split(" ")
if type(word_place) is str:
word_place = [i for i, word in enumerate(split_text) if word_place == word]
elif type(word_place) is int:
word_place = [word_place]
out = []
if len(word_place) > 0:
words_encode = [tokenizer.decode([item]).strip("#") for item in tokenizer.encode(text)][1:-1]
cur_len, ptr = 0, 0
for i in range(len(words_encode)):
cur_len += len(words_encode[i])
if ptr in word_place:
out.append(i + 1)
if cur_len >= len(split_text[ptr]):
ptr += 1
cur_len = 0
return np.array(out)
def update_alpha_time_word(alpha, bounds: Union[float, Tuple[float, float]], prompt_ind: int,
word_inds: Optional[torch.Tensor]=None):
if type(bounds) is float:
bounds = 0, bounds
start, end = int(bounds[0] * alpha.shape[0]), int(bounds[1] * alpha.shape[0])
if word_inds is None:
word_inds = torch.arange(alpha.shape[2])
alpha[: start, prompt_ind, word_inds] = 0
alpha[start: end, prompt_ind, word_inds] = 1
alpha[end:, prompt_ind, word_inds] = 0
return alpha
def get_time_words_attention_alpha(prompts, num_steps,
cross_replace_steps: Union[float, Dict[str, Tuple[float, float]]],
tokenizer, max_num_words=77):
if type(cross_replace_steps) is not dict:
cross_replace_steps = {"default_": cross_replace_steps}
if "default_" not in cross_replace_steps:
cross_replace_steps["default_"] = (0., 1.)
alpha_time_words = torch.zeros(num_steps + 1, len(prompts) - 1, max_num_words) # [51,1,77]
for i in range(len(prompts) - 1):
alpha_time_words = update_alpha_time_word(alpha_time_words, cross_replace_steps["default_"],
i) # 全1的[51,1,77]
for key, item in cross_replace_steps.items():
if key != "default_":
inds = [get_word_inds(prompts[i], key, tokenizer) for i in range(1, len(prompts))]
for i, ind in enumerate(inds):
if len(ind) > 0:
alpha_time_words = update_alpha_time_word(alpha_time_words, item, i, ind) # [51,1,77]
alpha_time_words = alpha_time_words.reshape(num_steps + 1, len(prompts) - 1, 1, 1, max_num_words) # [51,1,1,1,77]
return alpha_time_words