File size: 292 Bytes
5c3aeac 3599ece 05b6b79 5c3aeac 138c985 05b6b79 3599ece d33abcf 5c3aeac | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import gradio as gr
def stay_tuned(a, b):
return "Stay tuned! Repo.: https://github.com/HKQiu/Unified_ML4Polymers"
gr.Interface(
stay_tuned,
inputs=["text", "text"],
outputs="text",
title="PolyNC Playground is coming soon, please stay tuned.",
live=True
).launch() |