Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
trtd56
/
ner_app
like
0
Sleeping
App
Files
Files
Community
main
ner_app
/
app.py
trtd56
Add application file
a17b5a4
4 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()