Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
skylord/talk2loop-model1
skylord
/
pharma_classifier
like
0
Sleeping
App
Files
Files
Community
c7a74ff
pharma_classifier
/
app.py
skylord
Add application file
c7a74ff
9 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()