Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ychafiqui/Resume_NER
Farhan1572
/
resumeparser
like
1
Running
App
Files
Files
Community
9897ebf
resumeparser
/
app.py
ychafiqui
Add application file
9897ebf
7 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()