Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -76,14 +76,14 @@ with gr.Blocks() as demo:
|
|
76 |
interactive=True,
|
77 |
)
|
78 |
upload_name = gr.Textbox(
|
79 |
-
label="
|
80 |
value="",
|
81 |
lines=1,
|
82 |
max_lines=1,
|
83 |
interactive=True,
|
84 |
)
|
85 |
submit = gr.Button(value="Apply Template & Push")
|
86 |
-
op = gr.Markdown(
|
87 |
submit.click(reformat, inputs=[dataset_name, train_split, test_split, model_name, upload_name, token], outputs=[op])
|
88 |
|
89 |
|
|
|
76 |
interactive=True,
|
77 |
)
|
78 |
upload_name = gr.Textbox(
|
79 |
+
label="New Dataset Name (e.g. rishiraj/no_robots)",
|
80 |
value="",
|
81 |
lines=1,
|
82 |
max_lines=1,
|
83 |
interactive=True,
|
84 |
)
|
85 |
submit = gr.Button(value="Apply Template & Push")
|
86 |
+
op = gr.Markdown()
|
87 |
submit.click(reformat, inputs=[dataset_name, train_split, test_split, model_name, upload_name, token], outputs=[op])
|
88 |
|
89 |
|