Xenova HF staff commited on
Commit
e1462b2
1 Parent(s): 595a0b1

Upload folder using huggingface_hub

Browse files
Files changed (42) hide show
  1. .gitattributes +1 -0
  2. config.json +60 -0
  3. generation_config.json +16 -0
  4. onnx/decoder_model.onnx +3 -0
  5. onnx/decoder_model_bnb4.onnx +3 -0
  6. onnx/decoder_model_fp16.onnx +3 -0
  7. onnx/decoder_model_int8.onnx +3 -0
  8. onnx/decoder_model_merged.onnx +3 -0
  9. onnx/decoder_model_merged_bnb4.onnx +3 -0
  10. onnx/decoder_model_merged_fp16.onnx +3 -0
  11. onnx/decoder_model_merged_int8.onnx +3 -0
  12. onnx/decoder_model_merged_q4.onnx +3 -0
  13. onnx/decoder_model_merged_q4f16.onnx +3 -0
  14. onnx/decoder_model_merged_quantized.onnx +3 -0
  15. onnx/decoder_model_merged_uint8.onnx +3 -0
  16. onnx/decoder_model_q4.onnx +3 -0
  17. onnx/decoder_model_q4f16.onnx +3 -0
  18. onnx/decoder_model_quantized.onnx +3 -0
  19. onnx/decoder_model_uint8.onnx +3 -0
  20. onnx/decoder_with_past_model.onnx +3 -0
  21. onnx/decoder_with_past_model_bnb4.onnx +3 -0
  22. onnx/decoder_with_past_model_fp16.onnx +3 -0
  23. onnx/decoder_with_past_model_int8.onnx +3 -0
  24. onnx/decoder_with_past_model_q4.onnx +3 -0
  25. onnx/decoder_with_past_model_q4f16.onnx +3 -0
  26. onnx/decoder_with_past_model_quantized.onnx +3 -0
  27. onnx/decoder_with_past_model_uint8.onnx +3 -0
  28. onnx/encoder_model.onnx +3 -0
  29. onnx/encoder_model_bnb4.onnx +3 -0
  30. onnx/encoder_model_fp16.onnx +3 -0
  31. onnx/encoder_model_int8.onnx +3 -0
  32. onnx/encoder_model_q4.onnx +3 -0
  33. onnx/encoder_model_q4f16.onnx +3 -0
  34. onnx/encoder_model_quantized.onnx +3 -0
  35. onnx/encoder_model_uint8.onnx +3 -0
  36. quantize_config.json +17 -0
  37. source.spm +0 -0
  38. special_tokens_map.json +5 -0
  39. target.spm +3 -0
  40. tokenizer.json +0 -0
  41. tokenizer_config.json +38 -0
  42. vocab.json +0 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ 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
