-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
258 lines (220 loc) · 8.09 KB
/
app.py
File metadata and controls
258 lines (220 loc) · 8.09 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
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
import gradio as gr
# torch
import torch
from torchvision import transforms
from diffusers import (
AutoencoderKL,
UNet2DConditionModel,
UniPCMultistepScheduler,
StableDiffusionControlNetPipeline,
)
from diffusers.optimization import get_scheduler
from transformers import AutoTokenizer, CLIPTextModel, CLIPModel, CLIPProcessor
from model.utils import BestEmbeddings
from model.edgestyle_multicontrolnet import EdgeStyleMultiControlNetModel
# local
from model.controllora import ControlLoRAModel, CachedControlNetModel
from model.utils import BestEmbeddings
from model.edgestyle_multicontrolnet import EdgeStyleMultiControlNetModel
from model.edgestyle_pipeline import EdgeStyleStableDiffusionControlNetPipeline
from extract_dataset import process_batch, create_sam_images_for_batch
RESOLUTION = 512
IMAGES_TRANSFORMS = transforms.Compose(
[
transforms.ToTensor(),
transforms.Normalize([0.5], [0.5]),
]
)
CONDITIONING_IMAGES_TRANSFORMS = transforms.Compose(
[
transforms.ToTensor(),
]
)
CONTROLNET_PATTERN = [0, None, 1, None, 1, None]
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
PRETRAINED_MODEL_NAME_OR_PATH = "./models/Realistic_Vision_V5.1_noVAE"
PRETRAINED_VAE_NAME_OR_PATH = "./models/sd-vae-ft-mse"
PRETRAINED_OPENPOSE_NAME_OR_PATH = "./models/control_v11p_sd15_openpose"
CONTROLNET_MODEL_NAME_OR_PATH = "./models/EdgeStyle/controlnet"
CLIP_MODEL_NAME_OR_PATH = "./models/clip-vit-large-patch14"
NEGATIVE_PROMPT = (
r"deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, "
"cartoon, drawing, anime, mutated hands and fingers, deformed, distorted, "
"disfigured, poorly drawn, bad anatomy, wrong anatomy, extra limb, missing limb, "
"floating limbs, disconnected limbs, mutation, mutated, ugly, disgusting, amputation"
)
PROMT_TO_ADD = (
", gray background, RAW photo, subject, 8k uhd, dslr, soft lighting, high quality"
)
model = CLIPModel.from_pretrained(CLIP_MODEL_NAME_OR_PATH).to(device)
processor = CLIPProcessor.from_pretrained(CLIP_MODEL_NAME_OR_PATH)
best_embeddings = BestEmbeddings(model, processor)
tokenizer = AutoTokenizer.from_pretrained(
PRETRAINED_MODEL_NAME_OR_PATH,
subfolder="tokenizer",
use_fast=False,
)
text_encoder = CLIPTextModel.from_pretrained(
PRETRAINED_MODEL_NAME_OR_PATH,
subfolder="text_encoder",
)
vae = AutoencoderKL.from_pretrained(PRETRAINED_VAE_NAME_OR_PATH)
unet = UNet2DConditionModel.from_pretrained(
PRETRAINED_MODEL_NAME_OR_PATH,
subfolder="unet",
)
openpose = CachedControlNetModel.from_pretrained(PRETRAINED_OPENPOSE_NAME_OR_PATH)
controlnet = EdgeStyleMultiControlNetModel.from_pretrained(
CONTROLNET_MODEL_NAME_OR_PATH,
vae=vae,
controlnet_class=ControlLoRAModel,
load_pattern=CONTROLNET_PATTERN,
static_controlnets=[None, openpose, None, openpose, None, openpose],
)
for net in controlnet.nets:
if net is not openpose:
net.tie_weights(unet)
# pipeline = StableDiffusionControlNetPipeline.from_pretrained(
# PRETRAINED_MODEL_NAME_OR_PATH,
# vae=vae,
# text_encoder=text_encoder,
# tokenizer=tokenizer,
# unet=unet,
# controlnet=controlnet,
# safety_checker=None,
# )
pipeline = EdgeStyleStableDiffusionControlNetPipeline.from_pretrained(
PRETRAINED_MODEL_NAME_OR_PATH,
vae=vae,
text_encoder=text_encoder,
tokenizer=tokenizer,
unet=unet,
controlnet=controlnet,
safety_checker=None,
)
pipeline.scheduler = UniPCMultistepScheduler.from_config(pipeline.scheduler.config)
generator = torch.Generator(device).manual_seed(42)
# vae.enable_xformers_memory_efficient_attention(attention_op=None)
# pipeline.enable_xformers_memory_efficient_attention()
pipeline = pipeline.to(device)
def preprocess(image_subject, image_cloth1, image_cloth2):
data = process_batch([image_subject, image_cloth1, image_cloth2])
if data is None or len(data) < 3:
# try again, sometimes first time fails
print("Retrying")
data = process_batch([image_subject, image_cloth1, image_cloth2])
data = create_sam_images_for_batch(data)
image_subject_head = data["head_image"].iloc[0]
image_cloth1_clothes = data["clothes_image"].iloc[1]
image_cloth2_clothes = data["clothes_image"].iloc[2]
image_subject_openpose = data["openpose_image"].iloc[0]
image_cloth1_openpose = data["openpose_image"].iloc[1]
image_cloth2_openpose = data["openpose_image"].iloc[2]
return (
image_subject_head,
image_subject_openpose,
image_cloth1_clothes,
image_cloth1_openpose,
image_cloth2_clothes,
image_cloth2_openpose,
)
def try_on(
image_subject_agnostic,
image_subject_openpose,
image_cloth1_clothes,
image_cloth1_openpose,
image_cloth2_clothes,
image_cloth2_openpose,
scale,
steps,
):
with torch.autocast("cuda"):
generator.manual_seed(42)
prompts = best_embeddings([image_cloth1_clothes])
image = pipeline(
prompt=prompts[0] + " " + PROMT_TO_ADD,
# prompt=prompts[0],
guidance_scale=scale,
image=[
IMAGES_TRANSFORMS(image_subject_agnostic).unsqueeze(0),
CONDITIONING_IMAGES_TRANSFORMS(image_subject_openpose).unsqueeze(0),
IMAGES_TRANSFORMS(image_cloth1_clothes).unsqueeze(0),
CONDITIONING_IMAGES_TRANSFORMS(image_cloth1_openpose).unsqueeze(0),
IMAGES_TRANSFORMS(image_cloth2_clothes).unsqueeze(0),
CONDITIONING_IMAGES_TRANSFORMS(image_cloth2_openpose).unsqueeze(0),
],
negative_prompt=NEGATIVE_PROMPT,
num_inference_steps=steps,
generator=generator,
# control_guidance_start=[0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
# control_guidance_end=[1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
).images[0]
return image
with gr.Blocks() as iface:
with gr.Row():
with gr.Column():
image_subject = gr.Image(label="Subject")
with gr.Column():
image_cloth1 = gr.Image(label="Clothes 1")
with gr.Column():
image_cloth2 = gr.Image(label="Clothes 2")
with gr.Row():
with gr.Column():
btn = gr.Button("Preprocess")
with gr.Row():
with gr.Column():
image_subject_agnostic = gr.Image(height=RESOLUTION, width=RESOLUTION)
with gr.Column():
image_cloth1_clothes = gr.Image(height=RESOLUTION, width=RESOLUTION)
with gr.Column():
image_cloth2_clothes = gr.Image(height=RESOLUTION, width=RESOLUTION)
with gr.Row():
with gr.Column():
image_subject_openpose = gr.Image(height=RESOLUTION, width=RESOLUTION)
with gr.Column():
image_cloth1_openpose = gr.Image(height=RESOLUTION, width=RESOLUTION)
with gr.Column():
image_cloth2_openpose = gr.Image(height=RESOLUTION, width=RESOLUTION)
btn.click(
preprocess,
inputs=[image_subject, image_cloth1, image_cloth2],
outputs=[
image_subject_agnostic,
image_subject_openpose,
image_cloth1_clothes,
image_cloth1_openpose,
image_cloth2_clothes,
image_cloth2_openpose,
],
)
with gr.Row():
with gr.Column():
sliderScale = gr.Slider(
minimum=1.0, maximum=12.0, value=3.5, step=0.1, label="Guidance Scale"
)
sliderSteps = gr.Slider(
minimum=20,
maximum=100,
value=20,
step=1,
label="Inference Steps",
)
btnTryOn = gr.Button("Try On")
with gr.Row():
with gr.Column():
image_try_on = gr.Image(height=RESOLUTION, width=RESOLUTION)
btnTryOn.click(
try_on,
inputs=[
image_subject_agnostic,
image_subject_openpose,
image_cloth1_clothes,
image_cloth1_openpose,
image_cloth2_clothes,
image_cloth2_openpose,
sliderScale,
sliderSteps,
],
outputs=[image_try_on],
)
iface.launch()