-
Notifications
You must be signed in to change notification settings - Fork 52
/
runner_inpaint.py
92 lines (80 loc) · 3.14 KB
/
runner_inpaint.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
import math
import dotenv
from PIL import Image
from paint_with_words import paint_with_words_inpaint, PaintWithWord_StableDiffusionInpaintPipeline
import torch
EXAMPLE_SETTING_1 = {
"color_context": {
(7, 9, 182): "aurora,0.5",
(136, 178, 92): "full moon,1.5",
(51, 193, 217): "mountains,0.4",
(61, 163, 35): "a half-frozen lake,0.3",
(89, 102, 255): "boat,2.0",
},
"color_map_img_path": "contents/aurora_1.png",
"input_prompt": "A digital painting of a half-frozen lake near mountains under a full moon and aurora. A boat is in the middle of the lake. Highly detailed.",
"output_img_path": "contents/aurora_3_output.png",
"img_path": "contents/aurora_1_output.png",
"mask_path": "contents/moon_mask.png",
}
EXAMPLE_SETTING_2 = {
"color_context": {
(7, 9, 182): "aurora,0.5",
(136, 178, 92): "full moon,1.5",
(51, 193, 217): "mountains,0.4",
(61, 163, 35): "a half-frozen lake,0.3",
(89, 102, 255): "boat,2.0",
},
"color_map_img_path": "contents/aurora_3.png",
"input_prompt": "A digital painting of a half-frozen lake near mountains under a full moon and aurora. A boat is in the middle of the lake. Highly detailed.",
"output_img_path": "contents/aurora_4_output.png",
"img_path": "contents/aurora_1_output.png",
"mask_path": "contents/moon_mask.png",
}
if __name__ == "__main__":
dotenv.load_dotenv()
settings = EXAMPLE_SETTING_2
color_map_image = Image.open(settings["color_map_img_path"]).convert("RGB")
color_context = settings["color_context"]
input_prompt = settings["input_prompt"]
init_image = Image.open(settings["img_path"]).convert("RGB")
mask_image = Image.open(settings["mask_path"])
use_pipeline = False
if use_pipeline:
# CUDA
pipe = PaintWithWord_StableDiffusionInpaintPipeline.from_pretrained(
"runwayml/stable-diffusion-inpainting",
revision="fp16",
torch_dtype=torch.float16,
)
pipe = pipe.to("cuda")
generator = torch.Generator(device="cuda")
generator.manual_seed(81)
img = pipe(
prompt=input_prompt,
image=init_image,
color_context=color_context,
color_map_image=color_map_image,
mask_image=mask_image,
num_inference_steps=150,
guidance_scale=7.5,
seed=81,
weight_function=lambda w, sigma, qk: 0.15 * w * math.log(1 + sigma) * qk.max(),
eta=1.0,
generator=generator
).images[0]
else:
img = paint_with_words_inpaint(
color_context=color_context,
color_map_image=color_map_image,
init_image=init_image,
mask_image=mask_image,
input_prompt=input_prompt,
num_inference_steps=150,
guidance_scale=7.5,
device="cuda:0",
seed=81,
weight_function=lambda w, sigma, qk: 0.15 * w * math.log(1 + sigma) * qk.max(),
strength = 1.0,
)
img.save(settings["output_img_path"])