link to data
Browse files- app.py +4 -1
- data/expansion_data_test_blinded.csv +0 -0
app.py
CHANGED
|
@@ -10,6 +10,8 @@ from utils import (
|
|
| 10 |
fetch_dataset_df,
|
| 11 |
map_metric_to_stats,
|
| 12 |
)
|
|
|
|
|
|
|
| 13 |
|
| 14 |
from about import ENDPOINTS, LB_COLS, LB_AVG, LB_DTYPES
|
| 15 |
|
|
@@ -348,9 +350,10 @@ def gradio_interface():
|
|
| 348 |
Download a CSV file with the compounds in the test set here:
|
| 349 |
"""
|
| 350 |
)
|
|
|
|
| 351 |
download_btn = gr.DownloadButton(
|
| 352 |
label="📥 Download Test Set Compounds",
|
| 353 |
-
value="
|
| 354 |
variant="secondary",
|
| 355 |
)
|
| 356 |
with gr.Column():
|
|
|
|
| 10 |
fetch_dataset_df,
|
| 11 |
map_metric_to_stats,
|
| 12 |
)
|
| 13 |
+
from datasets import load_dataset
|
| 14 |
+
import tempfile
|
| 15 |
|
| 16 |
from about import ENDPOINTS, LB_COLS, LB_AVG, LB_DTYPES
|
| 17 |
|
|
|
|
| 350 |
Download a CSV file with the compounds in the test set here:
|
| 351 |
"""
|
| 352 |
)
|
| 353 |
+
|
| 354 |
download_btn = gr.DownloadButton(
|
| 355 |
label="📥 Download Test Set Compounds",
|
| 356 |
+
value="./data/expansion_data_test_blinded.csv",
|
| 357 |
variant="secondary",
|
| 358 |
)
|
| 359 |
with gr.Column():
|
data/expansion_data_test_blinded.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|