hucruz commited on
Commit
1e92905
·
1 Parent(s): 7979684

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "dccuchile/distilbert-base-spanish-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-argumento",
14
+ "2": "I-argumento",
15
+ "3": "B-conector_aditivo",
16
+ "4": "I-conector_aditivo",
17
+ "5": "B-conector_consecutivo",
18
+ "6": "I-conector_consecutivo",
19
+ "7": "B-conector_contraargum",
20
+ "8": "I-conector_contraargum",
21
+ "9": "B-confirmacion",
22
+ "10": "I-confirmacion",
23
+ "11": "B-contragradecimiento",
24
+ "12": "I-contragradecimiento",
25
+ "13": "B-despedida",
26
+ "14": "I-despedida",
27
+ "15": "B-emoji",
28
+ "16": "I-emoji",
29
+ "17": "B-estructurador",
30
+ "18": "I-estructurador",
31
+ "19": "B-expresion_negativa",
32
+ "20": "I-expresion_negativa",
33
+ "21": "B-expresion_positiva",
34
+ "22": "I-expresion_positiva",
35
+ "23": "B-form_cortesia",
36
+ "24": "I-form_cortesia",
37
+ "25": "B-form_recapituladora",
38
+ "26": "I-form_recapituladora",
39
+ "27": "B-frase",
40
+ "28": "I-frase",
41
+ "29": "B-insulto",
42
+ "30": "I-insulto",
43
+ "31": "B-peticion",
44
+ "32": "I-peticion",
45
+ "33": "B-pregunta_abierta",
46
+ "34": "I-pregunta_abierta",
47
+ "35": "B-pregunta_alternativa",
48
+ "36": "I-pregunta_alternativa",
49
+ "37": "B-pregunta_cerrada",
50
+ "38": "I-pregunta_cerrada",
51
+ "39": "B-reformulacion_argum",
52
+ "40": "I-reformulacion_argum",
53
+ "41": "B-respuesta_abierta",
54
+ "42": "I-respuesta_abierta",
55
+ "43": "B-respuesta_negativa",
56
+ "44": "I-respuesta_negativa",
57
+ "45": "B-respuesta_positiva",
58
+ "46": "I-respuesta_positiva",
59
+ "47": "B-saludo",
60
+ "48": "I-saludo"
61
+ },
62
+ "initializer_range": 0.02,
63
+ "label2id": {
64
+ "B-argumento": 1,
65
+ "B-conector_aditivo": 3,
66
+ "B-conector_consecutivo": 5,
67
+ "B-conector_contraargum": 7,
68
+ "B-confirmacion": 9,
69
+ "B-contragradecimiento": 11,
70
+ "B-despedida": 13,
71
+ "B-emoji": 15,
72
+ "B-estructurador": 17,
73
+ "B-expresion_negativa": 19,
74
+ "B-expresion_positiva": 21,
75
+ "B-form_cortesia": 23,
76
+ "B-form_recapituladora": 25,
77
+ "B-frase": 27,
78
+ "B-insulto": 29,
79
+ "B-peticion": 31,
80
+ "B-pregunta_abierta": 33,
81
+ "B-pregunta_alternativa": 35,
82
+ "B-pregunta_cerrada": 37,
83
+ "B-reformulacion_argum": 39,
84
+ "B-respuesta_abierta": 41,
85
+ "B-respuesta_negativa": 43,
86
+ "B-respuesta_positiva": 45,
87
+ "B-saludo": 47,
88
+ "I-argumento": 2,
89
+ "I-conector_aditivo": 4,
90
+ "I-conector_consecutivo": 6,
91
+ "I-conector_contraargum": 8,
92
+ "I-confirmacion": 10,
93
+ "I-contragradecimiento": 12,
94
+ "I-despedida": 14,
95
+ "I-emoji": 16,
96
+ "I-estructurador": 18,
97
+ "I-expresion_negativa": 20,
98
+ "I-expresion_positiva": 22,
99
+ "I-form_cortesia": 24,
100
+ "I-form_recapituladora": 26,
101
+ "I-frase": 28,
102
+ "I-insulto": 30,
103
+ "I-peticion": 32,
104
+ "I-pregunta_abierta": 34,
105
+ "I-pregunta_alternativa": 36,
106
+ "I-pregunta_cerrada": 38,
107
+ "I-reformulacion_argum": 40,
108
+ "I-respuesta_abierta": 42,
109
+ "I-respuesta_negativa": 44,
110
+ "I-respuesta_positiva": 46,
111
+ "I-saludo": 48,
112
+ "O": 0
113
+ },
114
+ "max_position_embeddings": 512,
115
+ "model_type": "distilbert",
116
+ "n_heads": 12,
117
+ "n_layers": 6,
118
+ "pad_token_id": 0,
119
+ "qa_dropout": 0.1,
120
+ "seq_classif_dropout": 0.2,
121
+ "sinusoidal_pos_embds": true,
122
+ "tie_weights_": true,
123
+ "torch_dtype": "float32",
124
+ "transformers_version": "4.26.0",
125
+ "vocab_size": 31002
126
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06198a8aff94f43ef416b789b2ba68f186bcfda353f356c75c42b3829cfe6164
3
+ size 267111653
runs/Feb01_05-26-53_1409676d5be9/1675229233.0527918/events.out.tfevents.1675229233.1409676d5be9.1930.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21b7f66ea041d1e14707fd4d2ad89697a2f6016643f19882cbcb64de38a8e2fa
3
+ size 5670
runs/Feb01_05-26-53_1409676d5be9/events.out.tfevents.1675229233.1409676d5be9.1930.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d77f3a410ce0becc63d0ccc9ef928c9eceb32844b56b72f5edd6e7f2197ba5e0
3
+ size 7058
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "name_or_path": "dccuchile/distilbert-base-spanish-uncased",
8
+ "never_split": null,
9
+ "pad_token": "[PAD]",
10
+ "sep_token": "[SEP]",
11
+ "special_tokens_map_file": null,
12
+ "strip_accents": false,
13
+ "tokenize_chinese_chars": true,
14
+ "tokenizer_class": "DistilBertTokenizer",
15
+ "unk_token": "[UNK]"
16
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54251d32a3b4df832072a0eebc2db76683818d6ccd4e95b9a54d7aa95bb01fab
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff