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...
7fccc04
folding-studio-demo
/
app.py
jfaustin
Create app.py (
#1
)
7fccc04
verified
19 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()