Buseak commited on
Commit
b741edc
1 Parent(s): 8ee23c5

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "dbmdz/bert-base-turkish-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "INTJ",
13
+ "1": "PART",
14
+ "2": "VERB",
15
+ "3": "ADP",
16
+ "4": "ADJ",
17
+ "5": "X",
18
+ "6": "PUNCT",
19
+ "7": "NOUN",
20
+ "8": "NUM",
21
+ "9": "ADV",
22
+ "10": "CCONJ",
23
+ "11": "SCONJ",
24
+ "12": "DET",
25
+ "13": "AUX",
26
+ "14": "PRON",
27
+ "15": "PROPN"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "intermediate_size": 3072,
31
+ "label2id": {
32
+ "ADJ": 4,
33
+ "ADP": 3,
34
+ "ADV": 9,
35
+ "AUX": 13,
36
+ "CCONJ": 10,
37
+ "DET": 12,
38
+ "INTJ": 0,
39
+ "NOUN": 7,
40
+ "NUM": 8,
41
+ "PART": 1,
42
+ "PRON": 14,
43
+ "PROPN": 15,
44
+ "PUNCT": 6,
45
+ "SCONJ": 11,
46
+ "VERB": 2,
47
+ "X": 5
48
+ },
49
+ "layer_norm_eps": 1e-12,
50
+ "max_position_embeddings": 512,
51
+ "model_type": "bert",
52
+ "num_attention_heads": 12,
53
+ "num_hidden_layers": 12,
54
+ "pad_token_id": 0,
55
+ "position_embedding_type": "absolute",
56
+ "torch_dtype": "float32",
57
+ "transformers_version": "4.35.2",
58
+ "type_vocab_size": 2,
59
+ "use_cache": true,
60
+ "vocab_size": 32000
61
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f630efb44d5d10c556669b9abbbbee76bd6addb65fa316774b0c875cac0bc67
3
+ size 440179576
runs/Dec31_13-08-20_2fd172ee26d9/events.out.tfevents.1704028100.2fd172ee26d9.3672.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c5fab9ebedb4ca5c4d47dc9469c796d1cf5220ff27f3791f496a6cdff02636c
3
+ size 5167
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
+ "1": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "4": {
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
+ "mask_token": "[MASK]",
49
+ "max_len": 512,
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:fb3fe2c6294b5c5923d23e143a08c2cac2fc6dff3b7970c24bbe3a403c3e08f3
3
+ size 4600
vocab.txt ADDED
The diff for this file is too large to render. See raw diff