Adam Jirkovsky
commited on
Commit
·
b30583b
1
Parent(s):
465544f
Adjust submit form
Browse files
app.py
CHANGED
@@ -311,9 +311,10 @@ with demo:
|
|
311 |
multiselect=False,
|
312 |
value="other",
|
313 |
interactive=True,
|
|
|
314 |
)
|
315 |
-
hf_model_id = gr.Textbox(label="
|
316 |
-
contact_email = gr.Textbox(label="E-Mail")
|
317 |
file_output = gr.File()
|
318 |
upload_button = gr.UploadButton("Upload json", file_types=['.json'])
|
319 |
upload_button.upload(validate_upload, upload_button, file_output)
|
|
|
311 |
multiselect=False,
|
312 |
value="other",
|
313 |
interactive=True,
|
314 |
+
info="What weight precision were you using during the evaluation?"
|
315 |
)
|
316 |
+
hf_model_id = gr.Textbox(label="Model link (Optional)", info="URL to the model's Hugging Face repository, or it's official website")
|
317 |
+
contact_email = gr.Textbox(label="Your E-Mail")
|
318 |
file_output = gr.File()
|
319 |
upload_button = gr.UploadButton("Upload json", file_types=['.json'])
|
320 |
upload_button.upload(validate_upload, upload_button, file_output)
|