Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jaeyoungk
/
sgecon
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
612ed3d
sgecon
/
app.py
jaeyoungk
Update app.py
612ed3d
over 1 year ago
raw
Copy download link
history
blame
Safe
176 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()