Upload folder using huggingface_hub
Browse files- .gitattributes +2 -0
- Helsinki-NLP-opus-mt-bi-es/config.json +56 -0
- Helsinki-NLP-opus-mt-bi-es/decoder_model.onnx +3 -0
- Helsinki-NLP-opus-mt-bi-es/decoder_model_merged.onnx +3 -0
- Helsinki-NLP-opus-mt-bi-es/decoder_with_past_model.onnx +3 -0
- Helsinki-NLP-opus-mt-bi-es/encoder_model.onnx +3 -0
- Helsinki-NLP-opus-mt-bi-es/generation_config.json +16 -0
- Helsinki-NLP-opus-mt-bi-es/source.spm +3 -0
- Helsinki-NLP-opus-mt-bi-es/special_tokens_map.json +5 -0
- Helsinki-NLP-opus-mt-bi-es/target.spm +3 -0
- Helsinki-NLP-opus-mt-bi-es/tokenizer_config.json +39 -0
- Helsinki-NLP-opus-mt-bi-es/vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -2769,3 +2769,5 @@ Helsinki-NLP-opus-mt-bi-sv/source.spm filter=lfs diff=lfs merge=lfs -text
|
|
| 2769 |
Helsinki-NLP-opus-mt-bi-sv/target.spm filter=lfs diff=lfs merge=lfs -text
|
| 2770 |
Helsinki-NLP-opus-mt-bi-fr/source.spm filter=lfs diff=lfs merge=lfs -text
|
| 2771 |
Helsinki-NLP-opus-mt-bi-fr/target.spm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 2769 |
Helsinki-NLP-opus-mt-bi-sv/target.spm filter=lfs diff=lfs merge=lfs -text
|
| 2770 |
Helsinki-NLP-opus-mt-bi-fr/source.spm filter=lfs diff=lfs merge=lfs -text
|
| 2771 |
Helsinki-NLP-opus-mt-bi-fr/target.spm filter=lfs diff=lfs merge=lfs -text
|
| 2772 |
+
Helsinki-NLP-opus-mt-bi-es/source.spm filter=lfs diff=lfs merge=lfs -text
|
| 2773 |
+
Helsinki-NLP-opus-mt-bi-es/target.spm filter=lfs diff=lfs merge=lfs -text
|
Helsinki-NLP-opus-mt-bi-es/config.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_num_labels": 3,
|
| 3 |
+
"activation_dropout": 0.0,
|
| 4 |
+
"activation_function": "swish",
|
| 5 |
+
"add_bias_logits": false,
|
| 6 |
+
"add_final_layer_norm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"MarianMTModel"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.0,
|
| 11 |
+
"bos_token_id": 0,
|
| 12 |
+
"classif_dropout": 0.0,
|
| 13 |
+
"classifier_dropout": 0.0,
|
| 14 |
+
"d_model": 512,
|
| 15 |
+
"decoder_attention_heads": 8,
|
| 16 |
+
"decoder_ffn_dim": 2048,
|
| 17 |
+
"decoder_layerdrop": 0.0,
|
| 18 |
+
"decoder_layers": 6,
|
| 19 |
+
"decoder_start_token_id": 56411,
|
| 20 |
+
"decoder_vocab_size": 56412,
|
| 21 |
+
"dropout": 0.1,
|
| 22 |
+
"encoder_attention_heads": 8,
|
| 23 |
+
"encoder_ffn_dim": 2048,
|
| 24 |
+
"encoder_layerdrop": 0.0,
|
| 25 |
+
"encoder_layers": 6,
|
| 26 |
+
"eos_token_id": 0,
|
| 27 |
+
"forced_eos_token_id": 0,
|
| 28 |
+
"id2label": {
|
| 29 |
+
"0": "LABEL_0",
|
| 30 |
+
"1": "LABEL_1",
|
| 31 |
+
"2": "LABEL_2"
|
| 32 |
+
},
|
| 33 |
+
"init_std": 0.02,
|
| 34 |
+
"is_encoder_decoder": true,
|
| 35 |
+
"is_transformers_support_available": true,
|
| 36 |
+
"label2id": {
|
| 37 |
+
"LABEL_0": 0,
|
| 38 |
+
"LABEL_1": 1,
|
| 39 |
+
"LABEL_2": 2
|
| 40 |
+
},
|
| 41 |
+
"max_length": null,
|
| 42 |
+
"max_position_embeddings": 512,
|
| 43 |
+
"model_type": "marian",
|
| 44 |
+
"normalize_before": false,
|
| 45 |
+
"normalize_embedding": false,
|
| 46 |
+
"num_beams": null,
|
| 47 |
+
"num_hidden_layers": 6,
|
| 48 |
+
"pad_token_id": 56411,
|
| 49 |
+
"scale_embedding": true,
|
| 50 |
+
"share_encoder_decoder_embeddings": true,
|
| 51 |
+
"static_position_embeddings": true,
|
| 52 |
+
"torch_dtype": "float32",
|
| 53 |
+
"transformers_version": "4.53.3",
|
| 54 |
+
"use_cache": true,
|
| 55 |
+
"vocab_size": 56412
|
| 56 |
+
}
|
Helsinki-NLP-opus-mt-bi-es/decoder_model.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cb9f0452184ec309be05168a13f6012bd14bb58ce2a7ad917d72e9227f10a02
|
| 3 |
+
size 217903924
|
Helsinki-NLP-opus-mt-bi-es/decoder_model_merged.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ce3e1066cbfd593ab4a9df6eea71d7d78f38d473944fc59fe0af86bc51ca277
|
| 3 |
+
size 218085238
|
Helsinki-NLP-opus-mt-bi-es/decoder_with_past_model.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04842af5b3b6823ac6fd3dd6810acef073d4137418702f85b1a626ba658df692
|
| 3 |
+
size 205274293
|
Helsinki-NLP-opus-mt-bi-es/encoder_model.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8875852396be96f0f4eb49209ffeaed16752d87c97b613f3a22dea63cd593822
|
| 3 |
+
size 192311925
|
Helsinki-NLP-opus-mt-bi-es/generation_config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bad_words_ids": [
|
| 3 |
+
[
|
| 4 |
+
56411
|
| 5 |
+
]
|
| 6 |
+
],
|
| 7 |
+
"bos_token_id": 0,
|
| 8 |
+
"decoder_start_token_id": 56411,
|
| 9 |
+
"eos_token_id": 0,
|
| 10 |
+
"forced_eos_token_id": 0,
|
| 11 |
+
"max_length": 512,
|
| 12 |
+
"num_beams": 4,
|
| 13 |
+
"pad_token_id": 56411,
|
| 14 |
+
"renormalize_logits": true,
|
| 15 |
+
"transformers_version": "4.53.3"
|
| 16 |
+
}
|
Helsinki-NLP-opus-mt-bi-es/source.spm
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a48b9d0f90366c9b8da216786c2af174cec5f1dd70251a0e7323c4347feb01a4
|
| 3 |
+
size 716032
|
Helsinki-NLP-opus-mt-bi-es/special_tokens_map.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"eos_token": "</s>",
|
| 3 |
+
"pad_token": "<pad>",
|
| 4 |
+
"unk_token": "<unk>"
|
| 5 |
+
}
|
Helsinki-NLP-opus-mt-bi-es/target.spm
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a143556434044c534bc8e09b26e34a9a6ebed75bbfbcfb064c9a0364d045c568
|
| 3 |
+
size 848488
|
Helsinki-NLP-opus-mt-bi-es/tokenizer_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"56411": {
|
| 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": false,
|
| 29 |
+
"eos_token": "</s>",
|
| 30 |
+
"extra_special_tokens": {},
|
| 31 |
+
"model_max_length": 512,
|
| 32 |
+
"pad_token": "<pad>",
|
| 33 |
+
"separate_vocabs": false,
|
| 34 |
+
"source_lang": "bi",
|
| 35 |
+
"sp_model_kwargs": {},
|
| 36 |
+
"target_lang": "es",
|
| 37 |
+
"tokenizer_class": "MarianTokenizer",
|
| 38 |
+
"unk_token": "<unk>"
|
| 39 |
+
}
|
Helsinki-NLP-opus-mt-bi-es/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|