Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Naresh1993
/
translation
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Naresh1993
commited on
May 12, 2024
Commit
e97fc93
·
verified
·
1 Parent(s):
5f30e57
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from transformers import pipeline
2
+
import gradio as gr
3
+
4
+
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-en-es")
5
+
6
+
demo = gr.Interface.from_pipeline(pipe)
7
+
demo.launch()