-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpredict.py
More file actions
446 lines (390 loc) · 16.2 KB
/
predict.py
File metadata and controls
446 lines (390 loc) · 16.2 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
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
from typing import Optional
import torch
import os
from typing import List
import numpy as np
from PIL import Image
import cv2
import time
import sys
from transformers import pipeline, AutoImageProcessor, UperNetForSemanticSegmentation
from cog import BasePredictor, Input, Path
from diffusers import (
StableDiffusionControlNetPipeline,
ControlNetModel,
StableDiffusionPipeline,
StableDiffusionControlNetInpaintPipeline,
DDIMScheduler,
DPMSolverMultistepScheduler,
EulerAncestralDiscreteScheduler,
EulerDiscreteScheduler,
HeunDiscreteScheduler,
LMSDiscreteScheduler,
PNDMScheduler,
UniPCMultistepScheduler,
)
from controlnet_aux import (
HEDdetector,
OpenposeDetector,
MLSDdetector,
CannyDetector,
LineartDetector,
MidasDetector
)
from controlnet_aux.util import ade_palette
# from midas_hack import MidasDetector
from consistencydecoder import ConsistencyDecoder, save_image
from compel import Compel
from transformers import pipeline
def resize_image(image, max_width, max_height):
"""
Resize an image to a specific height while maintaining the aspect ratio and ensuring
that neither width nor height exceed the specified maximum values.
Args:
image (PIL.Image.Image): The input image.
max_width (int): The maximum allowable width for the resized image.
max_height (int): The maximum allowable height for the resized image.
Returns:
PIL.Image.Image: The resized image.
"""
# Get the original image dimensions
original_width, original_height = image.size
# Calculate the new dimensions to maintain the aspect ratio and not exceed the maximum values
width_ratio = max_width / original_width
height_ratio = max_height / original_height
# Choose the smallest ratio to ensure that neither width nor height exceeds the maximum
resize_ratio = min(width_ratio, height_ratio)
# Calculate the new width and height
new_width = int(original_width * resize_ratio)
new_height = int(original_height * resize_ratio)
# Resize the image
resized_image = image.resize((new_width, new_height), Image.LANCZOS)
return resized_image
AUX_IDS = {
"depth": "fusing/stable-diffusion-v1-5-controlnet-depth",
"scribble": "fusing/stable-diffusion-v1-5-controlnet-scribble",
'lineart': "ControlNet-1-1-preview/control_v11p_sd15_lineart",
'tile': "lllyasviel/control_v11f1e_sd15_tile",
'brightness': "ioclab/control_v1p_sd15_brightness",
"inpaint": "lllyasviel/control_v11p_sd15_inpaint",
}
SCHEDULERS = {
"DDIM": DDIMScheduler,
"DPMSolverMultistep": DPMSolverMultistepScheduler,
"HeunDiscrete": HeunDiscreteScheduler,
"K_EULER_ANCESTRAL": EulerAncestralDiscreteScheduler,
"K_EULER": EulerDiscreteScheduler,
"KLMS": LMSDiscreteScheduler,
"PNDM": PNDMScheduler,
"UniPCMultistep": UniPCMultistepScheduler,
}
SD15_WEIGHTS = "weights"
CONTROLNET_CACHE = "controlnet-cache"
PROCESSORS_CACHE = "processors-cache"
MISSING_WEIGHTS = []
if not os.path.exists(CONTROLNET_CACHE) or not os.path.exists(PROCESSORS_CACHE):
print(
"controlnet weights missing, use `cog run python script/download_weights` to download"
)
MISSING_WEIGHTS.append("controlnet")
if not os.path.exists(SD15_WEIGHTS):
print(
"sd15 weights missing, use `cog run python` and then load and save_pretrained('weights')"
)
MISSING_WEIGHTS.append("sd15")
class Predictor(BasePredictor):
def setup(self):
"""Load the model into memory to make running multiple predictions efficient"""
if len(MISSING_WEIGHTS) > 0:
print("skipping setup... missing weights: ", MISSING_WEIGHTS)
return
print("Loading pipeline...")
st = time.time()
self.pipe = StableDiffusionPipeline.from_pretrained(
SD15_WEIGHTS, torch_dtype=torch.float16, local_files_only=True
).to("cuda")
self.controlnets = {}
for name in AUX_IDS.keys():
self.controlnets[name] = ControlNetModel.from_pretrained(
os.path.join(CONTROLNET_CACHE, name),
torch_dtype=torch.float16,
local_files_only=True,
).to("cuda")
self.canny = CannyDetector()
# Depth + Normal
self.midas = MidasDetector.from_pretrained(
"lllyasviel/ControlNet", cache_dir=PROCESSORS_CACHE
)
self.hed = HEDdetector.from_pretrained(
"lllyasviel/ControlNet", cache_dir=PROCESSORS_CACHE
)
# Hough
self.mlsd = MLSDdetector.from_pretrained(
"lllyasviel/ControlNet", cache_dir=PROCESSORS_CACHE
)
self.seg_processor = AutoImageProcessor.from_pretrained(
"openmmlab/upernet-convnext-small", cache_dir=PROCESSORS_CACHE
)
self.seg_segmentor = UperNetForSemanticSegmentation.from_pretrained(
"openmmlab/upernet-convnext-small", cache_dir=PROCESSORS_CACHE
)
self.pose = OpenposeDetector.from_pretrained(
"lllyasviel/Annotators", cache_dir=PROCESSORS_CACHE
)
self.lineart = LineartDetector.from_pretrained("lllyasviel/Annotators")
self.compel_proc = Compel(tokenizer=self.pipe.tokenizer, text_encoder=self.pipe.text_encoder)
self.consistency_decoder = ConsistencyDecoder(
device="cuda:0", download_root="/src/consistencydecoder-cache"
)
self.depth_estimator = pipeline('depth-estimation')
print("Setup complete in %f" % (time.time() - st))
def depth_preprocess(self, img):
image = self.depth_estimator(img)['depth']
image = np.array(image)
image = image[:, :, None]
image = np.concatenate([image, image, image], axis=2)
image = Image.fromarray(image)
return image
def scribble_preprocess(self, img):
return self.hed(img, scribble=True)
def lineart_preprocess(self, img):
return self.lineart(img)
def tile_preprocess(self, img):
return img
def brightness_preprocess(self, img):
return img
def make_inpaint_condition(self, image, image_mask):
image = np.array(image.convert("RGB")).astype(np.float32) / 255.0
image_mask = np.array(image_mask.convert("L")).astype(np.float32) / 255.0
assert image.shape[0:1] == image_mask.shape[0:1], "image and image_mask must have the same image size"
image[image_mask > 0.5] = -1.0 # set as masked pixel
image = np.expand_dims(image, 0).transpose(0, 3, 1, 2)
image = torch.from_numpy(image)
return image
def build_pipe(
self, inputs, max_width, max_height, guess_mode=False
):
control_nets = []
processed_control_images = []
conditioning_scales = []
w, h = max_width, max_height
inpainting = False
#image and mask for inpainting
mask= None
init_image= None
got_size= False
for name, [image, conditioning_scale, mask_image] in inputs.items():
if image is None:
continue
image = Image.open(image)
if not got_size:
image= resize_image(image, max_width, max_height)
w, h= image.size
got_size= True
else:
image= image.resize((w,h))
if name=="inpainting" and mask_image:
inpainting = True
mask_image= Image.open(mask_image)
mask= mask_image.resize((w,h))
img= self.make_inpaint_condition(image, mask)
init_image= image
else:
img = getattr(self, "{}_preprocess".format(name))(image)
if not inpainting:
img= img.resize((w,h))
control_nets.append(self.controlnets[name])
processed_control_images.append(img)
conditioning_scales.append(conditioning_scale)
if len(control_nets) == 0:
pipe = self.pipe
kwargs = {}
else:
if inpainting:
pipe = StableDiffusionControlNetInpaintPipeline(
vae=self.pipe.vae,
text_encoder=self.pipe.text_encoder,
tokenizer=self.pipe.tokenizer,
unet=self.pipe.unet,
scheduler=self.pipe.scheduler,
safety_checker=self.pipe.safety_checker,
feature_extractor=self.pipe.feature_extractor,
controlnet=control_nets,
)
kwargs = {
"image": init_image,
"mask_image": mask,
"control_image": processed_control_images,
"controlnet_conditioning_scale": conditioning_scales,
"guess_mode": guess_mode,
}
else:
pipe = StableDiffusionControlNetPipeline(
vae=self.pipe.vae,
text_encoder=self.pipe.text_encoder,
tokenizer=self.pipe.tokenizer,
unet=self.pipe.unet,
scheduler=self.pipe.scheduler,
safety_checker=self.pipe.safety_checker,
feature_extractor=self.pipe.feature_extractor,
controlnet=control_nets,
)
kwargs = {
"image": processed_control_images,
"controlnet_conditioning_scale": conditioning_scales,
"guess_mode": guess_mode,
}
return pipe, kwargs
@torch.inference_mode()
def predict(
self,
prompt: str = Input(description="Prompt - using compel, use +++ to increase words weight:: doc: https://github.com/damian0815/compel/tree/main/doc || https://invoke-ai.github.io/InvokeAI/features/PROMPTS/#attention-weighting",),
lineart_image: Path = Input(
description="Control image for canny controlnet", default=None
),
lineart_conditioning_scale: float = Input(
description="Conditioning scale for canny controlnet",
default=1,
),
depth_image: Path = Input(
description="Control image for depth controlnet", default=None
),
depth_conditioning_scale: float = Input(
description="Conditioning scale for depth controlnet",
default=1,
),
scribble_image: Path = Input(
description="Control image for scribble controlnet", default=None
),
scribble_conditioning_scale: float = Input(
description="Conditioning scale for scribble controlnet",
default=1,
),
tile_image: Path = Input(
description="Control image for tile controlnet", default=None
),
tile_conditioning_scale: float = Input(
description="Conditioning scale for tile controlnet",
default=1,
),
brightness_image: Path = Input(
description="Control image for brightness controlnet", default=None
),
brightness_conditioning_scale: float = Input(
description="Conditioning scale for brightness controlnet",
default=1,
),
inpainting_image: Path = Input(
description="Control image for inpainting controlnet", default=None
),
mask_image: Path = Input(
description="mask image for inpainting controlnet", default=None
),
inpainting_conditioning_scale: float = Input(
description="Conditioning scale for brightness controlnet",
default=1,
),
num_outputs: int = Input(
description="Number of images to generate",
ge=1,
le=10,
default=1,
),
max_width: int = Input(
description="Max width/Resolution of image",
default=512,
),
max_height: int = Input(
description="Max height/Resolution of image",
default=512,
),
consistency_decoder: bool = Input(
description="Enable consistency decoder",
default=True,
),
scheduler: str = Input(
default="DDIM",
choices=SCHEDULERS.keys(),
description="Choose a scheduler.",
),
num_inference_steps: int = Input(description="Steps to run denoising", default=20),
guidance_scale: float = Input(
description="Scale for classifier-free guidance",
default=7.0,
ge=0.1,
le=30.0,
),
seed: int = Input(description="Seed", default=None),
eta: float = Input(
description="Controls the amount of noise that is added to the input data during the denoising diffusion process. Higher value -> more noise",
default=0.0,
),
negative_prompt: str = Input( # FIXME
description="Negative prompt - using compel, use +++ to increase words weight",
default="Longbody, lowres, bad anatomy, bad hands, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality",
),
guess_mode: bool = Input(
description="In this mode, the ControlNet encoder will try best to recognize the content of the input image even if you remove all prompts. The `guidance_scale` between 3.0 and 5.0 is recommended.",
default=False,
),
disable_safety_check: bool = Input(
description="Disable safety check. Use at your own risk!", default=False
),
) -> List[Path]:
if len(MISSING_WEIGHTS) > 0:
raise Exception("missing weights")
pipe, kwargs = self.build_pipe(
{
"lineart": [lineart_image, lineart_conditioning_scale, None],
"depth": [depth_image, depth_conditioning_scale, None],
"tile": [tile_image, tile_conditioning_scale, None],
"inpainting": [inpainting_image, inpainting_conditioning_scale, mask_image],
"scribble": [scribble_image, scribble_conditioning_scale, None],
"brightness": [brightness_image, brightness_conditioning_scale, None],
},
max_width=max_width,
max_height=max_height,
guess_mode=guess_mode,
)
pipe.enable_xformers_memory_efficient_attention()
pipe.scheduler = SCHEDULERS[scheduler].from_config(pipe.scheduler.config)
if seed is None:
seed = int.from_bytes(os.urandom(2), "big")
print(f"Using seed: {seed}")
generator = torch.Generator("cuda").manual_seed(seed)
if disable_safety_check:
pipe.safety_checker = None
output_paths= []
for idx in range(num_outputs):
this_seed = seed + idx
generator = torch.Generator("cuda").manual_seed(this_seed)
output = pipe(
prompt_embeds=self.compel_proc(prompt),
num_inference_steps=num_inference_steps,
guidance_scale=guidance_scale,
eta=eta,
negative_prompt_embeds=self.compel_proc(negative_prompt),
num_images_per_prompt=1,
generator=generator,
output_type="latent" if consistency_decoder else None,
**kwargs,
)
if output.nsfw_content_detected and output.nsfw_content_detected[0]:
continue
output_path = f"/tmp/seed-{this_seed}.png"
if consistency_decoder:
print("Running consistency decoder...")
start = time.time()
sample = self.consistency_decoder(
output.images[0].unsqueeze(0) / self.pipe.vae.config.scaling_factor
)
print("Consistency decoder took", time.time() - start, "seconds")
save_image(sample, output_path)
else:
output.images[0].save(output_path)
output_paths.append(Path(output_path))
if len(output_paths) == 0:
raise Exception(
f"NSFW content detected. Try running it again, or try a different prompt."
)
return output_paths