Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bjornsing
/
SSO-VO2max-calc
like
0
Runtime error
App
Files
Files
Community
77f8492
SSO-VO2max-calc
/
app.py
bjornsing
test
77f8492
almost 2 years ago
raw
Copy download link
history
blame
164 Bytes
import
gradio
as
gr
def
greet
(
name, a
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=[
"text"
,
"a"
], outputs=[
"text"
,
"a"
])
iface.launch()