-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.py
365 lines (311 loc) · 16.9 KB
/
app.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
import sys
sys.path.append('./')
from adaface.adaface_wrapper import AdaFaceWrapper
import torch
import numpy as np
import random
import os, re
import gradio as gr
import spaces
def str2bool(v):
if isinstance(v, bool):
return v
if v.lower() in ("yes", "true", "t", "y", "1"):
return True
elif v.lower() in ("no", "false", "f", "n", "0"):
return False
else:
raise argparse.ArgumentTypeError("Boolean value expected.")
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("--adaface_encoder_types", type=str, nargs="+", default=["consistentID", "arc2face"],
choices=["arc2face", "consistentID"], help="Type(s) of the ID2Ada prompt encoders")
parser.add_argument('--adaface_ckpt_path', type=str, default='models/adaface/VGGface2_HQ_masks2024-10-14T16-09-24_zero3-ada-3500.pt',
help="Paths to the checkpoints of the ID2Ada prompt encoders")
# If adaface_encoder_cfg_scales is not specified, the weights will be set to 6.0 (consistentID) and 1.0 (arc2face).
parser.add_argument('--adaface_encoder_cfg_scales', type=float, nargs="+", default=None,
help="Scales for the ID2Ada prompt encoders")
parser.add_argument("--enabled_encoders", type=str, nargs="+", default=None,
choices=["arc2face", "consistentID"],
help="List of enabled encoders (among the list of adaface_encoder_types). Default: None (all enabled)")
parser.add_argument('--model_style_type', type=str, default='realistic',
choices=["realistic", "anime", "photorealistic"], help="Type of the base model")
parser.add_argument('--extra_unet_dirpaths', type=str, nargs="*", default=[],
help="Extra paths to the checkpoints of the UNet models")
parser.add_argument('--unet_weights_in_ensemble', type=float, nargs="+", default=[1],
help="Weights for the UNet models")
parser.add_argument("--guidance_scale", type=float, default=6.0,
help="The guidance scale for the diffusion model. Default: 6.0")
parser.add_argument("--unet_uses_attn_lora", type=str2bool, nargs="?", const=True, default=False,
help="Whether to use LoRA in the Diffusers UNet model")
parser.add_argument("--suppress_sc_subj_attn", type=str2bool, nargs="?", const=True, default=False,
help="Whether to suppress the subject attention in the subject-compositional instances")
parser.add_argument('--extra_save_dir', type=str, default=None, help="Directory to save the generated images")
parser.add_argument('--gpu', type=int, default=None)
parser.add_argument('--ip', type=str, default="0.0.0.0")
args = parser.parse_args()
model_style_type2base_model_path = {
"realistic": "models/rv51/realisticVisionV51_v51VAE_dste8.safetensors",
"anime": "models/aingdiffusion/aingdiffusion_v170_ar.safetensors",
"photorealistic": "models/sar/sar.safetensors" # LDM format. Needs to be converted.
}
base_model_path = model_style_type2base_model_path[args.model_style_type]
# global variable
MAX_SEED = np.iinfo(np.int32).max
device = "cuda" if args.gpu is None else f"cuda:{args.gpu}"
print(f"Device: {device}")
global adaface
adaface = AdaFaceWrapper(pipeline_name="text2img", base_model_path=base_model_path,
adaface_encoder_types=args.adaface_encoder_types,
adaface_ckpt_paths=args.adaface_ckpt_path,
adaface_encoder_cfg_scales=args.adaface_encoder_cfg_scales,
enabled_encoders=args.enabled_encoders,
unet_types=None, extra_unet_dirpaths=args.extra_unet_dirpaths,
unet_weights_in_ensemble=args.unet_weights_in_ensemble,
unet_uses_attn_lora=args.unet_uses_attn_lora,
suppress_sc_subj_attn=args.suppress_sc_subj_attn,
device='cpu')
def randomize_seed_fn(seed: int, randomize_seed: bool) -> int:
if randomize_seed:
seed = random.randint(0, MAX_SEED)
return seed
def swap_to_gallery(images):
# Update uploaded_files_gallery, show files, hide clear_button_column
# Or:
# Update uploaded_init_img_gallery, show init_img_files, hide init_clear_button_column
return gr.update(value=images, visible=True), gr.update(visible=True), gr.update(value=images, visible=False)
def remove_back_to_files():
# Hide uploaded_files_gallery, show clear_button_column, hide files, reset init_img_selected_idx
# Or:
# Hide uploaded_init_img_gallery, hide init_clear_button_column, show init_img_files, reset init_img_selected_idx
return gr.update(visible=False), gr.update(visible=False), gr.update(value=None, visible=True), gr.update(value="")
@spaces.GPU
def generate_image(image_paths, guidance_scale, perturb_std,
num_images, prompt, negative_prompt, enhance_face,
seed, subj_name_sig, progress=gr.Progress(track_tqdm=True)):
global adaface
adaface.to(device)
if image_paths is None or len(image_paths) == 0:
raise gr.Error(f"Cannot find any input face image! Please upload a face image.")
if prompt is None:
prompt = ""
adaface_subj_embs = \
adaface.prepare_adaface_embeddings(image_paths=image_paths, face_id_embs=None,
avg_at_stage='id_emb',
perturb_at_stage='img_prompt_emb',
perturb_std=perturb_std, update_text_encoder=True)
if adaface_subj_embs is None:
raise gr.Error(f"Failed to detect any faces! Please try with other images")
# Sometimes the pipeline is on CPU, although we've put it on CUDA (due to some offloading mechanism).
# Therefore we set the generator to the correct device.
generator = torch.Generator(device=device).manual_seed(seed)
print(f"Manual seed: {seed}.")
# Generate two images each time for the user to select from.
noise = torch.randn(num_images, 3, 512, 512, device=device, generator=generator)
#print(noise.abs().sum())
# samples: A list of PIL Image instances.
if enhance_face and "face portrait" not in prompt:
if "portrait" in prompt:
# Enhance the face features by replacing "portrait" with "face portrait".
prompt = prompt.replace("portrait", "face portrait")
else:
prompt = "face portrait, " + prompt
generator = torch.Generator(device=adaface.pipeline._execution_device).manual_seed(seed)
samples = adaface(noise, prompt, negative_prompt=negative_prompt,
guidance_scale=guidance_scale,
out_image_count=num_images, generator=generator,
repeat_prompt_for_each_encoder=True,
verbose=True)
session_signature = ",".join(image_paths + [prompt, str(seed)])
temp_folder = os.path.join("/tmp/gradio", f"{hash(session_signature)}")
os.makedirs(temp_folder, exist_ok=True)
saved_image_paths = []
# adaface_ckpt_path = "VGGface2_HQ_masks2024-11-28T13-13-20_zero3-ada/checkpoints/embeddings_gs-2000.pt"
matches = re.search(r"\d{4}-(\d{2})-(\d{2})T(\d{2})-\d{2}-\d{2}_zero3-ada/checkpoints/embeddings_gs-(\d+).pt", args.adaface_ckpt_path)
# Extract the checkpoint signature as 112813-2000
ckpt_sig = f"{matches.group(1)}{matches.group(2)}{matches.group(3)}-{matches.group(4)}"
prompt_keywords = ['armor', 'beach', 'chef', 'dancing', 'iron man', 'jedi',
'street', 'guitar', 'reading', 'running', 'superman']
keywords_reduction = { 'iron man': 'ironman', 'dancing': 'dance',
'running': 'run', 'reading': 'read' }
prompt_sig = ""
for keyword in prompt_keywords:
if keyword in prompt.lower():
prompt_sig = keywords_reduction.get(keyword, keyword)
break
if len(prompt_sig) > 0:
prompt_sig = "-" + prompt_sig
extra_save_dir = args.extra_save_dir
if extra_save_dir is not None:
os.makedirs(extra_save_dir, exist_ok=True)
for i, sample in enumerate(samples):
filename = f"adaface{ckpt_sig}{prompt_sig}-{i+1}.png"
if len(subj_name_sig) > 0:
filename = f"{subj_name_sig}-{filename}"
filepath = os.path.join(temp_folder, filename)
# Save the image
sample.save(filepath) # Adjust to your image saving method
saved_image_paths.append(filepath)
if extra_save_dir is not None:
extra_filepath = os.path.join(extra_save_dir, filename)
sample.save(extra_filepath)
print(extra_filepath)
return saved_image_paths
def check_prompt_and_model_type(prompt, model_style_type):
global adaface
model_style_type = model_style_type.lower()
base_model_path = model_style_type2base_model_path[model_style_type]
# If the base model type is changed, reload the model.
if model_style_type != args.model_style_type:
adaface = AdaFaceWrapper(pipeline_name="text2img", base_model_path=base_model_path,
adaface_encoder_types=args.adaface_encoder_types,
adaface_ckpt_paths=args.adaface_ckpt_path, device='cpu')
# Update base model type.
args.model_style_type = model_style_type
if not prompt:
raise gr.Error("Prompt cannot be blank")
### Description
title = r"""
<h1>AdaFace: A Versatile Face Encoder for Zero-Shot Diffusion Model Personalization</h1>
"""
description = r"""
<b>Official demo</b> for our working paper <b>AdaFace: A Versatile Face Encoder for Zero-Shot Diffusion Model Personalization</b>.<br>
❗️**What's New**❗️
- Support switching between two model styles: **Realistic** and **Anime**.
- If you just changed the model style, the first image/video generation will take extra 20~30 seconds for loading new model weight.
❗️**Tips**❗️
1. Upload one or more images of a person. If multiple faces are detected, we use the largest one.
2. Check "Enhance Face" to highlight fine facial features.
3. If the face dominates the image, try increasing 'Weight of ID prompt in the negative prompt'.
4. AdaFace Text-to-Video: <a href="https://huggingface.co/spaces/adaface-neurips/adaface-animate" style="display: inline-flex; align-items: center;">
AdaFace-Animate
<img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-yellow" alt="Hugging Face Spaces" style="margin-left: 5px;">
</a>
**TODO:**
- ControlNet integration.
"""
css = '''
.gradio-container {width: 95% !important},
.custom-gallery {
height: 800px;
width: 100%;
margin: 10px auto;
padding: 10px;
overflow-y: auto;
}
'''
with gr.Blocks(css=css, theme=gr.themes.Origin()) as demo:
# description
gr.Markdown(title)
gr.Markdown(description)
with gr.Row():
with gr.Column():
# upload face image
# img_file = gr.Image(label="Upload a photo with a face", type="filepath")
img_files = gr.File(
label="Drag / Select 1 or more photos of a person's face",
file_types=["image"],
file_count="multiple"
)
uploaded_files_gallery = gr.Gallery(label="Subject images", visible=False, columns=3, rows=1, height=300)
with gr.Column(visible=False) as clear_button_column:
remove_and_reupload = gr.ClearButton(value="Remove and upload subject images", components=img_files, size="sm")
prompt = gr.Dropdown(label="Prompt",
info="Try something like 'walking on the beach'. If the face is not in focus, try checking 'enhance face'.",
value="portrait, highlighted hair, futuristic silver armor suit, confident stance, living room, smiling, head tilted, perfect smooth skin",
allow_custom_value=True,
filterable=False,
choices=[
"portrait, highlighted hair, futuristic silver armor suit, confident stance, living room, smiling, head tilted, perfect smooth skin",
"portrait, walking on the beach, sunset, orange sky",
"portrait, in a white apron and chef hat, garnishing a gourmet dish",
"portrait, dancing pose among folks in a park, waving hands",
"portrait, in iron man costume, the sky ablaze with hues of orange and purple",
"portrait, jedi wielding a lightsaber, star wars, eye level shot",
"portrait, night view of tokyo street, neon light",
"portrait, playing guitar on a boat, ocean waves",
"portrait, with a passion for reading, curled up with a book in a cozy nook near a window",
"portrait, running pose in a park, eye level shot",
"portrait, in superman costume, the sky ablaze with hues of orange and purple"
])
enhance_face = gr.Checkbox(label="Enhance face", value=False,
info="Enhance the face features by prepending 'face portrait' to the prompt")
subj_name_sig = gr.Textbox(
label="Nickname of Subject",
value="",
)
submit = gr.Button("Submit", variant="primary")
negative_prompt = gr.Textbox(
label="Negative Prompt",
value="flaws in the eyes, flaws in the face, lowres, non-HDRi, low quality, worst quality, artifacts, noise, text, watermark, glitch, mutated, ugly, disfigured, hands, partially rendered objects, partially rendered eyes, deformed eyeballs, cross-eyed, blurry, mutation, duplicate, out of frame, cropped, mutilated, bad anatomy, deformed, bad proportions, nude, naked, nsfw, topless, bare breasts",
)
guidance_scale = gr.Slider(
label="Guidance scale",
minimum=1.0,
maximum=12.0,
step=1.0,
value=args.guidance_scale,
)
model_style_type = gr.Dropdown(
label="Base Model Style Type",
info="Switching the base model type will take 10~20 seconds to reload the model",
value=args.model_style_type.capitalize(),
choices=["Realistic", "Anime", "Photorealistic"],
allow_custom_value=False,
filterable=False,
)
perturb_std = gr.Slider(
label="Std of noise added to input (may help stablize face embeddings)",
minimum=0.0,
maximum=0.05,
step=0.025,
value=0.0,
visible=False,
)
num_images = gr.Slider(
label="Number of output images",
minimum=1,
maximum=6,
step=1,
value=4,
)
seed = gr.Slider(
label="Seed",
minimum=0,
maximum=MAX_SEED,
step=1,
value=0,
)
randomize_seed = gr.Checkbox(label="Randomize seed", value=True, info="Uncheck for reproducible results")
with gr.Column():
out_gallery = gr.Gallery(label="Generated Images", interactive=False, columns=2, rows=2, height=800,
elem_classes="custom-gallery")
img_files.upload(fn=swap_to_gallery, inputs=img_files, outputs=[uploaded_files_gallery, clear_button_column, img_files])
remove_and_reupload.click(fn=remove_back_to_files, outputs=[uploaded_files_gallery, clear_button_column, img_files, subj_name_sig])
submit.click(fn=check_prompt_and_model_type,
inputs=[prompt, model_style_type],outputs=None).success(
fn=randomize_seed_fn,
inputs=[seed, randomize_seed],
outputs=seed,
queue=False,
api_name=False,
).then(
fn=generate_image,
inputs=[img_files, guidance_scale, perturb_std, num_images,
prompt, negative_prompt, enhance_face, seed, subj_name_sig],
outputs=[out_gallery]
)
subj_name_sig.submit(fn=check_prompt_and_model_type,
inputs=[prompt, model_style_type],outputs=None).success(
fn=randomize_seed_fn,
inputs=[seed, randomize_seed],
outputs=seed,
queue=False,
api_name=False,
).then(
fn=generate_image,
inputs=[img_files, guidance_scale, perturb_std, num_images,
prompt, negative_prompt, enhance_face, seed, subj_name_sig],
outputs=[out_gallery]
)
demo.launch(share=True, server_name=args.ip, ssl_verify=False)