+ target.spm filter=lfs diff=lfs merge=lfs -text
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Helsinki-NLP/opus-mt-en-ru",
3
+ "_num_labels": 3,
4
+ "activation_dropout": 0.0,
5
+ "activation_function": "swish",
6
+ "add_bias_logits": false,
7
+ "add_final_layer_norm": false,
8
+ "architectures": [
9
+ "MarianMTModel"
10
+ ],
11
+ "attention_dropout": 0.0,
12
+ "bad_words_ids": [
13
+ [
14
+ 62517
15
+ ]
16
+ ],
17
+ "bos_token_id": 0,
18
+ "classif_dropout": 0.0,
19
+ "classifier_dropout": 0.0,
20
+ "d_model": 512,
21
+ "decoder_attention_heads": 8,
22
+ "decoder_ffn_dim": 2048,
23
+ "decoder_layerdrop": 0.0,
24
+ "decoder_layers": 6,
25
+ "decoder_start_token_id": 62517,
26
+ "decoder_vocab_size": 62518,
27
+ "dropout": 0.1,
28
+ "encoder_attention_heads": 8,
29
+ "encoder_ffn_dim": 2048,
30
+ "encoder_layerdrop": 0.0,
31
+ "encoder_layers": 6,
32
+ "eos_token_id": 0,
33
+ "forced_eos_token_id": 0,
34
+ "id2label": {
35
+ "0": "LABEL_0",
36
+ "1": "LABEL_1",
37
+ "2": "LABEL_2"
38
+ },
39
+ "init_std": 0.02,
40
+ "is_encoder_decoder": true,
41
+ "label2id": {
42
+ "LABEL_0": 0,
43
+ "LABEL_1": 1,
44
+ "LABEL_2": 2
45
+ },
46
+ "max_length": 512,
47
+ "max_position_embeddings": 512,
48
+ "model_type": "marian",
49
+ "normalize_before": false,
50
+ "normalize_embedding": false,
51
+ "num_beams": 4,
52
+ "num_hidden_layers": 6,
53
+ "pad_token_id": 62517,
54
+ "scale_embedding": true,
55
+ "share_encoder_decoder_embeddings": true,
56
+ "static_position_embeddings": true,
57
+ "transformers_version": "4.43.4",
58
+ "use_cache": true,
59
+ "vocab_size": 62518
60
+ }
generation_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bad_words_ids": [
3
+ [
4
+ 62517
5
+ ]
6
+ ],
7
+ "bos_token_id": 0,
8
+ "decoder_start_token_id": 62517,
9
+ "eos_token_id": 0,
10
+ "forced_eos_token_id": 0,
11
+ "max_length": 512,
12
+ "num_beams": 4,
13
+ "pad_token_id": 62517,
14
+ "renormalize_logits": true,
15
+ "transformers_version": "4.43.4"
16
+ }
onnx/decoder_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a634ae8e1f0a3a720feff690baf9fe626fb7fc62af05d5c551a07635cdd8966
3
+ size 230517682
onnx/decoder_model_bnb4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:922a41547da26644c396afdc87ef23f4cc0d07919075aae2a8180483bcdd57e8
3
+ size 144019589
onnx/decoder_model_fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3224da126103c55e2ccaea1928e3e8bb736fd221806f0418abb9055096237a66
3
+ size 115403526
onnx/decoder_model_int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb095b6f25ac8671699600626b8b69684c9777d383c4ac81d0fc3a1d6610b496
3
+ size 186516257
onnx/decoder_model_merged.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:203febe0ba343e57fde949a1488a624031ca7fd8319030641749872171407568
3
+ size 230864860
onnx/decoder_model_merged_bnb4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf75ceec8a48395159f08adec10942f72aa62eaea90c93bc15e44c1872498f5c
3
+ size 144373799
onnx/decoder_model_merged_fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99e6fdb2feac89c18baa534e3002d81715ed6631663c3cf6b7cfd6d386fff1d8
3
+ size 224591172
onnx/decoder_model_merged_int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d15c48566e60dcaa5af7422bcceca24ccc8f3eaa8f1b3aedc5d6170e6c232f3
3
+ size 186923812
onnx/decoder_model_merged_q4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8567c6d7712c95bd3fcfd95a7f3cdb11ff30e83182005d9e781646afc1e82610
3
+ size 145945751
onnx/decoder_model_merged_q4f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ca3435d1db8020014b4f7ba75ebdc88b10d713e06ab15e89cfc1aaad48e8d24
3
+ size 156779443
onnx/decoder_model_merged_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d15c48566e60dcaa5af7422bcceca24ccc8f3eaa8f1b3aedc5d6170e6c232f3
3
+ size 186923812
onnx/decoder_model_merged_uint8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50f86a1ae23aecf3d78e541a899b5dd7f914af1d3616c7e5ea4c74a1142b3934
3
+ size 186923812
onnx/decoder_model_q4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb73d7ea7412271c272871845f01a4d2a8f692d4c232f683e035451c7b7e9c13
3
+ size 145591973
onnx/decoder_model_q4f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cb18e4c9e9a10c445fc67b8a15ddc27567faf19a6f2c7dc74cf5328410504f3
3
+ size 79236601
onnx/decoder_model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb095b6f25ac8671699600626b8b69684c9777d383c4ac81d0fc3a1d6610b496
3
+ size 186516257
onnx/decoder_model_uint8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0520782d359fc23eb67863700615cec9700dc93e8beb02ec070e89c8bc3d0546
3
+ size 186516257
onnx/decoder_with_past_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed111e5b1589584abea06d1bbae1f5622afcd80af667f876a4b8b4d812188171
3
+ size 217837180
onnx/decoder_with_past_model_bnb4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fe2f69b340c185de2b818357e85d664a8ee86cb784af8bad65ca85a956280f2
3
+ size 142150643
onnx/decoder_with_past_model_fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bd0c06741114b31e431b22aec4eebbe947b6df6b331099137b3e411bd783659
3
+ size 109029572
onnx/decoder_with_past_model_int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c79dee26dff975cd55ea61272b2f273cbdd82300ad6a2a9fdbebb92766ec4efa
3
+ size 183230242
onnx/decoder_with_past_model_q4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44060cb12e60d0ac8439ddc8c8e51b9e1e7d8a028d9af8a3f61c39ba6ec90e3a
3
+ size 143526515
onnx/decoder_with_past_model_q4f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7427baf41ff29489040c2d29fd9bbd6e481557955de32b73e689ea92853e799d
3
+ size 77382843
onnx/decoder_with_past_model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c79dee26dff975cd55ea61272b2f273cbdd82300ad6a2a9fdbebb92766ec4efa
3
+ size 183230242
onnx/decoder_with_past_model_uint8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b45d0193fd5bb0f00d1d7f703224b68da40f06b97bf089bb652ad77941b751f1
3
+ size 183230242
onnx/encoder_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d608e78058b9169c26e5065536c59fb76403377253b00d05efb88f81ceb0d5f1
3
+ size 204865744
onnx/encoder_model_bnb4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a67d8f40ad33b6b546fe70ec77a744c017a2b4f346d19e6d817baa07548bc606
3
+ size 139990778
onnx/encoder_model_fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3da186be5cf421ee6978c170043c84b625e25555788f37c35277b6ad21206e5d
3
+ size 102494433
onnx/encoder_model_int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8b4f72528c0da92e579af8a739f97fa2f792d73527ba2fee786fa7286c4055b
3
+ size 51603782
onnx/encoder_model_q4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7026875e5862b171fc4747739f9c76275412e29089d82c148895d549bbfc173a
3
+ size 141170138
onnx/encoder_model_q4f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfc8d9caf5adc58741bfdfaf8c3205141365c47cc74438d7a57bf89309dba331
3
+ size 75367915
onnx/encoder_model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8b4f72528c0da92e579af8a739f97fa2f792d73527ba2fee786fa7286c4055b
3
+ size 51603782
onnx/encoder_model_uint8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd16db19c649a6cb8ced387e3204052978df3c57810667de906bd67dbef8b071
3
+ size 51603782
quantize_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "modes": [
3
+ "fp16",
4
+ "q8",
5
+ "int8",
6
+ "uint8",
7
+ "q4",
8
+ "q4f16",
9
+ "bnb4"
10
+ ],
11
+ "per_channel": true,
12
+ "reduce_range": true,
13
+ "block_size": null,
14
+ "is_symmetric": true,
15
+ "accuracy_level": null,
16
+ "quant_type": 1
17
+ }
source.spm ADDED
Binary file (803 kB). View file
 
special_tokens_map.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "eos_token": "</s>",
3
+ "pad_token": "<pad>",
4
+ "unk_token": "<unk>"
5
+ }
target.spm ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:745998e51ba5b058e38b7ac7765c25c43ed5c1c39cc92b27163b9b2e323c9d7c
3
+ size 1080169
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "62517": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ }
27
+ },
28
+ "clean_up_tokenization_spaces": true,
29
+ "eos_token": "</s>",
30
+ "model_max_length": 512,
31
+ "pad_token": "<pad>",
32
+ "separate_vocabs": false,
33
+ "source_lang": "en",
34
+ "sp_model_kwargs": {},
35
+ "target_lang": "ru",
36
+ "tokenizer_class": "MarianTokenizer",
37
+ "unk_token": "<unk>"
38
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff