Translation
English
Korean
Eval Results (legacy)
File size: 4,707 Bytes
f5f348f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5d6841f
f5f348f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33b35a7
f5f348f
 
 
 
 
 
33b35a7
f5f348f
 
 
33b35a7
 
 
 
 
 
 
 
f5f348f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
language:
- en
- ko
tags:
- translation
license: cc-by-4.0
datasets:
- quickmt/quickmt-train.ko-en
model-index:
- name: quickmt-ko-en
  results:
  - task:
      name: Translation kor-eng
      type: translation
      args: kor-eng
    dataset:
      name: flores101-devtest
      type: flores_101
      args: kor_Hang eng_Latn devtest
    metrics:
    - name: CHRF
      type: chrf
      value: 56.25
    - name: BLEU
      type: bleu
      value: 27.03
    - name: COMET
      type: comet
      value: 86.11 
---

<a href="https://huggingface.co/spaces/quickmt/quickmt-gui"><img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/open-in-hf-spaces-lg-dark.svg" alt="Open in Spaces"></a>

# `quickmt-ko-en` Neural Machine Translation Model 

`quickmt-ko-en` is a reasonably fast and reasonably accurate neural machine translation model for translation from `ko` into `en`.


## Model Information

* Trained using [`eole`](https://github.com/eole-nlp/eole)
* 185M parameter transformer 'big' with 8 encoder layers and 2 decoder layers
* 20k sentencepiece vocabularies
* Exported for fast inference to [CTranslate2](https://github.com/OpenNMT/CTranslate2) format
* Training data: https://huggingface.co/datasets/quickmt/quickmt-train.ko-en/tree/main

See the `eole` model configuration in this repository for further details and the `eole-model` for the raw `eole` (pytorch) model.


## Usage with `quickmt`

You must install the Nvidia cuda toolkit first, if you want to do GPU inference.

Next, install the `quickmt` [python library](github.com/quickmt/quickmt). 

```bash
git clone https://github.com/quickmt/quickmt.git
pip install ./quickmt/
```

Finally, use the model in python:

```python
from quickmt import Translator
from huggingface_hub import snapshot_download

# Download Model (if not downloaded already) and return path to local model
# Device is either 'auto', 'cpu' or 'cuda'
t = Translator(
    snapshot_download("quickmt/quickmt-ko-en", ignore_patterns="eole-model/*"),
    device="cpu"
)

# Translate - set beam size to 5 for higher quality (but slower speed)
sample_text = '๋…ธ๋ฐ”์Šค์ฝ”์ƒค์ฃผ ํ•ผ๋ฆฌํŒฉ์Šค์˜ ๋Œˆํ•˜์šฐ์ง€๋Œ€ํ•™๊ต ์˜๊ณผ ๊ต์ˆ˜์ด์ž ์บ๋‚˜๋‹ค ๋‹น๋‡จ ํ˜‘ํšŒ ์ž„์ƒ๊ณผํ•™๋ถ€ ์˜์žฅ์ธ Ehud Ur ๋ฐ•์‚ฌ๋Š” ์ด ์—ฐ๊ตฌ๊ฐ€ ์•„์ง ์ดˆ๊ธฐ ๋‹จ๊ณ„๋ผ๊ณ  ๊ฒฝ๊ณ ํ–ˆ์Šต๋‹ˆ๋‹ค.'
t(sample_text, beam_size=5)

> 'Dr. Ehud Ur, a medical professor at Dalhousie University in Halifax, Nova Scotia and chair of the Canadian Diabetes Association Clinical Sciences Department, warned that the study is still in its early stages.'

# Get alternative translations by sampling
# You can pass any cTranslate2 `translate_batch` arguments
t([sample_text], sampling_temperature=1.2, beam_size=1, sampling_topk=50, sampling_topp=0.9)

> 'Dr. Ehud Ur, professor of medicine and professor of medicine from the Dalhowes Institute and chair of the Canadian Diabetes Association Clinical Science Department in Halifax, Nova Scotia, warned the study is still an early step forward.'
```

The model is in `ctranslate2` format, and the tokenizers are `sentencepiece`, so you can use `ctranslate2` directly instead of through `quickmt`. It is also possible  to get this model to work with e.g. [LibreTranslate](https://libretranslate.com/) which also uses `ctranslate2` and `sentencepiece`.


## Metrics

`bleu` and `chrf2` are calculated with [sacrebleu](https://github.com/mjpost/sacrebleu) on the [Flores200 `devtest` test set](https://huggingface.co/datasets/facebook/flores) ("kor_Hang"->"eng_Latn"). `comet22` with the [`comet`](https://github.com/Unbabel/COMET) library and the [default model](https://huggingface.co/Unbabel/wmt22-comet-da). "Time (s)" is the time in seconds to translate (using `ctranslate2`) the flores-devtest dataset (1012 sentences) on an RTX 4070s GPU with batch size 32 (faster speed is possible using a large batch size).

|                                  |   bleu |   chrf2 |   comet22 |   Time (s) |
|:---------------------------------|-------:|--------:|----------:|-----------:|
| quickmt/quickmt-ko-en            |  27.03 |   56.25 |     86.11 |       1.05 |
| Helsink-NLP/opus-mt-ko-en        |  20.78 |   50.39 |     83.06 |       3.62 |
| facebook/nllb-200-distilled-600M |  26.53 |   55.04 |     85.83 |      21.28 |
| facebook/nllb-200-distilled-1.3B |  29.61 |   57.58 |     87.24 |      37.42 |
| facebook/m2m100_418M             |  20.75 |   50.65 |     82.07 |      18.21 |
| facebook/m2m100_1.2B             |  24.59 |   54.17 |     85.15 |      34.82 |

`quickmt-ko-en` is the fastest and is higher quality than `opus-mt-ko-en`, `m2m100_418m`, `m2m100_1.2B` and `nllb-200-distilled-600M` but lower quality than `nllb-200-distilled-1.3B`.