Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
InstaDeepAI
/
folding-studio-demo
like
0
Running
App
Files
Files
Community
22
Fetching metadata from the HF Docker repository...
refs/pr/1
folding-studio-demo
/
app.py
jfaustin
Create app.py
d3623a2
verified
18 days ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()