sadgaj commited on
Commit
b8588c3
·
1 Parent(s): 1249729

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -86,10 +86,13 @@ def greet(name):
86
 
87
 
88
 
 
 
 
89
 
 
90
 
91
 
92
 
93
-
94
- iface = gr.Interface(fn=greet, inputs="text", outputs="text", title="Molecular Language Model as Multi-task Generator")
95
  iface.launch()
 
86
 
87
 
88
 
89
+ examples = [
90
+
91
+ ['[C][=C][C][=C][C][=C][Ring1][=Branch1]'],['[C]']
92
 
93
+ ]
94
 
95
 
96
 
97
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text", title="Molecular Language Model as Multi-task Generator",examples=examples)
 
98
  iface.launch()