Spaces:
Running
Running
File size: 342 Bytes
7ab1cfa 019978b 7ab1cfa f549d9c 019978b 7f96593 019978b 7f96593 019978b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import streamlit as st
from trainer import Trainer
st.title("Hello World")
class DrugGENConfig:
submodel='CrossLoss'
act='relu'
z_dim=16
max_atom=45
with st.spinner('Setting up the trainer class...'):
trainer = Trainer(DrugGENConfig())
with st.spinner('Generating Molecules...'):
trainer.inference()
|