Spaces:
Runtime error
Runtime error
Commit
·
d62f226
1
Parent(s):
e15b1bb
Update app.py
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ with gr.Blocks() as myface:
|
|
115 |
with gr.Row():
|
116 |
|
117 |
prompt=gr.Textbox(label="Enter Prompt")
|
118 |
-
noise_level=gr.Slider(minimum=0.0, maximum=3, 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.")
|
119 |
run=gr.Button("Generate")
|
120 |
|
121 |
with gr.Row():
|
|
|
115 |
with gr.Row():
|
116 |
|
117 |
prompt=gr.Textbox(label="Enter Prompt")
|
118 |
+
noise_level=gr.Slider(minimum=0.0, maximum=3, 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.", display=lambda x: f"{x*100}%")
|
119 |
run=gr.Button("Generate")
|
120 |
|
121 |
with gr.Row():
|