download example csv
Browse files
app.py
CHANGED
@@ -96,6 +96,12 @@ with gr.Blocks() as demo:
|
|
96 |
value="Sign in with Hugging Face to see account name"
|
97 |
) # Note(Lood): Is this mandatory?
|
98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
with gr.Row():
|
100 |
with gr.Column():
|
101 |
username_input = gr.Textbox(
|
|
|
96 |
value="Sign in with Hugging Face to see account name"
|
97 |
) # Note(Lood): Is this mandatory?
|
98 |
|
99 |
+
gr.DownloadButton(
|
100 |
+
label="📥 Download example submission CSV",
|
101 |
+
value="data/example-predictions.csv",
|
102 |
+
variant="secondary",
|
103 |
+
)
|
104 |
+
|
105 |
with gr.Row():
|
106 |
with gr.Column():
|
107 |
username_input = gr.Textbox(
|