Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
alexrods
/
assistant-commands-classification-es
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
661ed42
assistant-commands-classification-es
/
app.py
alexrods
Create app.py
4da03a6
almost 2 years ago
raw
Copy download link
history
blame
129 Bytes
import
gradio
as
gr
from
inference
import
predict
demo = gr.Interface(fn=predict, inputs=
'text'
, outputs=
'text'
)
demo.launch()