Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gradio
/
en2es
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
en2es
/
app.py
abidlabs
HF Staff
Create app.py
21f844d
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
177 Bytes
from
transformers
import
pipeline
import
gradio
as
gr
pipe = pipeline(
"translation"
, model=
"Helsinki-NLP/opus-mt-en-es"
)
demo = gr.Interface.from_pipeline(pipe)
demo.launch()