pingkeest commited on
Commit
87ee21b
1 Parent(s): 4a62dbd

Training in progress, step 500

Browse files
config.json ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "1000",
14
+ "1": "1001",
15
+ "2": "1002",
16
+ "3": "1003",
17
+ "4": "1004",
18
+ "5": "1005",
19
+ "6": "1006",
20
+ "7": "1007",
21
+ "8": "1008",
22
+ "9": "1009",
23
+ "10": "1010",
24
+ "11": "1011",
25
+ "12": "1012",
26
+ "13": "1013",
27
+ "14": "1014",
28
+ "15": "1015",
29
+ "16": "1016",
30
+ "17": "1017",
31
+ "18": "1018",
32
+ "19": "1019",
33
+ "20": "1020",
34
+ "21": "1021",
35
+ "22": "1022",
36
+ "23": "1023",
37
+ "24": "1024",
38
+ "25": "1025",
39
+ "26": "1026",
40
+ "27": "1027",
41
+ "28": "1028",
42
+ "29": "1029",
43
+ "30": "1030",
44
+ "31": "1031",
45
+ "32": "1032",
46
+ "33": "1033",
47
+ "34": "1034",
48
+ "35": "1035",
49
+ "36": "1036",
50
+ "37": "1037",
51
+ "38": "1038",
52
+ "39": "1039",
53
+ "40": "1041",
54
+ "41": "1042"
55
+ },
56
+ "initializer_range": 0.02,
57
+ "intermediate_size": 3072,
58
+ "label2id": {
59
+ "1000": 0,
60
+ "1001": 1,
61
+ "1002": 2,
62
+ "1003": 3,
63
+ "1004": 4,
64
+ "1005": 5,
65
+ "1006": 6,
66
+ "1007": 7,
67
+ "1008": 8,
68
+ "1009": 9,
69
+ "1010": 10,
70
+ "1011": 11,
71
+ "1012": 12,
72
+ "1013": 13,
73
+ "1014": 14,
74
+ "1015": 15,
75
+ "1016": 16,
76
+ "1017": 17,
77
+ "1018": 18,
78
+ "1019": 19,
79
+ "1020": 20,
80
+ "1021": 21,
81
+ "1022": 22,
82
+ "1023": 23,
83
+ "1024": 24,
84
+ "1025": 25,
85
+ "1026": 26,
86
+ "1027": 27,
87
+ "1028": 28,
88
+ "1029": 29,
89
+ "1030": 30,
90
+ "1031": 31,
91
+ "1032": 32,
92
+ "1033": 33,
93
+ "1034": 34,
94
+ "1035": 35,
95
+ "1036": 36,
96
+ "1037": 37,
97
+ "1038": 38,
98
+ "1039": 39,
99
+ "1041": 40,
100
+ "1042": 41
101
+ },
102
+ "layer_norm_eps": 1e-12,
103
+ "max_position_embeddings": 512,
104
+ "model_type": "bert",
105
+ "num_attention_heads": 12,
106
+ "num_hidden_layers": 12,
107
+ "pad_token_id": 0,
108
+ "position_embedding_type": "absolute",
109
+ "problem_type": "multi_label_classification",
110
+ "torch_dtype": "float32",
111
+ "transformers_version": "4.45.2",
112
+ "type_vocab_size": 2,
113
+ "use_cache": true,
114
+ "vocab_size": 30522
115
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:121342553ce20963345a4ed35f43d7aaea141cd24786b49857999cd4e22d4a59
3
+ size 438081688
runs/Nov06_12-47-36_PingkeePC/events.out.tfevents.1730868459.PingkeePC ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c840d92b3be7a63323d3ad9970afbcbdb66716708901543bc92923a6a5f11dab
3
+ size 7452
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_config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 512,
50
+ "never_split": null,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "strip_accents": null,
54
+ "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "BertTokenizer",
56
+ "unk_token": "[UNK]"
57
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38da5350e117e48c006a5d425af8365e498a4abc3730d2f7eb2a26680433eac7
3
+ size 5240
vocab.txt ADDED
The diff for this file is too large to render. See raw diff