Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
datasetsANDmodels
/
en2el
like
0
PyTorch
English
Greek
marian
Model card
Files
Files and versions
xet
Community
a71f50a
en2el
/
usage.py
datasetsANDmodels
Create usage.py
ea74c47
verified
9 months ago
raw
Copy download link
history
blame
175 Bytes
from
transformers
import
pipeline
pipe= pipeline(
"translation"
, model=
"en2el"
)
text=
"I am calling from the tax office"
result =pipe(text)
print
( result[
0
][
"translation_text"
])