terzimert commited on
Commit
aa55054
1 Parent(s): 23eae95

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.27.3",
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:7e8759672d44d8d34c2349e224490f06227a88859f23a700c9fb899bc837fc19
3
+ size 709188141
runs/Mar24_09-02-35_99c8a8e6c3f0/1679648572.6682553/events.out.tfevents.1679648572.99c8a8e6c3f0.338.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:819e0e7fb8f78933d7bbc2aa8a117164dccf366cda436af38756af6013b51944
3
+ size 5811
runs/Mar24_09-02-35_99c8a8e6c3f0/events.out.tfevents.1679648572.99c8a8e6c3f0.338.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:201efe8968011e50a155e968727493a99bda9ef5bf628d713bf083adcec99125
3
+ size 5955
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "special_tokens_map_file": null,
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ac776a156d60c3cb89bf6292784a319fb947ce903360b7a025d7c265462fc4c
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff