ahmetayrnc commited on
Commit
f79cb41
1 Parent(s): 49dc5ce

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-large-cased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "gradient_checkpointing": false,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 1024,
13
+ "id2label": {
14
+ "0": "sd",
15
+ "1": "b",
16
+ "2": "sv",
17
+ "3": "%",
18
+ "4": "aa",
19
+ "5": "ba",
20
+ "6": "fc",
21
+ "7": "qw",
22
+ "8": "nn",
23
+ "9": "bk",
24
+ "10": "h",
25
+ "11": "qy^d",
26
+ "12": "bh",
27
+ "13": "^q",
28
+ "14": "bf",
29
+ "15": "fo_o_fw_\"_by_bc",
30
+ "16": "fo_o_fw_by_bc_\"",
31
+ "17": "na",
32
+ "18": "ad",
33
+ "19": "^2",
34
+ "20": "b^m",
35
+ "21": "qo",
36
+ "22": "qh",
37
+ "23": "^h",
38
+ "24": "ar",
39
+ "25": "ng",
40
+ "26": "br",
41
+ "27": "no",
42
+ "28": "fp",
43
+ "29": "qrr",
44
+ "30": "arp_nd",
45
+ "31": "t3",
46
+ "32": "oo_co_cc",
47
+ "33": "aap_am",
48
+ "34": "t1",
49
+ "35": "bd",
50
+ "36": "^g",
51
+ "37": "qw^d",
52
+ "38": "fa",
53
+ "39": "ft",
54
+ "40": "+",
55
+ "41": "x",
56
+ "42": "ny",
57
+ "43": "sv_fx",
58
+ "44": "qy_qr",
59
+ "45": "ba_fe"
60
+ },
61
+ "initializer_range": 0.02,
62
+ "intermediate_size": 4096,
63
+ "label2id": {
64
+ "%": 3,
65
+ "+": 40,
66
+ "^2": 19,
67
+ "^g": 36,
68
+ "^h": 23,
69
+ "^q": 13,
70
+ "aa": 4,
71
+ "aap_am": 33,
72
+ "ad": 18,
73
+ "ar": 24,
74
+ "arp_nd": 30,
75
+ "b": 1,
76
+ "b^m": 20,
77
+ "ba": 5,
78
+ "ba_fe": 45,
79
+ "bd": 35,
80
+ "bf": 14,
81
+ "bh": 12,
82
+ "bk": 9,
83
+ "br": 26,
84
+ "fa": 38,
85
+ "fc": 6,
86
+ "fo_o_fw_\"_by_bc": 15,
87
+ "fo_o_fw_by_bc_\"": 16,
88
+ "fp": 28,
89
+ "ft": 39,
90
+ "h": 10,
91
+ "na": 17,
92
+ "ng": 25,
93
+ "nn": 8,
94
+ "no": 27,
95
+ "ny": 42,
96
+ "oo_co_cc": 32,
97
+ "qh": 22,
98
+ "qo": 21,
99
+ "qrr": 29,
100
+ "qw": 7,
101
+ "qw^d": 37,
102
+ "qy^d": 11,
103
+ "qy_qr": 44,
104
+ "sd": 0,
105
+ "sv": 2,
106
+ "sv_fx": 43,
107
+ "t1": 34,
108
+ "t3": 31,
109
+ "x": 41
110
+ },
111
+ "layer_norm_eps": 1e-12,
112
+ "max_position_embeddings": 512,
113
+ "model_type": "bert",
114
+ "num_attention_heads": 16,
115
+ "num_hidden_layers": 24,
116
+ "pad_token_id": 0,
117
+ "pooler_fc_size": 768,
118
+ "pooler_num_attention_heads": 12,
119
+ "pooler_num_fc_layers": 3,
120
+ "pooler_size_per_head": 128,
121
+ "pooler_type": "first_token_transform",
122
+ "position_embedding_type": "absolute",
123
+ "problem_type": "single_label_classification",
124
+ "torch_dtype": "float32",
125
+ "transformers_version": "4.26.0",
126
+ "type_vocab_size": 2,
127
+ "use_cache": true,
128
+ "vocab_size": 28996
129
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dae2b3b0d38827fd504d71e8baa48d62f7e8aa5f2113739f6c20762fbdacb22
3
+ size 1334644469
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,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "bert-large-cased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "BertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6095556805289be245599970845fd717e294729ead9d01d952f0bf0b10bc568
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff