Update app.py
Browse files
app.py
CHANGED
|
@@ -3,12 +3,12 @@ import gradio as gr
|
|
| 3 |
|
| 4 |
|
| 5 |
def stay_tuned(a, b):
|
| 6 |
-
|
| 7 |
|
| 8 |
gr.Interface(
|
| 9 |
stay_tuned,
|
| 10 |
-
inputs=["
|
| 11 |
-
outputs="
|
| 12 |
title="PolyNC Playground is coming soon, please stay tuned.",
|
| 13 |
live=True
|
| 14 |
).launch()
|
|
|
|
| 3 |
|
| 4 |
|
| 5 |
def stay_tuned(a, b):
|
| 6 |
+
return "Stay tuned! Repo.: https://github.com/HKQiu/Unified_ML4Polymers"
|
| 7 |
|
| 8 |
gr.Interface(
|
| 9 |
stay_tuned,
|
| 10 |
+
inputs=["text", "text"],
|
| 11 |
+
outputs="text",
|
| 12 |
title="PolyNC Playground is coming soon, please stay tuned.",
|
| 13 |
live=True
|
| 14 |
).launch()
|