Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ def create_config(model_name, num_labels, use_cache):
|
|
29 |
return str(config) # Return the configuration as a string.
|
30 |
|
31 |
# Start building the Gradio interface
|
32 |
-
with gr.Group(elem_id="UI-conf")
|
33 |
with gr.Blocks() as demo:
|
34 |
gr.Markdown("## Config Class - Transformers") # Display a title for the web interface.
|
35 |
with gr.Row(): # Create a row in the interface to organize elements horizontally.
|
|
|
29 |
return str(config) # Return the configuration as a string.
|
30 |
|
31 |
# Start building the Gradio interface
|
32 |
+
with gr.Group(elem_id="UI-conf"):
|
33 |
with gr.Blocks() as demo:
|
34 |
gr.Markdown("## Config Class - Transformers") # Display a title for the web interface.
|
35 |
with gr.Row(): # Create a row in the interface to organize elements horizontally.
|