cp-gustavo commited on
Commit
f8cb679
·
verified ·
1 Parent(s): 5d9ce6b

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForTokenClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-T005",
14
+ "2": "I-T005",
15
+ "3": "B-T007",
16
+ "4": "I-T007",
17
+ "5": "B-T017",
18
+ "6": "I-T017",
19
+ "7": "B-T022",
20
+ "8": "I-T022",
21
+ "9": "B-T031",
22
+ "10": "I-T031",
23
+ "11": "B-T033",
24
+ "12": "I-T033",
25
+ "13": "B-T037",
26
+ "14": "I-T037",
27
+ "15": "B-T038",
28
+ "16": "I-T038",
29
+ "17": "B-T058",
30
+ "18": "I-T058",
31
+ "19": "B-T062",
32
+ "20": "I-T062",
33
+ "21": "B-T074",
34
+ "22": "I-T074",
35
+ "23": "B-T082",
36
+ "24": "I-T082",
37
+ "25": "B-T091",
38
+ "26": "I-T091",
39
+ "27": "B-T092",
40
+ "28": "I-T092",
41
+ "29": "B-T097",
42
+ "30": "I-T097",
43
+ "31": "B-T098",
44
+ "32": "I-T098",
45
+ "33": "B-T103",
46
+ "34": "I-T103",
47
+ "35": "B-T168",
48
+ "36": "I-T168",
49
+ "37": "B-T170",
50
+ "38": "I-T170",
51
+ "39": "B-T201",
52
+ "40": "I-T201",
53
+ "41": "B-T204",
54
+ "42": "I-T204"
55
+ },
56
+ "initializer_range": 0.02,
57
+ "intermediate_size": 3072,
58
+ "label2id": {
59
+ "B-T005": 1,
60
+ "B-T007": 3,
61
+ "B-T017": 5,
62
+ "B-T022": 7,
63
+ "B-T031": 9,
64
+ "B-T033": 11,
65
+ "B-T037": 13,
66
+ "B-T038": 15,
67
+ "B-T058": 17,
68
+ "B-T062": 19,
69
+ "B-T074": 21,
70
+ "B-T082": 23,
71
+ "B-T091": 25,
72
+ "B-T092": 27,
73
+ "B-T097": 29,
74
+ "B-T098": 31,
75
+ "B-T103": 33,
76
+ "B-T168": 35,
77
+ "B-T170": 37,
78
+ "B-T201": 39,
79
+ "B-T204": 41,
80
+ "I-T005": 2,
81
+ "I-T007": 4,
82
+ "I-T017": 6,
83
+ "I-T022": 8,
84
+ "I-T031": 10,
85
+ "I-T033": 12,
86
+ "I-T037": 14,
87
+ "I-T038": 16,
88
+ "I-T058": 18,
89
+ "I-T062": 20,
90
+ "I-T074": 22,
91
+ "I-T082": 24,
92
+ "I-T091": 26,
93
+ "I-T092": 28,
94
+ "I-T097": 30,
95
+ "I-T098": 32,
96
+ "I-T103": 34,
97
+ "I-T168": 36,
98
+ "I-T170": 38,
99
+ "I-T201": 40,
100
+ "I-T204": 42,
101
+ "O": 0
102
+ },
103
+ "layer_norm_eps": 1e-12,
104
+ "max_position_embeddings": 512,
105
+ "model_type": "bert",
106
+ "num_attention_heads": 12,
107
+ "num_hidden_layers": 12,
108
+ "pad_token_id": 0,
109
+ "position_embedding_type": "absolute",
110
+ "torch_dtype": "float32",
111
+ "transformers_version": "4.51.1",
112
+ "type_vocab_size": 2,
113
+ "use_cache": true,
114
+ "vocab_size": 28996
115
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64d48316636ea99146af0b8f510787d45422fbfa782bebdb9e5a39dcaa2484dc
3
+ size 431034324
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,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": false,
48
+ "extra_special_tokens": {},
49
+ "mask_token": "[MASK]",
50
+ "model_max_length": 512,
51
+ "never_split": null,
52
+ "pad_token": "[PAD]",
53
+ "sep_token": "[SEP]",
54
+ "strip_accents": null,
55
+ "tokenize_chinese_chars": true,
56
+ "tokenizer_class": "BertTokenizer",
57
+ "unk_token": "[UNK]"
58
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c40bfd1c72a2a67c1dd55b435fe99d13aa4086dcff616db8726f41d86063abaa
3
+ size 5240
vocab.txt ADDED
The diff for this file is too large to render. See raw diff