You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Korean ➡️ English Result evaluated on 553500 sentence pairs which are disjoint from the train set.
How to Use
fromtransformersimportAutoTokenizer, AutoModelForSeq2SeqLM# Korean -> English Machine Translationtokenizer=AutoTokenizer.from_pretrained("QuoQA-NLP/KE-T5-Ko2En-Base")
model=AutoModelForSeq2SeqLM.from_pretrained("QuoQA-NLP/KE-T5-Ko2En-Base")
# English -> Korean Machine Translationtokenizer=AutoTokenizer.from_pretrained("QuoQA-NLP/KE-T5-En2Ko-Base")
model=AutoModelForSeq2SeqLM.from_pretrained("QuoQA-NLP/KE-T5-En2Ko-Base")
For batch translation, please refer to inference.py.
P100 16GB supports inferencing of 250 pairs per batch on device.
A100 40GB supports inferencing of 600 pairs per batch on device.