Opus Mt Tc Big En Tr
這是一個基於Transformer架構的神經機器翻譯模型,專門用於英語到土耳其語的翻譯任務。
下載量 108.32k
發布時間 : 4/13/2022
模型概述
該模型是OPUS-MT項目的一部分,旨在提供高質量的英語到土耳其語翻譯服務。它使用了大量的公開平行語料庫進行訓練,並在多個基準測試中表現出色。
模型特點
高質量翻譯
在多個基準測試中表現出色,如flores101-devtest和tatoeba-test-v2021-08-07。
多語言支持
支持英語到土耳其語的翻譯任務。
開源許可證
採用cc-by-4.0許可證,允許自由使用和修改。
模型能力
英語到土耳其語的文本翻譯
使用案例
文本翻譯
日常對話翻譯
用於翻譯日常對話或簡單句子。
在tatoeba-test-v2021-08-07測試集上BLEU得分為42.3。
新聞翻譯
用於翻譯新聞文章或報道。
在newstest2017測試集上BLEU得分為25.4。
🚀 opus-mt-tc-big-en-tr
這是一個用於從英語(en)到土耳其語(tr)翻譯的神經機器翻譯模型。該模型屬於 [OPUS - MT 項目](https://github.com/Helsinki - NLP/Opus - MT) 的一部分,此項目致力於讓神經機器翻譯模型在全球多種語言中廣泛可用且易於獲取。所有模型最初都使用 [Marian NMT](https://marian - nmt.github.io/) 這一出色的框架進行訓練,它是一個用純 C++ 編寫的高效神經機器翻譯實現。這些模型通過 huggingface 的 transformers 庫轉換為 PyTorch 格式。訓練數據來自 OPUS,訓練流程採用 [OPUS - MT - train](https://github.com/Helsinki - NLP/Opus - MT - train) 的方法。
- 相關出版物:[OPUS - MT – Building open translation services for the World](https://aclanthology.org/2020.eamt - 1.61/) 和 [The Tatoeba Translation Challenge – Realistic Data Sets for Low Resource and Multilingual MT](https://aclanthology.org/2020.wmt - 1.139/)(如果使用此模型,請引用這些文獻)
@inproceedings{tiedemann - thottingal - 2020 - opus,
title = "{OPUS}-{MT} {--} Building open translation services for the World",
author = {Tiedemann, J{\"o}rg and Thottingal, Santhosh},
booktitle = "Proceedings of the 22nd Annual Conference of the European Association for Machine Translation",
month = nov,
year = "2020",
address = "Lisboa, Portugal",
publisher = "European Association for Machine Translation",
url = "https://aclanthology.org/2020.eamt - 1.61",
pages = "479--480",
}
@inproceedings{tiedemann - 2020 - tatoeba,
title = "The Tatoeba Translation Challenge {--} Realistic Data Sets for Low Resource and Multilingual {MT}",
author = {Tiedemann, J{\"o}rg},
booktitle = "Proceedings of the Fifth Conference on Machine Translation",
month = nov,
year = "2020",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2020.wmt - 1.139",
pages = "1174--1182",
}
📚 詳細文檔
模型信息
屬性 | 詳情 |
---|---|
發佈時間 | 2022 - 02 - 25 |
源語言 | 英語(eng) |
目標語言 | 土耳其語(tur) |
模型類型 | transformer - big |
訓練數據 | opusTCv20210807 + bt ([來源](https://github.com/Helsinki - NLP/Tatoeba - Challenge)) |
分詞方式 | SentencePiece (spm32k, spm32k) |
原始模型 | [opusTCv20210807 + bt_transformer - big_2022 - 02 - 25.zip](https://object.pouta.csc.fi/Tatoeba - MT - models/eng - tur/opusTCv20210807 + bt_transformer - big_2022 - 02 - 25.zip) |
更多已發佈模型信息 | [OPUS - MT eng - tur README](https://github.com/Helsinki - NLP/Tatoeba - Challenge/tree/master/models/eng - tur/README.md) |
使用說明
💻 使用示例
基礎用法
from transformers import MarianMTModel, MarianTokenizer
src_text = [
"I know Tom didn't want to eat that.",
"On Sundays, we would get up early and go fishing."
]
model_name = "pytorch - models/opus - mt - tc - big - en - tr"
tokenizer = MarianTokenizer.from_pretrained(model_name)
model = MarianMTModel.from_pretrained(model_name)
translated = model.generate(**tokenizer(src_text, return_tensors="pt", padding=True))
for t in translated:
print( tokenizer.decode(t, skip_special_tokens=True) )
# 預期輸出:
# Tom'un bunu yemek istemediğini biliyorum.
# Pazar günleri erkenden kalkıp balık tutmaya giderdik.
高級用法
from transformers import pipeline
pipe = pipeline("translation", model="Helsinki - NLP/opus - mt - tc - big - en - tr")
print(pipe("I know Tom didn't want to eat that."))
# 預期輸出: Tom'un bunu yemek istemediğini biliyorum.
基準測試
語言對 | 測試集 | chr - F | BLEU | 句子數量 | 單詞數量 |
---|---|---|---|---|---|
eng - tur | tatoeba - test - v2021 - 08 - 07 | 0.68726 | 42.3 | 13907 | 84364 |
eng - tur | flores101 - devtest | 0.62829 | 31.4 | 1012 | 20253 |
eng - tur | newsdev2016 | 0.58947 | 21.9 | 1001 | 15958 |
eng - tur | newstest2016 | 0.57624 | 23.4 | 3000 | 50782 |
eng - tur | newstest2017 | 0.58858 | 25.4 | 3007 | 51977 |
eng - tur | newstest2018 | 0.57848 | 22.6 | 3000 | 53731 |
- 測試集翻譯結果:[opusTCv20210807 + bt_transformer - big_2022 - 02 - 25.test.txt](https://object.pouta.csc.fi/Tatoeba - MT - models/eng - tur/opusTCv20210807 + bt_transformer - big_2022 - 02 - 25.test.txt)
- 測試集得分:[opusTCv20210807 + bt_transformer - big_2022 - 02 - 25.eval.txt](https://object.pouta.csc.fi/Tatoeba - MT - models/eng - tur/opusTCv20210807 + bt_transformer - big_2022 - 02 - 25.eval.txt)
- 基準測試結果:benchmark_results.txt
- 基準測試輸出:benchmark_translations.zip
致謝
這項工作得到了以下項目的支持:
- [歐洲語言網格](https://www.european - language - grid.eu/) 的 [試點項目 2866](https://live.european - language - grid.eu/catalogue/#/resource/projects/2866)。
- [FoTran 項目](https://www.helsinki.fi/en/researchgroups/natural - language - understanding - with - cross - lingual - grounding),由歐洲研究理事會(ERC)在歐盟的“地平線 2020”研究與創新計劃(資助協議編號 771113)下資助。
- MeMAD 項目,由歐盟的“地平線 2020”研究與創新計劃資助(資助協議編號 780069)。
我們也感謝 CSC -- 芬蘭科學信息技術中心 提供的慷慨計算資源和 IT 基礎設施。
模型轉換信息
屬性 | 詳情 |
---|---|
transformers 版本 | 4.16.2 |
OPUS - MT git 哈希值 | 3405783 |
轉換時間 | Wed Apr 13 18:11:39 EEST 2022 |
轉換機器 | LM0 - 400 - 22516.local |
📄 許可證
本模型採用 CC - BY - 4.0 許可證。
M2m100 418M
MIT
M2M100是一個多語言編碼器-解碼器模型,支持100種語言的9900個翻譯方向
機器翻譯 支持多種語言
M
facebook
1.6M
299
Opus Mt Fr En
Apache-2.0
基於Transformer的法語到英語神經機器翻譯模型,由Helsinki-NLP團隊開發,採用OPUS多語數據集訓練。
機器翻譯 支持多種語言
O
Helsinki-NLP
1.2M
44
Opus Mt Ar En
Apache-2.0
基於OPUS數據訓練的阿拉伯語到英語的機器翻譯模型,採用transformer-align架構
機器翻譯 支持多種語言
O
Helsinki-NLP
579.41k
42
M2m100 1.2B
MIT
M2M100是一個支持100種語言的多語言機器翻譯模型,可直接在9900個翻譯方向之間進行翻譯。
機器翻譯 支持多種語言
M
facebook
501.82k
167
Indictrans2 Indic En 1B
MIT
支持25種印度語言與英語互譯的1.1B參數規模機器翻譯模型,由AI4Bharat項目開發
機器翻譯
Transformers 支持多種語言

I
ai4bharat
473.63k
14
Opus Mt En Zh
Apache-2.0
基於Transformer架構的英漢多方言翻譯模型,支持英語到13種漢語變體的翻譯任務
機器翻譯 支持多種語言
O
Helsinki-NLP
442.08k
367
Opus Mt Zh En
由赫爾辛基大學開發的基於OPUS語料庫的中文到英語機器翻譯模型
機器翻譯 支持多種語言
O
Helsinki-NLP
441.24k
505
Mbart Large 50 Many To Many Mmt
基於mBART-large-50微調的多語言機器翻譯模型,支持50種語言間的互譯
機器翻譯 支持多種語言
M
facebook
404.66k
357
Opus Mt De En
Apache-2.0
opus-mt-de-en 是一個基於 transformer-align 架構的德語到英語的機器翻譯模型,由 Helsinki-NLP 團隊開發。
機器翻譯 支持多種語言
O
Helsinki-NLP
404.33k
44
Opus Mt Es En
Apache-2.0
這是一個基於Transformer架構的西班牙語到英語的機器翻譯模型,由Helsinki-NLP團隊開發。
機器翻譯
Transformers 支持多種語言

O
Helsinki-NLP
385.40k
71
精選推薦AI模型
Llama 3 Typhoon V1.5x 8b Instruct
專為泰語設計的80億參數指令模型,性能媲美GPT-3.5-turbo,優化了應用場景、檢索增強生成、受限生成和推理任務
大型語言模型
Transformers 支持多種語言

L
scb10x
3,269
16
Cadet Tiny
Openrail
Cadet-Tiny是一個基於SODA數據集訓練的超小型對話模型,專為邊緣設備推理設計,體積僅為Cosmo-3B模型的2%左右。
對話系統
Transformers 英語

C
ToddGoldfarb
2,691
6
Roberta Base Chinese Extractive Qa
基於RoBERTa架構的中文抽取式問答模型,適用於從給定文本中提取答案的任務。
問答系統 中文
R
uer
2,694
98