Update app.py
Browse files
app.py
CHANGED
@@ -69,7 +69,7 @@ with gr.Blocks(css=custom_css) as demo:
|
|
69 |
# Numeric input for the number of labels (used in the model configuration).
|
70 |
num_labels_input = gr.Number(label="Number of Labels", value=2)
|
71 |
# Checkbox for users to decide whether to use caching.
|
72 |
-
use_cache_input = gr.Checkbox(label="Use Cache", value=true)
|
73 |
# Textbox to display the generated configuration.
|
74 |
output_area = gr.Textbox(label="Config Output",)
|
75 |
# Button to create the configuration.
|
|
|
69 |
# Numeric input for the number of labels (used in the model configuration).
|
70 |
num_labels_input = gr.Number(label="Number of Labels", value=2)
|
71 |
# Checkbox for users to decide whether to use caching.
|
72 |
+
use_cache_input = gr.Checkbox(label="Use Cache", value='true')
|
73 |
# Textbox to display the generated configuration.
|
74 |
output_area = gr.Textbox(label="Config Output",)
|
75 |
# Button to create the configuration.
|