venetis commited on
Commit
cc0034f
1 Parent(s): 7821204

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "LABEL_0",
13
+ "1": "LABEL_1",
14
+ "2": "LABEL_2",
15
+ "3": "LABEL_3",
16
+ "4": "LABEL_4",
17
+ "5": "LABEL_5",
18
+ "6": "LABEL_6",
19
+ "7": "LABEL_7",
20
+ "8": "LABEL_8",
21
+ "9": "LABEL_9",
22
+ "10": "LABEL_10",
23
+ "11": "LABEL_11",
24
+ "12": "LABEL_12",
25
+ "13": "LABEL_13",
26
+ "14": "LABEL_14",
27
+ "15": "LABEL_15",
28
+ "16": "LABEL_16",
29
+ "17": "LABEL_17",
30
+ "18": "LABEL_18",
31
+ "19": "LABEL_19",
32
+ "20": "LABEL_20",
33
+ "21": "LABEL_21",
34
+ "22": "LABEL_22",
35
+ "23": "LABEL_23",
36
+ "24": "LABEL_24"
37
+ },
38
+ "initializer_range": 0.02,
39
+ "label2id": {
40
+ "LABEL_0": 0,
41
+ "LABEL_1": 1,
42
+ "LABEL_10": 10,
43
+ "LABEL_11": 11,
44
+ "LABEL_12": 12,
45
+ "LABEL_13": 13,
46
+ "LABEL_14": 14,
47
+ "LABEL_15": 15,
48
+ "LABEL_16": 16,
49
+ "LABEL_17": 17,
50
+ "LABEL_18": 18,
51
+ "LABEL_19": 19,
52
+ "LABEL_2": 2,
53
+ "LABEL_20": 20,
54
+ "LABEL_21": 21,
55
+ "LABEL_22": 22,
56
+ "LABEL_23": 23,
57
+ "LABEL_24": 24,
58
+ "LABEL_3": 3,
59
+ "LABEL_4": 4,
60
+ "LABEL_5": 5,
61
+ "LABEL_6": 6,
62
+ "LABEL_7": 7,
63
+ "LABEL_8": 8,
64
+ "LABEL_9": 9
65
+ },
66
+ "max_position_embeddings": 512,
67
+ "model_type": "distilbert",
68
+ "n_heads": 12,
69
+ "n_layers": 6,
70
+ "pad_token_id": 0,
71
+ "problem_type": "single_label_classification",
72
+ "qa_dropout": 0.1,
73
+ "seq_classif_dropout": 0.2,
74
+ "sinusoidal_pos_embds": false,
75
+ "tie_weights_": true,
76
+ "torch_dtype": "float32",
77
+ "transformers_version": "4.26.1",
78
+ "vocab_size": 30522
79
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3eb0ede15a074f6a1af81735bcfa9cb93a14e5ce74100693c99ab6490f62b031
3
+ size 267926253
runs/Mar10_12-04-59_96c678b480cf/1678449907.1947217/events.out.tfevents.1678449907.96c678b480cf.1488.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87e3fca5def08dd3439fdfe3d3e35fe156f5a72535d6c536f0481d91cceac06e
3
+ size 5767
runs/Mar10_12-04-59_96c678b480cf/events.out.tfevents.1678449907.96c678b480cf.1488.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20b42a3976b2797e8176b36a641f8356c6ff66008522364e3cf082a769a99e33
3
+ size 7789
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": "distilbert-base-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": "DistilBertTokenizer",
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:808e552eb625c6ec3c874089a77640e6c92c51331062641e0f44dd4481747c1f
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff