Update app.py
Browse files
app.py
CHANGED
@@ -64,8 +64,8 @@ def infer(prompt,negative_prompt):
|
|
64 |
negative_prompt = negative_prompt,
|
65 |
width = WIDTH,
|
66 |
height = HIGH,
|
67 |
-
guidance_scale=
|
68 |
-
num_inference_steps=
|
69 |
num_images_per_prompt=1,
|
70 |
).images[0]
|
71 |
|
@@ -93,7 +93,7 @@ with gr.Blocks(css=css) as demo:
|
|
93 |
|
94 |
with gr.Column(elem_id="col-container"):
|
95 |
gr.Markdown(f"""
|
96 |
-
#
|
97 |
Currently running on {power_device}.
|
98 |
""")
|
99 |
|
|
|
64 |
negative_prompt = negative_prompt,
|
65 |
width = WIDTH,
|
66 |
height = HIGH,
|
67 |
+
guidance_scale=7.5,
|
68 |
+
num_inference_steps=30,
|
69 |
num_images_per_prompt=1,
|
70 |
).images[0]
|
71 |
|
|
|
93 |
|
94 |
with gr.Column(elem_id="col-container"):
|
95 |
gr.Markdown(f"""
|
96 |
+
# AbsoluteReality-openvino-8bit {WIDTH}x{HIGH}
|
97 |
Currently running on {power_device}.
|
98 |
""")
|
99 |
|