File size: 299 Bytes
7ab1cfa
019978b
7ab1cfa
f549d9c
 
019978b
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
from trainer import Trainer

st.title("Hello World")

class DrugGENConfig:
    submodel='CrossLoss'
    act='relu'
    

with st.spinner('Setting up the trainer class...'):
    trainer = Trainer(config)

with st.spinner('Generating Molecules...'):
    trainer.inference()