forked from RoyiRa/Linguistic-Binding-in-Diffusion-Models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyngen_diffusion_pipeline.py
591 lines (516 loc) · 25.2 KB
/
syngen_diffusion_pipeline.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
import itertools
from typing import Any, Callable, Dict, Optional, Union, List
import spacy
import torch
from diffusers import StableDiffusionPipeline, AutoencoderKL, UNet2DConditionModel
from diffusers.pipelines.stable_diffusion import StableDiffusionPipelineOutput, StableDiffusionSafetyChecker
from diffusers.pipelines.stable_diffusion.pipeline_stable_diffusion import (
EXAMPLE_DOC_STRING,
rescale_noise_cfg
)
from diffusers.pipelines.stable_diffusion.pipeline_stable_diffusion_attend_and_excite import (
AttentionStore,
AttendExciteAttnProcessor
)
import numpy as np
from diffusers.schedulers import KarrasDiffusionSchedulers
from diffusers.utils import (
logging,
replace_example_docstring,
)
from transformers import CLIPImageProcessor, CLIPTextModel, CLIPTokenizer
from compute_loss import get_attention_map_index_to_wordpiece, split_indices, calculate_positive_loss, calculate_negative_loss, get_indices, start_token, end_token, align_wordpieces_indices, extract_attribution_indices, extract_attribution_indices_with_verbs, extract_attribution_indices_with_verb_root, extract_entities_only
logger = logging.get_logger(__name__)
class SynGenDiffusionPipeline(StableDiffusionPipeline):
def __init__(self,
vae: AutoencoderKL,
text_encoder: CLIPTextModel,
tokenizer: CLIPTokenizer,
unet: UNet2DConditionModel,
scheduler: KarrasDiffusionSchedulers,
safety_checker: StableDiffusionSafetyChecker,
feature_extractor: CLIPImageProcessor,
requires_safety_checker: bool = True,
include_entities: bool = False,
):
super().__init__(vae, text_encoder, tokenizer, unet, scheduler, safety_checker, feature_extractor,
requires_safety_checker)
self.parser = spacy.load("en_core_web_trf")
self.subtrees_indices = None
self.doc = None
self.include_entities = include_entities
def _aggregate_and_get_attention_maps_per_token(self):
attention_maps = self.attention_store.aggregate_attention(
from_where=("up", "down", "mid"),
)
attention_maps_list = _get_attention_maps_list(
attention_maps=attention_maps
)
return attention_maps_list
@staticmethod
def _update_latent(
latents: torch.Tensor, loss: torch.Tensor, step_size: float
) -> torch.Tensor:
"""Update the latent according to the computed loss."""
grad_cond = torch.autograd.grad(
loss.requires_grad_(True), [latents], retain_graph=True
)[0]
latents = latents - step_size * grad_cond
return latents
def register_attention_control(self):
attn_procs = {}
cross_att_count = 0
for name in self.unet.attn_processors.keys():
if name.startswith("mid_block"):
place_in_unet = "mid"
elif name.startswith("up_blocks"):
place_in_unet = "up"
elif name.startswith("down_blocks"):
place_in_unet = "down"
else:
continue
cross_att_count += 1
attn_procs[name] = AttendExciteAttnProcessor(
attnstore=self.attention_store, place_in_unet=place_in_unet
)
self.unet.set_attn_processor(attn_procs)
self.attention_store.num_att_layers = cross_att_count
@torch.no_grad()
@replace_example_docstring(EXAMPLE_DOC_STRING)
def __call__(
self,
prompt: Union[str, List[str]] = None,
height: Optional[int] = None,
width: Optional[int] = None,
num_inference_steps: int = 50,
guidance_scale: float = 7.5,
negative_prompt: Optional[Union[str, List[str]]] = None,
num_images_per_prompt: Optional[int] = 1,
eta: float = 0.0,
generator: Optional[Union[torch.Generator, List[torch.Generator]]] = None,
latents: Optional[torch.FloatTensor] = None,
prompt_embeds: Optional[torch.FloatTensor] = None,
negative_prompt_embeds: Optional[torch.FloatTensor] = None,
output_type: Optional[str] = "pil",
return_dict: bool = True,
callback: Optional[Callable[[int, int, torch.FloatTensor], None]] = None,
callback_steps: int = 1,
cross_attention_kwargs: Optional[Dict[str, Any]] = None,
guidance_rescale: float = 0.0,
attn_res=None,
syngen_step_size: float = 20.0,
parsed_prompt: str = None,
num_intervention_steps: int = 25,
):
r"""
The call function to the pipeline for generation.
Args:
prompt (`str` or `List[str]`, *optional*):
The prompt or prompts to guide image generation. If not defined, you need to pass `prompt_embeds`.
height (`int`, *optional*, defaults to `self.unet.config.sample_size * self.vae_scale_factor`):
The height in pixels of the generated image.
width (`int`, *optional*, defaults to `self.unet.config.sample_size * self.vae_scale_factor`):
The width in pixels of the generated image.
num_inference_steps (`int`, *optional*, defaults to 50):
The number of denoising steps. More denoising steps usually lead to a higher quality image at the
expense of slower inference.
guidance_scale (`float`, *optional*, defaults to 7.5):
A higher guidance scale value encourages the model to generate images closely linked to the text
`prompt` at the expense of lower image quality. Guidance scale is enabled when `guidance_scale > 1`.
negative_prompt (`str` or `List[str]`, *optional*):
The prompt or prompts to guide what to not include in image generation. If not defined, you need to
pass `negative_prompt_embeds` instead. Ignored when not using guidance (`guidance_scale < 1`).
num_images_per_prompt (`int`, *optional*, defaults to 1):
The number of images to generate per prompt.
eta (`float`, *optional*, defaults to 0.0):
Corresponds to parameter eta (η) from the [DDIM](https://arxiv.org/abs/2010.02502) paper. Only applies
to the [`~schedulers.DDIMScheduler`], and is ignored in other schedulers.
generator (`torch.Generator` or `List[torch.Generator]`, *optional*):
A [`torch.Generator`](https://pytorch.org/docs/stable/generated/torch.Generator.html) to make
generation deterministic.
latents (`torch.FloatTensor`, *optional*):
Pre-generated noisy latents sampled from a Gaussian distribution, to be used as inputs for image
generation. Can be used to tweak the same generation with different prompts. If not provided, a latents
tensor is generated by sampling using the supplied random `generator`.
prompt_embeds (`torch.FloatTensor`, *optional*):
Pre-generated text embeddings. Can be used to easily tweak text inputs (prompt weighting). If not
provided, text embeddings are generated from the `prompt` input argument.
negative_prompt_embeds (`torch.FloatTensor`, *optional*):
Pre-generated negative text embeddings. Can be used to easily tweak text inputs (prompt weighting). If
not provided, `negative_prompt_embeds` are generated from the `negative_prompt` input argument.
output_type (`str`, *optional*, defaults to `"pil"`):
The output format of the generated image. Choose between `PIL.Image` or `np.array`.
return_dict (`bool`, *optional*, defaults to `True`):
Whether or not to return a [`~pipelines.stable_diffusion.StableDiffusionPipelineOutput`] instead of a
plain tuple.
callback (`Callable`, *optional*):
A function that calls every `callback_steps` steps during inference. The function is called with the
following arguments: `callback(step: int, timestep: int, latents: torch.FloatTensor)`.
callback_steps (`int`, *optional*, defaults to 1):
The frequency at which the `callback` function is called. If not specified, the callback is called at
every step.
cross_attention_kwargs (`dict`, *optional*):
A kwargs dictionary that if specified is passed along to the [`AttentionProcessor`] as defined in
[`self.processor`](https://github.com/huggingface/diffusers/blob/main/src/diffusers/models/attention_processor.py).
guidance_rescale (`float`, *optional*, defaults to 0.7):
Guidance rescale factor from [Common Diffusion Noise Schedules and Sample Steps are
Flawed](https://arxiv.org/pdf/2305.08891.pdf). Guidance rescale factor should fix overexposure when
using zero terminal SNR.
attn_res (`tuple`, *optional*, default computed from width and height):
The 2D resolution of the semantic attention map.
syngen_step_size (`float`, *optional*, default to 20.0):
Controls the step size of each SynGen update.
num_intervention_steps ('int', *optional*, defaults to 25):
The number of times we apply SynGen.
parsed_prompt (`str`, *optional*, default to None).
Examples:
Returns:
[`~pipelines.stable_diffusion.StableDiffusionPipelineOutput`] or `tuple`:
If `return_dict` is `True`, [`~pipelines.stable_diffusion.StableDiffusionPipelineOutput`] is returned,
otherwise a `tuple` is returned where the first element is a list with the generated images and the
second element is a list of `bool`s indicating whether the corresponding generated image contains
"not-safe-for-work" (nsfw) content.
"""
if parsed_prompt:
self.doc = parsed_prompt
else:
self.doc = self.parser(prompt)
# 0. Default height and width to unet
height = height or self.unet.config.sample_size * self.vae_scale_factor
width = width or self.unet.config.sample_size * self.vae_scale_factor
# 1. Check inputs. Raise error if not correct
self.check_inputs(
prompt,
height,
width,
callback_steps,
negative_prompt,
prompt_embeds,
negative_prompt_embeds,
)
# 2. Define call parameters
if prompt is not None and isinstance(prompt, str):
batch_size = 1
elif prompt is not None and isinstance(prompt, list):
batch_size = len(prompt)
else:
batch_size = prompt_embeds.shape[0]
device = self._execution_device
# here `guidance_scale` is defined analog to the guidance weight `w` of equation (2)
# of the Imagen paper: https://arxiv.org/pdf/2205.11487.pdf . `guidance_scale = 1`
# corresponds to doing no classifier free guidance.
do_classifier_free_guidance = guidance_scale > 1.0
# 3. Encode input prompt
text_encoder_lora_scale = (
cross_attention_kwargs.get("scale", None) if cross_attention_kwargs is not None else None
)
prompt_embeds, negative_prompt_embeds = self.encode_prompt(
prompt,
device,
num_images_per_prompt,
do_classifier_free_guidance,
negative_prompt,
prompt_embeds=prompt_embeds,
negative_prompt_embeds=negative_prompt_embeds,
lora_scale=text_encoder_lora_scale,
)
# For classifier free guidance, we need to do two forward passes.
# Here we concatenate the unconditional and text embeddings into a single batch
# to avoid doing two forward passes
if do_classifier_free_guidance:
prompt_embeds = torch.cat([negative_prompt_embeds, prompt_embeds])
# 4. Prepare timesteps
self.scheduler.set_timesteps(num_inference_steps, device=device)
timesteps = self.scheduler.timesteps
# 5. Prepare latent variables
num_channels_latents = self.unet.config.in_channels
latents = self.prepare_latents(
batch_size * num_images_per_prompt,
num_channels_latents,
height,
width,
prompt_embeds.dtype,
device,
generator,
latents,
)
# 6. Prepare extra step kwargs.
extra_step_kwargs = self.prepare_extra_step_kwargs(generator, eta)
if attn_res is None:
attn_res = int(np.ceil(width / 32)), int(np.ceil(height / 32))
self.attn_res = attn_res
self.attention_store = AttentionStore(self.attn_res)
self.register_attention_control()
text_embeddings = (
prompt_embeds[batch_size * num_images_per_prompt:] if do_classifier_free_guidance else prompt_embeds
)
# 7. Denoising loop
num_warmup_steps = len(timesteps) - num_inference_steps * self.scheduler.order
with self.progress_bar(total=num_inference_steps) as progress_bar:
for i, t in enumerate(timesteps):
if i < num_intervention_steps:
latents = self._syngen_step(
latents,
text_embeddings,
t,
i,
syngen_step_size,
cross_attention_kwargs,
prompt,
num_intervention_steps=num_intervention_steps,
)
# expand the latents if we are doing classifier free guidance
latent_model_input = (
torch.cat([latents] * 2) if do_classifier_free_guidance else latents
)
latent_model_input = self.scheduler.scale_model_input(
latent_model_input, t
)
# predict the noise residual
noise_pred = self.unet(
latent_model_input,
t,
encoder_hidden_states=prompt_embeds,
cross_attention_kwargs=cross_attention_kwargs,
return_dict=False,
)[0]
# perform guidance
if do_classifier_free_guidance:
noise_pred_uncond, noise_pred_text = noise_pred.chunk(2)
noise_pred = noise_pred_uncond + guidance_scale * (
noise_pred_text - noise_pred_uncond
)
if do_classifier_free_guidance and guidance_rescale > 0.0:
# Based on 3.4. in https://arxiv.org/pdf/2305.08891.pdf
noise_pred = rescale_noise_cfg(noise_pred, noise_pred_text, guidance_rescale=guidance_rescale)
# compute the previous noisy sample x_t -> x_t-1
latents = self.scheduler.step(noise_pred, t, latents, **extra_step_kwargs, return_dict=False)[0]
# call the callback, if provided
if i == len(timesteps) - 1 or (
(i + 1) > num_warmup_steps and (i + 1) % self.scheduler.order == 0
):
progress_bar.update()
if callback is not None and i % callback_steps == 0:
callback(i, t, latents)
if not output_type == "latent":
image = self.vae.decode(latents / self.vae.config.scaling_factor, return_dict=False)[0]
image, has_nsfw_concept = self.run_safety_checker(image, device, prompt_embeds.dtype)
else:
image = latents
has_nsfw_concept = None
if has_nsfw_concept is None:
do_denormalize = [True] * image.shape[0]
else:
do_denormalize = [not has_nsfw for has_nsfw in has_nsfw_concept]
image = self.image_processor.postprocess(image, output_type=output_type, do_denormalize=do_denormalize)
# Offload all models
self.maybe_free_model_hooks()
if not return_dict:
return (image, has_nsfw_concept)
return StableDiffusionPipelineOutput(
images=image, nsfw_content_detected=has_nsfw_concept
)
def _syngen_step(
self,
latents,
text_embeddings,
t,
i,
step_size,
cross_attention_kwargs,
prompt,
num_intervention_steps,
):
with torch.enable_grad():
latents = latents.clone().detach().requires_grad_(True)
updated_latents = []
for latent, text_embedding in zip(latents, text_embeddings):
# Forward pass of denoising with text conditioning
latent = latent.unsqueeze(0)
text_embedding = text_embedding.unsqueeze(0)
self.unet(
latent,
t,
encoder_hidden_states=text_embedding,
cross_attention_kwargs=cross_attention_kwargs,
return_dict=False,
)[0]
self.unet.zero_grad()
# Get attention maps
attention_maps = self._aggregate_and_get_attention_maps_per_token()
loss = self._compute_loss(attention_maps=attention_maps, prompt=prompt)
# Perform gradient update
if i < num_intervention_steps:
if loss != 0:
latent = self._update_latent(
latents=latent, loss=loss, step_size=step_size
)
logger.info(f"Iteration {i} | Loss: {loss:0.4f}")
updated_latents.append(latent)
latents = torch.cat(updated_latents, dim=0)
return latents
def _compute_loss(
self, attention_maps: List[torch.Tensor], prompt: Union[str, List[str]]
) -> torch.Tensor:
attn_map_idx_to_wp = get_attention_map_index_to_wordpiece(self.tokenizer, prompt)
loss = self._attribution_loss(attention_maps, prompt, attn_map_idx_to_wp)
return loss
def _attribution_loss(
self,
attention_maps: List[torch.Tensor],
prompt: Union[str, List[str]],
attn_map_idx_to_wp,
) -> torch.Tensor:
if not self.subtrees_indices:
self.subtrees_indices = self._extract_attribution_indices(prompt)
subtrees_indices = self.subtrees_indices
loss = 0
for subtree_indices in subtrees_indices:
noun, modifier = split_indices(subtree_indices)
all_subtree_pairs = list(itertools.product(noun, modifier))
if noun and not modifier:
if isinstance(noun, list) and len(noun) == 1:
processed_noun = noun[0]
else:
processed_noun = noun
loss += calculate_negative_loss(
attention_maps, modifier, processed_noun, subtree_indices, attn_map_idx_to_wp
)
else:
positive_loss, negative_loss = self._calculate_losses(
attention_maps,
all_subtree_pairs,
subtree_indices,
attn_map_idx_to_wp,
)
loss += positive_loss
loss += negative_loss
return loss
def _calculate_losses(
self,
attention_maps,
all_subtree_pairs,
subtree_indices,
attn_map_idx_to_wp,
):
positive_loss = []
negative_loss = []
for pair in all_subtree_pairs:
noun, modifier = pair
positive_loss.append(
calculate_positive_loss(attention_maps, modifier, noun)
)
negative_loss.append(
calculate_negative_loss(
attention_maps, modifier, noun, subtree_indices, attn_map_idx_to_wp
)
)
positive_loss = sum(positive_loss)
negative_loss = sum(negative_loss)
return positive_loss, negative_loss
def _align_indices(self, prompt, spacy_pairs):
wordpieces2indices = get_indices(self.tokenizer, prompt)
paired_indices = []
collected_spacy_indices = (
set()
) # helps track recurring nouns across different relations (i.e., cases where there is more than one instance of the same word)
for pair in spacy_pairs:
curr_collected_wp_indices = (
[]
) # helps track which nouns and amods were added to the current pair (this is useful in sentences with repeating amod on the same relation (e.g., "a red red red bear"))
for member in pair:
for idx, wp in wordpieces2indices.items():
if wp in [start_token, end_token]:
continue
wp = wp.replace("</w>", "")
if member.text.lower() == wp.lower():
if idx not in curr_collected_wp_indices and idx not in collected_spacy_indices:
curr_collected_wp_indices.append(idx)
break
# take care of wordpieces that are split up
elif member.text.lower().startswith(wp.lower()) and wp.lower() != member.text.lower(): # can maybe be while loop
wp_indices = align_wordpieces_indices(
wordpieces2indices, idx, member.text
)
# check if all wp_indices are not already in collected_spacy_indices
if wp_indices and (wp_indices not in curr_collected_wp_indices) and all(
[wp_idx not in collected_spacy_indices for wp_idx in wp_indices]):
curr_collected_wp_indices.append(wp_indices)
break
for collected_idx in curr_collected_wp_indices:
if isinstance(collected_idx, list):
for idx in collected_idx:
collected_spacy_indices.add(idx)
else:
collected_spacy_indices.add(collected_idx)
if curr_collected_wp_indices:
paired_indices.append(curr_collected_wp_indices)
else:
print(f"No wordpieces were aligned for {pair} in _align_indices")
return paired_indices
def _extract_attribution_indices(self, prompt):
modifier_indices = []
# extract standard attribution indices
modifier_sets_1 = extract_attribution_indices(self.doc)
modifier_indices_1 = self._align_indices(prompt, modifier_sets_1)
if modifier_indices_1:
modifier_indices.append(modifier_indices_1)
# extract attribution indices with verbs in between
modifier_sets_2 = extract_attribution_indices_with_verb_root(self.doc)
modifier_indices_2 = self._align_indices(prompt, modifier_sets_2)
if modifier_indices_2:
modifier_indices.append(modifier_indices_2)
modifier_sets_3 = extract_attribution_indices_with_verbs(self.doc)
modifier_indices_3 = self._align_indices(prompt, modifier_sets_3)
if modifier_indices_3:
modifier_indices.append(modifier_indices_3)
# entities only
if self.include_entities:
modifier_sets_4 = extract_entities_only(self.doc)
modifier_indices_4 = self._align_indices(prompt, modifier_sets_4)
modifier_indices.append(modifier_indices_4)
# make sure there are no duplicates
modifier_indices = unify_lists(modifier_indices)
print(f"Final modifier indices collected:{modifier_indices}")
return modifier_indices
def _get_attention_maps_list(
attention_maps: torch.Tensor
) -> List[torch.Tensor]:
attention_maps *= 100
attention_maps_list = [
attention_maps[:, :, i] for i in range(attention_maps.shape[2])
]
return attention_maps_list
def unify_lists(list_of_lists):
def flatten(lst):
for elem in lst:
if isinstance(elem, list):
yield from flatten(elem)
else:
yield elem
def have_common_element(lst1, lst2):
flat_list1 = set(flatten(lst1))
flat_list2 = set(flatten(lst2))
return not flat_list1.isdisjoint(flat_list2)
lst = []
for l in list_of_lists:
lst += l
changed = True
while changed:
changed = False
merged_list = []
while lst:
first = lst.pop(0)
was_merged = False
for index, other in enumerate(lst):
if have_common_element(first, other):
# If we merge, we should flatten the other list but not first
new_merged = first + [item for item in other if item not in first]
lst[index] = new_merged
changed = True
was_merged = True
break
if not was_merged:
merged_list.append(first)
lst = merged_list
return lst