Spaces:
Runtime error
Runtime error
phenomenon1981
commited on
Commit
·
19b4307
1
Parent(s):
fe8709c
Update app.py
Browse files
app.py
CHANGED
@@ -137,11 +137,11 @@ with gr.Blocks() as myface:
|
|
137 |
with gr.Row():
|
138 |
|
139 |
prompt=gr.Textbox(label="Enter Prompt")
|
140 |
-
noise_level=gr.Slider(minimum=0.1, maximum=
|
141 |
run=gr.Button("Generate")
|
142 |
|
143 |
with gr.Row():
|
144 |
-
like_message = gr.Button("Press the Like Button if you enjoy my space",)
|
145 |
with gr.Row():
|
146 |
output1=gr.Image(label="Dreamlike Photoreal 2.0",)
|
147 |
output2=gr.Image(label="Dreamlike Photoreal 2.0",)
|
@@ -168,5 +168,5 @@ with gr.Blocks() as myface:
|
|
168 |
|
169 |
|
170 |
|
171 |
-
myface.queue(concurrency_count=
|
172 |
myface.launch(enable_queue=True, inline=True)
|
|
|
137 |
with gr.Row():
|
138 |
|
139 |
prompt=gr.Textbox(label="Enter Prompt")
|
140 |
+
noise_level=gr.Slider(minimum=0.1, maximum=2, step=0.1, label="Noise Level: Controls how much randomness is added to the input before it is sent to the model. Higher noise level produces more diverse outputs, while lower noise level produces similar outputs.")
|
141 |
run=gr.Button("Generate")
|
142 |
|
143 |
with gr.Row():
|
144 |
+
like_message = gr.Button("Press the Like Button if you enjoy my space!",)
|
145 |
with gr.Row():
|
146 |
output1=gr.Image(label="Dreamlike Photoreal 2.0",)
|
147 |
output2=gr.Image(label="Dreamlike Photoreal 2.0",)
|
|
|
168 |
|
169 |
|
170 |
|
171 |
+
myface.queue(concurrency_count=150)
|
172 |
myface.launch(enable_queue=True, inline=True)
|