Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yujieq
/
MolScribe
like
17
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
866233d
MolScribe
/
app.py
thomas0809
Add application file
866233d
about 2 years ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()