Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -279,20 +279,15 @@ For more details, see our [paper on arXiv](https://arxiv.org/abs/2302.07868).
|
|
| 279 |
)
|
| 280 |
|
| 281 |
with gr.Column(scale=2):
|
| 282 |
-
|
| 283 |
-
|
| 284 |
-
|
| 285 |
-
|
| 286 |
-
headers=["Validity", "Uniqueness", "Novelty (Train)", "Novelty (Test)", "Drug Novelty", "Runtime (s)"],
|
| 287 |
-
elem_id="basic-metrics"
|
| 288 |
-
)
|
| 289 |
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
elem_id="advanced-metrics"
|
| 295 |
-
)
|
| 296 |
|
| 297 |
image_output = gr.Image(
|
| 298 |
label="Sample of Generated Molecules",
|
|
|
|
| 279 |
)
|
| 280 |
|
| 281 |
with gr.Column(scale=2):
|
| 282 |
+
basic_metrics_df = gr.Dataframe(
|
| 283 |
+
headers=["Validity", "Uniqueness", "Novelty (Train)", "Novelty (Test)", "Drug Novelty", "Runtime (s)"],
|
| 284 |
+
elem_id="basic-metrics"
|
| 285 |
+
)
|
|
|
|
|
|
|
|
|
|
| 286 |
|
| 287 |
+
advanced_metrics_df = gr.Dataframe(
|
| 288 |
+
headers=["QED", "SA Score", "Internal Diversity", "SNN ChEMBL", "SNN Drug", "Max Length"],
|
| 289 |
+
elem_id="advanced-metrics"
|
| 290 |
+
)
|
|
|
|
|
|
|
| 291 |
|
| 292 |
image_output = gr.Image(
|
| 293 |
label="Sample of Generated Molecules",
|