wuzigua commited on
Commit
85f16a8
·
verified ·
1 Parent(s): 13bfa08

Phase 1 initial upload: Helsinki-NLP/opus-mt-caenes-eo → CT2 float16

Browse files
Files changed (9) hide show
  1. .gitattributes +2 -0
  2. README.md +36 -0
  3. config.json +10 -0
  4. model.bin +3 -0
  5. shared_vocabulary.json +0 -0
  6. source.spm +3 -0
  7. target.spm +3 -0
  8. tokenizer_config.json +48 -0
  9. vocab.json +0 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ source.spm filter=lfs diff=lfs merge=lfs -text
37
+ target.spm filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - translation
5
+ - opus-mt
6
+ - ctranslate2
7
+ - custom
8
+ source_model: Helsinki-NLP/opus-mt-caenes-eo
9
+ ---
10
+
11
+ # ooeoeo/opus-mt-caenes-eo-ct2-float16
12
+
13
+ CTranslate2 float16 quantized version of `Helsinki-NLP/opus-mt-caenes-eo`.
14
+
15
+ Converted for use in the [ooeoeo](https://ooeoeo.com) desktop engine
16
+ with the `opus-mt-server` inference runtime.
17
+
18
+ ## Source
19
+
20
+ - Upstream model: [Helsinki-NLP/opus-mt-caenes-eo](https://huggingface.co/Helsinki-NLP/opus-mt-caenes-eo)
21
+ - Variant: `custom`
22
+ - Language pair: `custom`
23
+
24
+ ## Conversion
25
+
26
+ ```bash
27
+ ct2-transformers-converter \
28
+ --model Helsinki-NLP/opus-mt-caenes-eo \
29
+ --output_dir ct2/ \
30
+ --quantization float16 \
31
+ --copy_files source.spm target.spm tokenizer_config.json vocab.json
32
+ ```
33
+
34
+ ## License
35
+
36
+ Apache-2.0 (inherited from upstream Helsinki-NLP/Opus-MT).
config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_source_bos": false,
3
+ "add_source_eos": false,
4
+ "bos_token": "<s>",
5
+ "decoder_start_token": "</s>",
6
+ "eos_token": "</s>",
7
+ "layer_norm_epsilon": null,
8
+ "multi_query_attention": false,
9
+ "unk_token": "<unk>"
10
+ }
model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5eb0aeb968ffa25355c2cf40a300ca0b94d622a405c0fc8a2efe434652922595
3
+ size 121644615
shared_vocabulary.json ADDED
The diff for this file is too large to render. See raw diff
 
source.spm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d561cdf0fc7ad693c1bf1fe21732c6434650623ec69dc712aceb36483587914d
3
+ size 805644
target.spm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d561cdf0fc7ad693c1bf1fe21732c6434650623ec69dc712aceb36483587914d
3
+ size 805644
tokenizer_config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "</s>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<unk>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "32000": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "32001": {
28
+ "content": "<s>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ }
35
+ },
36
+ "bos_token": "<s>",
37
+ "clean_up_tokenization_spaces": false,
38
+ "eos_token": "</s>",
39
+ "extra_special_tokens": {},
40
+ "model_max_length": 512,
41
+ "pad_token": "<pad>",
42
+ "separate_vocabs": false,
43
+ "source_lang": null,
44
+ "sp_model_kwargs": {},
45
+ "target_lang": null,
46
+ "tokenizer_class": "MarianTokenizer",
47
+ "unk_token": "<unk>"
48
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff