agentlans/en-zhtw-google-translate
Viewer • Updated • 1,000k • 138
How to use agentlans/zhtw-en with Transformers:
# Use a pipeline as a high-level helper
# Warning: Pipeline type "translation" is no longer supported in transformers v5.
# You must load the model directly (see below) or downgrade to v4.x with:
# 'pip install "transformers<5.0.0'
from transformers import pipeline
pipe = pipeline("translation", model="agentlans/zhtw-en") # Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("agentlans/zhtw-en")
model = AutoModelForSeq2SeqLM.from_pretrained("agentlans/zhtw-en")This model translates Traditional Chinese sentences into English.
It is a fine-tuned version of the Helsinki-NLP/opus-mt-zh-en model, trained on the agentlans/en-zhtw-google-translate dataset.
該模型將繁體中文翻譯成英文。
它是 Helsinki-NLP/opus-mt-zh-en 模型的微調版本,使用 agentlans/en-zhtw-google-translate 資料集進行訓練。
from transformers import pipeline
model_checkpoint = "agentlans/zhtw-en"
translator = pipeline("translation", model=model_checkpoint)
# 摘自中文維基百科的今日文章
# From Chinese Wikipedia's article of the day
translator("《阿奇大戰鐵血戰士》是2015年4至7月黑馬漫畫和阿奇漫畫在美國發行的四期限量連環漫畫圖書,由亞歷克斯·德坎皮創作,費爾南多·魯伊斯繪圖,屬跨公司跨界作品。")[0]['translation_text']
# 輸出
# Output
# The Iron Blood Warriors of the Achilles War is a four-term, serial comic book on black horse comics and Achilles comics released in the United States from April to July 2015. It was created by Alex De Campi and illustrated by Fernando Ruiz. It is a cross-corporate cross-border work.
# 與我自己的黃金標準翻譯比較:
# Compare with my own gold standard translation:
# "Archie vs. Predator" is a limited four-issue comic book series published by Black Horse and Archie Comics in the United States from April to July 2015. It was created by Alex de Campi and drawn by Fernando Ruiz. It's a crossover work.
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Input Tokens Seen |
|---|---|---|---|---|
| 1.3772 | 1.0 | 99952 | 1.2156 | 54090088 |
| 1.2001 | 2.0 | 199904 | 1.1147 | 108157960 |
| 1.0933 | 3.0 | 299856 | 1.0592 | 162248288 |
| 0.9897 | 4.0 | 399808 | 1.0107 | 216341560 |
| 0.9016 | 5.0 | 499760 | 0.9878 | 270444104 |
Base model
Helsinki-NLP/opus-mt-zh-en