Spaces:
Running
Running
Update gradio_app.py
Browse files- gradio_app.py +6 -2
gradio_app.py
CHANGED
@@ -106,8 +106,12 @@ def function(model_name: str, mol_num: int, seed: int) -> tuple[PIL.Image, pd.Da
|
|
106 |
scores = trainer.inference() # create scores_df out of this
|
107 |
|
108 |
score_df = pd.DataFrame(scores, index=[0])
|
109 |
-
|
110 |
-
|
|
|
|
|
|
|
|
|
111 |
import os
|
112 |
new_path = f'{model_name}_denovo_mols.smi'
|
113 |
os.rename(output_file_path, new_path)
|
|
|
106 |
scores = trainer.inference() # create scores_df out of this
|
107 |
|
108 |
score_df = pd.DataFrame(scores, index=[0])
|
109 |
+
old_model_names = {
|
110 |
+
"DrugGEN": "CrossLoss",
|
111 |
+
"DrugGEN-NoTarget": "NoTarget",
|
112 |
+
}
|
113 |
+
output_file_path = f'experiments/inference/{old_model_names[model_name]}/inference_drugs.txt'
|
114 |
+
|
115 |
import os
|
116 |
new_path = f'{model_name}_denovo_mols.smi'
|
117 |
os.rename(output_file_path, new_path)
|