jorgeortizfuentes
commited on
Commit
•
dce2ea3
1
Parent(s):
128c3a2
Training in progress, step 45000
Browse files- .gitattributes +1 -0
- config.json +50 -22
- pytorch_model.bin +2 -2
- runs/Jun09_14-14-53_relela-04/1686334826.634753/events.out.tfevents.1686334826.relela-04.341369.1 +3 -0
- runs/Jun09_14-14-53_relela-04/events.out.tfevents.1686334826.relela-04.341369.0 +3 -0
- sentencepiece.bpe.model +3 -0
- special_tokens_map.json +35 -100
- tokenizer.json +0 -0
- tokenizer_config.json +16 -106
- training_args.bin +1 -1
.gitattributes
CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
config.json
CHANGED
@@ -1,32 +1,60 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
|
|
|
|
|
|
|
|
|
|
3 |
"architectures": [
|
4 |
-
"
|
5 |
],
|
6 |
-
"
|
7 |
-
"
|
|
|
|
|
8 |
"d_model": 1024,
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
"is_encoder_decoder": true,
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
"
|
22 |
-
"
|
|
|
|
|
|
|
|
|
|
|
23 |
"output_past": true,
|
24 |
-
"pad_token_id":
|
25 |
-
"
|
26 |
-
"
|
27 |
-
"
|
|
|
|
|
|
|
|
|
28 |
"torch_dtype": "float32",
|
29 |
"transformers_version": "4.29.2",
|
30 |
"use_cache": true,
|
31 |
-
"vocab_size":
|
32 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "facebook/mbart-large-cc25",
|
3 |
+
"_num_labels": 3,
|
4 |
+
"activation_dropout": 0.0,
|
5 |
+
"activation_function": "gelu",
|
6 |
+
"add_bias_logits": false,
|
7 |
+
"add_final_layer_norm": true,
|
8 |
"architectures": [
|
9 |
+
"MBartForConditionalGeneration"
|
10 |
],
|
11 |
+
"attention_dropout": 0.0,
|
12 |
+
"bos_token_id": 0,
|
13 |
+
"classif_dropout": 0.0,
|
14 |
+
"classifier_dropout": 0.0,
|
15 |
"d_model": 1024,
|
16 |
+
"decoder_attention_heads": 16,
|
17 |
+
"decoder_ffn_dim": 4096,
|
18 |
+
"decoder_layerdrop": 0.0,
|
19 |
+
"decoder_layers": 12,
|
20 |
+
"decoder_start_token_id": 6964,
|
21 |
+
"dropout": 0.1,
|
22 |
+
"encoder_attention_heads": 16,
|
23 |
+
"encoder_ffn_dim": 4096,
|
24 |
+
"encoder_layerdrop": 0.0,
|
25 |
+
"encoder_layers": 12,
|
26 |
+
"eos_token_id": 2,
|
27 |
+
"forced_eos_token_id": 2,
|
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 |
+
"label2id": {
|
36 |
+
"LABEL_0": 0,
|
37 |
+
"LABEL_1": 1,
|
38 |
+
"LABEL_2": 2
|
39 |
+
},
|
40 |
+
"max_length": 1024,
|
41 |
+
"max_position_embeddings": 1024,
|
42 |
+
"model_type": "mbart",
|
43 |
+
"normalize_before": true,
|
44 |
+
"normalize_embedding": true,
|
45 |
+
"num_beams": 5,
|
46 |
+
"num_hidden_layers": 12,
|
47 |
"output_past": true,
|
48 |
+
"pad_token_id": 1,
|
49 |
+
"scale_embedding": true,
|
50 |
+
"static_position_embeddings": false,
|
51 |
+
"task_specific_params": {
|
52 |
+
"translation_en_to_ro": {
|
53 |
+
"decoder_start_token_id": 250020
|
54 |
+
}
|
55 |
+
},
|
56 |
"torch_dtype": "float32",
|
57 |
"transformers_version": "4.29.2",
|
58 |
"use_cache": true,
|
59 |
+
"vocab_size": 250027
|
60 |
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8fbae1b4239cf954a67a9c7a612b51d67513105e82f61d10c2ebbfe5c16aab2d
|
3 |
+
size 2444583325
|
runs/Jun09_14-14-53_relela-04/1686334826.634753/events.out.tfevents.1686334826.relela-04.341369.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4f2b8f4efbba7cf97eca2f444349b25b4e66734f3248e0e450f75f50068d21a9
|
3 |
+
size 6357
|
runs/Jun09_14-14-53_relela-04/events.out.tfevents.1686334826.relela-04.341369.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:208b8667f40efabeb0bed2ea3706b53819d1352e04e85a37ff92fd6ae34743c4
|
3 |
+
size 19381
|
sentencepiece.bpe.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
|
3 |
+
size 5069051
|
special_tokens_map.json
CHANGED
@@ -1,107 +1,42 @@
|
|
1 |
{
|
2 |
"additional_special_tokens": [
|
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 |
-
"<extra_id_25>",
|
29 |
-
"<extra_id_26>",
|
30 |
-
"<extra_id_27>",
|
31 |
-
"<extra_id_28>",
|
32 |
-
"<extra_id_29>",
|
33 |
-
"<extra_id_30>",
|
34 |
-
"<extra_id_31>",
|
35 |
-
"<extra_id_32>",
|
36 |
-
"<extra_id_33>",
|
37 |
-
"<extra_id_34>",
|
38 |
-
"<extra_id_35>",
|
39 |
-
"<extra_id_36>",
|
40 |
-
"<extra_id_37>",
|
41 |
-
"<extra_id_38>",
|
42 |
-
"<extra_id_39>",
|
43 |
-
"<extra_id_40>",
|
44 |
-
"<extra_id_41>",
|
45 |
-
"<extra_id_42>",
|
46 |
-
"<extra_id_43>",
|
47 |
-
"<extra_id_44>",
|
48 |
-
"<extra_id_45>",
|
49 |
-
"<extra_id_46>",
|
50 |
-
"<extra_id_47>",
|
51 |
-
"<extra_id_48>",
|
52 |
-
"<extra_id_49>",
|
53 |
-
"<extra_id_50>",
|
54 |
-
"<extra_id_51>",
|
55 |
-
"<extra_id_52>",
|
56 |
-
"<extra_id_53>",
|
57 |
-
"<extra_id_54>",
|
58 |
-
"<extra_id_55>",
|
59 |
-
"<extra_id_56>",
|
60 |
-
"<extra_id_57>",
|
61 |
-
"<extra_id_58>",
|
62 |
-
"<extra_id_59>",
|
63 |
-
"<extra_id_60>",
|
64 |
-
"<extra_id_61>",
|
65 |
-
"<extra_id_62>",
|
66 |
-
"<extra_id_63>",
|
67 |
-
"<extra_id_64>",
|
68 |
-
"<extra_id_65>",
|
69 |
-
"<extra_id_66>",
|
70 |
-
"<extra_id_67>",
|
71 |
-
"<extra_id_68>",
|
72 |
-
"<extra_id_69>",
|
73 |
-
"<extra_id_70>",
|
74 |
-
"<extra_id_71>",
|
75 |
-
"<extra_id_72>",
|
76 |
-
"<extra_id_73>",
|
77 |
-
"<extra_id_74>",
|
78 |
-
"<extra_id_75>",
|
79 |
-
"<extra_id_76>",
|
80 |
-
"<extra_id_77>",
|
81 |
-
"<extra_id_78>",
|
82 |
-
"<extra_id_79>",
|
83 |
-
"<extra_id_80>",
|
84 |
-
"<extra_id_81>",
|
85 |
-
"<extra_id_82>",
|
86 |
-
"<extra_id_83>",
|
87 |
-
"<extra_id_84>",
|
88 |
-
"<extra_id_85>",
|
89 |
-
"<extra_id_86>",
|
90 |
-
"<extra_id_87>",
|
91 |
-
"<extra_id_88>",
|
92 |
-
"<extra_id_89>",
|
93 |
-
"<extra_id_90>",
|
94 |
-
"<extra_id_91>",
|
95 |
-
"<extra_id_92>",
|
96 |
-
"<extra_id_93>",
|
97 |
-
"<extra_id_94>",
|
98 |
-
"<extra_id_95>",
|
99 |
-
"<extra_id_96>",
|
100 |
-
"<extra_id_97>",
|
101 |
-
"<extra_id_98>",
|
102 |
-
"<extra_id_99>"
|
103 |
],
|
|
|
|
|
104 |
"eos_token": "</s>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
"pad_token": "<pad>",
|
|
|
106 |
"unk_token": "<unk>"
|
107 |
}
|
|
|
1 |
{
|
2 |
"additional_special_tokens": [
|
3 |
+
"ar_AR",
|
4 |
+
"cs_CZ",
|
5 |
+
"de_DE",
|
6 |
+
"en_XX",
|
7 |
+
"es_XX",
|
8 |
+
"et_EE",
|
9 |
+
"fi_FI",
|
10 |
+
"fr_XX",
|
11 |
+
"gu_IN",
|
12 |
+
"hi_IN",
|
13 |
+
"it_IT",
|
14 |
+
"ja_XX",
|
15 |
+
"kk_KZ",
|
16 |
+
"ko_KR",
|
17 |
+
"lt_LT",
|
18 |
+
"lv_LV",
|
19 |
+
"my_MM",
|
20 |
+
"ne_NP",
|
21 |
+
"nl_XX",
|
22 |
+
"ro_RO",
|
23 |
+
"ru_RU",
|
24 |
+
"si_LK",
|
25 |
+
"tr_TR",
|
26 |
+
"vi_VN",
|
27 |
+
"zh_CN"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
],
|
29 |
+
"bos_token": "<s>",
|
30 |
+
"cls_token": "<s>",
|
31 |
"eos_token": "</s>",
|
32 |
+
"mask_token": {
|
33 |
+
"content": "<mask>",
|
34 |
+
"lstrip": true,
|
35 |
+
"normalized": false,
|
36 |
+
"rstrip": false,
|
37 |
+
"single_word": false
|
38 |
+
},
|
39 |
"pad_token": "<pad>",
|
40 |
+
"sep_token": "</s>",
|
41 |
"unk_token": "<unk>"
|
42 |
}
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1,112 +1,22 @@
|
|
1 |
{
|
2 |
-
"additional_special_tokens":
|
3 |
-
|
4 |
-
"<extra_id_1>",
|
5 |
-
"<extra_id_2>",
|
6 |
-
"<extra_id_3>",
|
7 |
-
"<extra_id_4>",
|
8 |
-
"<extra_id_5>",
|
9 |
-
"<extra_id_6>",
|
10 |
-
"<extra_id_7>",
|
11 |
-
"<extra_id_8>",
|
12 |
-
"<extra_id_9>",
|
13 |
-
"<extra_id_10>",
|
14 |
-
"<extra_id_11>",
|
15 |
-
"<extra_id_12>",
|
16 |
-
"<extra_id_13>",
|
17 |
-
"<extra_id_14>",
|
18 |
-
"<extra_id_15>",
|
19 |
-
"<extra_id_16>",
|
20 |
-
"<extra_id_17>",
|
21 |
-
"<extra_id_18>",
|
22 |
-
"<extra_id_19>",
|
23 |
-
"<extra_id_20>",
|
24 |
-
"<extra_id_21>",
|
25 |
-
"<extra_id_22>",
|
26 |
-
"<extra_id_23>",
|
27 |
-
"<extra_id_24>",
|
28 |
-
"<extra_id_25>",
|
29 |
-
"<extra_id_26>",
|
30 |
-
"<extra_id_27>",
|
31 |
-
"<extra_id_28>",
|
32 |
-
"<extra_id_29>",
|
33 |
-
"<extra_id_30>",
|
34 |
-
"<extra_id_31>",
|
35 |
-
"<extra_id_32>",
|
36 |
-
"<extra_id_33>",
|
37 |
-
"<extra_id_34>",
|
38 |
-
"<extra_id_35>",
|
39 |
-
"<extra_id_36>",
|
40 |
-
"<extra_id_37>",
|
41 |
-
"<extra_id_38>",
|
42 |
-
"<extra_id_39>",
|
43 |
-
"<extra_id_40>",
|
44 |
-
"<extra_id_41>",
|
45 |
-
"<extra_id_42>",
|
46 |
-
"<extra_id_43>",
|
47 |
-
"<extra_id_44>",
|
48 |
-
"<extra_id_45>",
|
49 |
-
"<extra_id_46>",
|
50 |
-
"<extra_id_47>",
|
51 |
-
"<extra_id_48>",
|
52 |
-
"<extra_id_49>",
|
53 |
-
"<extra_id_50>",
|
54 |
-
"<extra_id_51>",
|
55 |
-
"<extra_id_52>",
|
56 |
-
"<extra_id_53>",
|
57 |
-
"<extra_id_54>",
|
58 |
-
"<extra_id_55>",
|
59 |
-
"<extra_id_56>",
|
60 |
-
"<extra_id_57>",
|
61 |
-
"<extra_id_58>",
|
62 |
-
"<extra_id_59>",
|
63 |
-
"<extra_id_60>",
|
64 |
-
"<extra_id_61>",
|
65 |
-
"<extra_id_62>",
|
66 |
-
"<extra_id_63>",
|
67 |
-
"<extra_id_64>",
|
68 |
-
"<extra_id_65>",
|
69 |
-
"<extra_id_66>",
|
70 |
-
"<extra_id_67>",
|
71 |
-
"<extra_id_68>",
|
72 |
-
"<extra_id_69>",
|
73 |
-
"<extra_id_70>",
|
74 |
-
"<extra_id_71>",
|
75 |
-
"<extra_id_72>",
|
76 |
-
"<extra_id_73>",
|
77 |
-
"<extra_id_74>",
|
78 |
-
"<extra_id_75>",
|
79 |
-
"<extra_id_76>",
|
80 |
-
"<extra_id_77>",
|
81 |
-
"<extra_id_78>",
|
82 |
-
"<extra_id_79>",
|
83 |
-
"<extra_id_80>",
|
84 |
-
"<extra_id_81>",
|
85 |
-
"<extra_id_82>",
|
86 |
-
"<extra_id_83>",
|
87 |
-
"<extra_id_84>",
|
88 |
-
"<extra_id_85>",
|
89 |
-
"<extra_id_86>",
|
90 |
-
"<extra_id_87>",
|
91 |
-
"<extra_id_88>",
|
92 |
-
"<extra_id_89>",
|
93 |
-
"<extra_id_90>",
|
94 |
-
"<extra_id_91>",
|
95 |
-
"<extra_id_92>",
|
96 |
-
"<extra_id_93>",
|
97 |
-
"<extra_id_94>",
|
98 |
-
"<extra_id_95>",
|
99 |
-
"<extra_id_96>",
|
100 |
-
"<extra_id_97>",
|
101 |
-
"<extra_id_98>",
|
102 |
-
"<extra_id_99>"
|
103 |
-
],
|
104 |
"clean_up_tokenization_spaces": true,
|
|
|
105 |
"eos_token": "</s>",
|
106 |
-
"
|
107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
"pad_token": "<pad>",
|
109 |
-
"
|
110 |
-
"
|
|
|
|
|
111 |
"unk_token": "<unk>"
|
112 |
}
|
|
|
1 |
{
|
2 |
+
"additional_special_tokens": null,
|
3 |
+
"bos_token": "<s>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
"clean_up_tokenization_spaces": true,
|
5 |
+
"cls_token": "<s>",
|
6 |
"eos_token": "</s>",
|
7 |
+
"mask_token": {
|
8 |
+
"__type": "AddedToken",
|
9 |
+
"content": "<mask>",
|
10 |
+
"lstrip": true,
|
11 |
+
"normalized": true,
|
12 |
+
"rstrip": false,
|
13 |
+
"single_word": false
|
14 |
+
},
|
15 |
+
"model_max_length": 1024,
|
16 |
"pad_token": "<pad>",
|
17 |
+
"sep_token": "</s>",
|
18 |
+
"src_lang": null,
|
19 |
+
"tgt_lang": null,
|
20 |
+
"tokenizer_class": "MBartTokenizer",
|
21 |
"unk_token": "<unk>"
|
22 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4219
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1687c5cb092a6fd3f699d05af3fdcbf62fd041137d025f9bb1b919a18f128e87
|
3 |
size 4219
|