Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
mxnvl
/
pon
like
0
Sleeping
App
Files
Files
Community
main
pon
/
app.py
Manul, da
Update app.py
fba1fde
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
175 Bytes
import
gradio
as
gr
import
net
import
start
def
classify
(
text
):
return
str
(start.clf(text))
iface = gr.Interface(fn=classify, inputs=
"text"
, outputs=
"text"
)
iface.launch()