parvalijaved commited on
Commit
0164661
β€’
1 Parent(s): 0064f02

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from interfaces import smiles2iupac, iupac2smiles, iupac2style, landing
3
+
4
+
5
+ demo = gr.TabbedInterface([smiles2iupac, iupac2smiles, iupac2style],
6
+ ["SMILES-to-IUPAC", "IUPAC-to-SMILES", "IUPAC style prediction"],
7
+ title="ChemTransformerX πŸ§ͺπŸ”¬πŸ§¬πŸ‘¨πŸ»β€πŸ”¬",
8
+ theme="HaleyCH/HaleyCH_Theme")
9
+
10
+ demo.launch(share=True)