terzimert commited on
Commit
882c558
1 Parent(s): 6cd12b9

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-multilingual-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "Allah",
14
+ "1": "Book",
15
+ "2": "Clan",
16
+ "3": "Crime",
17
+ "4": "Date",
18
+ "5": "Day",
19
+ "6": "Hell",
20
+ "7": "Loc",
21
+ "8": "Meas",
22
+ "9": "Mon",
23
+ "10": "Month",
24
+ "11": "NatOb",
25
+ "12": "Number",
26
+ "13": "O",
27
+ "14": "Org",
28
+ "15": "Para",
29
+ "16": "Pers",
30
+ "17": "Prophet",
31
+ "18": "Rlig",
32
+ "19": "Sect",
33
+ "20": "Time"
34
+ },
35
+ "initializer_range": 0.02,
36
+ "intermediate_size": 3072,
37
+ "label2id": {
38
+ "Allah": 0,
39
+ "Book": 1,
40
+ "Clan": 2,
41
+ "Crime": 3,
42
+ "Date": 4,
43
+ "Day": 5,
44
+ "Hell": 6,
45
+ "Loc": 7,
46
+ "Meas": 8,
47
+ "Mon": 9,
48
+ "Month": 10,
49
+ "NatOb": 11,
50
+ "Number": 12,
51
+ "O": 13,
52
+ "Org": 14,
53
+ "Para": 15,
54
+ "Pers": 16,
55
+ "Prophet": 17,
56
+ "Rlig": 18,
57
+ "Sect": 19,
58
+ "Time": 20
59
+ },
60
+ "layer_norm_eps": 1e-12,
61
+ "max_position_embeddings": 512,
62
+ "model_type": "bert",
63
+ "num_attention_heads": 12,
64
+ "num_hidden_layers": 12,
65
+ "pad_token_id": 0,
66
+ "pooler_fc_size": 768,
67
+ "pooler_num_attention_heads": 12,
68
+ "pooler_num_fc_layers": 3,
69
+ "pooler_size_per_head": 128,
70
+ "pooler_type": "first_token_transform",
71
+ "position_embedding_type": "absolute",
72
+ "torch_dtype": "float32",
73
+ "transformers_version": "4.26.0",
74
+ "type_vocab_size": 2,
75
+ "use_cache": true,
76
+ "vocab_size": 119547
77
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a438f5fb396596f5201aec1ef0e80b9a3147074acb3384b6298a15471855b5bf
3
+ size 709188141
runs/Jan27_09-04-12_39ccc0c766ba/1674810264.6348767/events.out.tfevents.1674810264.39ccc0c766ba.57174.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6083d296a6c0e46a2ecd272ed813d51570863bd9c6a8f1a1b73635a450489ab
3
+ size 5682
runs/Jan27_09-04-12_39ccc0c766ba/events.out.tfevents.1674810264.39ccc0c766ba.57174.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45db442910cadc40c970f40ea06642698bdf526b3d31340a8301bf169bce573e
3
+ size 6141
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-base-multilingual-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:1826a4adb4ff817a96bbd2cac0c97ae656cd470759e428c42407b78547cf7e19
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff