Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
basilkr
/
testingnewspace
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0721ac7
testingnewspace
/
app.py
basilkr
Update app.py
0721ac7
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
162 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(
"basilkr/luke_ST_low"
, inputs=
"text"
, outputs=
"text"
)
iface.launch()