Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anton-bushuiev
/
PPIformer
like
5
Running
on
Zero
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
cf2ccb1
PPIformer
/
app.py
Anton Bushuiev
Add application file
554b777
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()