Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
somosnlp-hackathon-2023
/
PodcastNER-GPTJ
like
20
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
178c5c2
PodcastNER-GPTJ
/
app.py
DavidFM43
Add application file
178c5c2
about 2 years 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()