Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,13 @@ class NoTargetConfig(DrugGENConfig):
|
|
77 |
inference_model="experiments/models/NoTarget"
|
78 |
|
79 |
with st.sidebar:
|
80 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
# with st.spinner('Setting up the trainer class...'):
|
83 |
# trainer = Trainer(ProtConfig())
|
@@ -85,6 +91,7 @@ with st.sidebar:
|
|
85 |
# with st.spinner('Generating Molecules...'):
|
86 |
# trainer.inference()
|
87 |
|
|
|
88 |
|
89 |
|
90 |
|
|
|
77 |
inference_model="experiments/models/NoTarget"
|
78 |
|
79 |
with st.sidebar:
|
80 |
+
st.title("DrugGEN")
|
81 |
+
|
82 |
+
model_name = st.radio(
|
83 |
+
"Select a model to make inference",
|
84 |
+
('Prot', 'CrossLoss', 'NoTarget'))
|
85 |
+
|
86 |
+
st.write(model_name)
|
87 |
|
88 |
# with st.spinner('Setting up the trainer class...'):
|
89 |
# trainer = Trainer(ProtConfig())
|
|
|
91 |
# with st.spinner('Generating Molecules...'):
|
92 |
# trainer.inference()
|
93 |
|
94 |
+
st.title("text")
|
95 |
|
96 |
|
97 |
|