Update app.py
Browse files
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()
|