style theme
Browse files
app.py
CHANGED
|
@@ -862,17 +862,18 @@ with demo:
|
|
| 862 |
)
|
| 863 |
|
| 864 |
with gr.Row():
|
| 865 |
-
with gr.
|
| 866 |
-
|
| 867 |
value=CITATION_BUTTON_TEXT,
|
| 868 |
lines=10,
|
| 869 |
elem_id="citation-button",
|
| 870 |
show_copy_button=True,
|
| 871 |
)
|
| 872 |
|
| 873 |
-
with gr.Accordion("Dataset Information", open=False):
|
| 874 |
-
|
| 875 |
-
|
|
|
|
| 876 |
|
| 877 |
Last updated: {pd.Timestamp.now().strftime("%Y-%m-%d %H:%M:%S UTC")}
|
| 878 |
""")
|
|
|
|
| 862 |
)
|
| 863 |
|
| 864 |
with gr.Row():
|
| 865 |
+
with gr.Column():
|
| 866 |
+
gr.Textbox(
|
| 867 |
value=CITATION_BUTTON_TEXT,
|
| 868 |
lines=10,
|
| 869 |
elem_id="citation-button",
|
| 870 |
show_copy_button=True,
|
| 871 |
)
|
| 872 |
|
| 873 |
+
# with gr.Accordion("Dataset Information", open=False):
|
| 874 |
+
with gr.Column():
|
| 875 |
+
gr.Markdown(f"""
|
| 876 |
+
Results: [{RESULTS_DATASET_ID}](https://huggingface.co/datasets/{RESULTS_DATASET_ID})
|
| 877 |
|
| 878 |
Last updated: {pd.Timestamp.now().strftime("%Y-%m-%d %H:%M:%S UTC")}
|
| 879 |
""")
|