Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ydshieh/Kosmos-2
Atualli
/
Kosmos-2
like
0
Sleeping
App
Files
Files
Community
e8d738f
Kosmos-2
/
app.py
ydshieh
HF staff
Create app.py
e8d738f
about 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()