gregorgabrovsek commited on
Commit
162b2e3
1 Parent(s): b5a60d4

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-multilingual-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
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": "0",
14
+ "1": "1",
15
+ "2": "2",
16
+ "3": "3",
17
+ "4": "4",
18
+ "5": "5",
19
+ "6": "6",
20
+ "7": "7",
21
+ "8": "8",
22
+ "9": "9",
23
+ "10": "10",
24
+ "11": "11",
25
+ "12": "12",
26
+ "13": "13",
27
+ "14": "14",
28
+ "15": "15",
29
+ "16": "16",
30
+ "17": "17",
31
+ "18": "18",
32
+ "19": "19",
33
+ "20": "20",
34
+ "21": "21",
35
+ "22": "22",
36
+ "23": "23",
37
+ "24": "24"
38
+ },
39
+ "initializer_range": 0.02,
40
+ "intermediate_size": 3072,
41
+ "label2id": {
42
+ "0": 0,
43
+ "1": 1,
44
+ "10": 10,
45
+ "11": 11,
46
+ "12": 12,
47
+ "13": 13,
48
+ "14": 14,
49
+ "15": 15,
50
+ "16": 16,
51
+ "17": 17,
52
+ "18": 18,
53
+ "19": 19,
54
+ "2": 2,
55
+ "20": 20,
56
+ "21": 21,
57
+ "22": 22,
58
+ "23": 23,
59
+ "24": 24,
60
+ "3": 3,
61
+ "4": 4,
62
+ "5": 5,
63
+ "6": 6,
64
+ "7": 7,
65
+ "8": 8,
66
+ "9": 9
67
+ },
68
+ "layer_norm_eps": 1e-12,
69
+ "max_position_embeddings": 512,
70
+ "model_type": "bert",
71
+ "num_attention_heads": 12,
72
+ "num_hidden_layers": 12,
73
+ "pad_token_id": 0,
74
+ "pooler_fc_size": 768,
75
+ "pooler_num_attention_heads": 12,
76
+ "pooler_num_fc_layers": 3,
77
+ "pooler_size_per_head": 128,
78
+ "pooler_type": "first_token_transform",
79
+ "position_embedding_type": "absolute",
80
+ "problem_type": "single_label_classification",
81
+ "torch_dtype": "float32",
82
+ "transformers_version": "4.26.1",
83
+ "type_vocab_size": 2,
84
+ "use_cache": true,
85
+ "vocab_size": 105879
86
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79c5d243b55c5040198c647ad9e7892673c69f61264722ee4c6fe917b3e2610a
3
+ size 669576791
runs/Aug19_13-38-30_wn215.arnes.si/1692445133.606298/events.out.tfevents.1692445133.wn215.arnes.si.336913.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a270a998c89ef6ae1824ce679c4b9dc213edc5e7bb2d71137caee0dc8fc68f7f
3
+ size 5888
runs/Aug19_13-38-30_wn215.arnes.si/events.out.tfevents.1692445133.wn215.arnes.si.336913.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bca157417ec75e0a9a78ac1b1dd319796995a74bd0d3ead4220fe5fd0ca3dd3
3
+ size 5886
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": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "bert-base-multilingual-uncased",
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:3964db9fbaea85f6a332449e124898206bdc8047f87bb04bfc58b93cec70071f
3
+ size 3567
vocab.txt ADDED
The diff for this file is too large to render. See raw diff