Update prompt
Browse files
app.py
CHANGED
@@ -30,9 +30,6 @@ def process(input_image, prompt, input_control, num_samples, image_resolution, d
|
|
30 |
|
31 |
def process_scribble(input_image, prompt, num_samples, image_resolution, ddim_steps, scale, seed, eta):
|
32 |
|
33 |
-
a_prompt = 'best quality, extremely detailed, architecture render, photorealistic, hyper realistic, surreal, dali, 3d rendering, render, 8k, 16k, extremely detailed, unreal engine, octane, maya'
|
34 |
-
n_prompt = 'longbody, lowres, bad anatomy, bad hands, missing fingers, pubic hair,extra digit, fewer digits, cropped, worst quality, low quality'
|
35 |
-
|
36 |
with torch.no_grad():
|
37 |
img = resize_image(HWC3(input_image), image_resolution)
|
38 |
H, W, C = img.shape
|
@@ -81,6 +78,9 @@ control_task_list = [
|
|
81 |
"Scribble"
|
82 |
]
|
83 |
|
|
|
|
|
|
|
84 |
with block:
|
85 |
gr.Markdown("## Adding Conditional Control to Text-to-Image Diffusion Models")
|
86 |
gr.HTML('''
|
@@ -111,4 +111,5 @@ with block:
|
|
111 |
ips = [input_image, prompt, input_control, a_prompt, n_prompt, num_samples, image_resolution, ddim_steps, scale, seed, eta, low_threshold, high_threshold]
|
112 |
run_button.click(fn=process, inputs=ips, outputs=[result_gallery])
|
113 |
|
|
|
114 |
block.launch(debug = True)
|
|
|
30 |
|
31 |
def process_scribble(input_image, prompt, num_samples, image_resolution, ddim_steps, scale, seed, eta):
|
32 |
|
|
|
|
|
|
|
33 |
with torch.no_grad():
|
34 |
img = resize_image(HWC3(input_image), image_resolution)
|
35 |
H, W, C = img.shape
|
|
|
78 |
"Scribble"
|
79 |
]
|
80 |
|
81 |
+
a_prompt = 'best quality, extremely detailed, architecture render, photorealistic, hyper realistic, surreal, dali, 3d rendering, render, 8k, 16k, extremely detailed, unreal engine, octane, maya'
|
82 |
+
n_prompt = 'longbody, lowres, bad anatomy, bad hands, missing fingers, pubic hair,extra digit, fewer digits, cropped, worst quality, low quality'
|
83 |
+
|
84 |
with block:
|
85 |
gr.Markdown("## Adding Conditional Control to Text-to-Image Diffusion Models")
|
86 |
gr.HTML('''
|
|
|
111 |
ips = [input_image, prompt, input_control, a_prompt, n_prompt, num_samples, image_resolution, ddim_steps, scale, seed, eta, low_threshold, high_threshold]
|
112 |
run_button.click(fn=process, inputs=ips, outputs=[result_gallery])
|
113 |
|
114 |
+
|
115 |
block.launch(debug = True)
|