shivi commited on
Commit
c464186
1 Parent(s): aca3bfc

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ },
23
+ "initializer_range": 0.02,
24
+ "label2id": {
25
+ "LABEL_0": 0,
26
+ "LABEL_1": 1,
27
+ "LABEL_2": 2,
28
+ "LABEL_3": 3,
29
+ "LABEL_4": 4,
30
+ "LABEL_5": 5,
31
+ "LABEL_6": 6,
32
+ "LABEL_7": 7,
33
+ "LABEL_8": 8,
34
+ "LABEL_9": 9
35
+ },
36
+ "max_position_embeddings": 512,
37
+ "model_type": "distilbert",
38
+ "n_heads": 12,
39
+ "n_layers": 6,
40
+ "pad_token_id": 0,
41
+ "problem_type": "single_label_classification",
42
+ "qa_dropout": 0.1,
43
+ "seq_classif_dropout": 0.2,
44
+ "sinusoidal_pos_embds": false,
45
+ "tie_weights_": true,
46
+ "torch_dtype": "float32",
47
+ "transformers_version": "4.28.0",
48
+ "vocab_size": 30522
49
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6d4e2a6630ae20c8183ed16460d5bf5ca4f005249c3259f51ade6cb703c1264
3
+ size 267880109
runs/Jun26_12-38-00_a2b8afcf1f4f/1687783287.9642136/events.out.tfevents.1687783287.a2b8afcf1f4f.23849.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:966e215c77f69c99a46000085e8207c186a136991c3b497a932bdb3076e4ec80
3
+ size 5952
runs/Jun26_12-38-00_a2b8afcf1f4f/1687783330.3302166/events.out.tfevents.1687783330.a2b8afcf1f4f.23849.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acb8a4c0d8b2c2a83b00cb88ff25b3b4668c6151fb48b4f87f4845e7d5b8bc61
3
+ size 5952
runs/Jun26_12-38-00_a2b8afcf1f4f/1687783800.8452969/events.out.tfevents.1687783800.a2b8afcf1f4f.23849.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf80ec24adf0bed32f4726e2975a9ffec71a31441c667ccaed50585b159e05e4
3
+ size 5952
runs/Jun26_12-38-00_a2b8afcf1f4f/events.out.tfevents.1687783287.a2b8afcf1f4f.23849.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5305604569bf774e984a2d02dbac637af953d1758e4ff12e704fcb069f61a8f4
3
+ size 4376
runs/Jun26_12-38-00_a2b8afcf1f4f/events.out.tfevents.1687783330.a2b8afcf1f4f.23849.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ca3c0e390fe6598860c81ef04b9ef7362810fc196b6bef67a11de6a6233f10e
3
+ size 4376
runs/Jun26_12-38-00_a2b8afcf1f4f/events.out.tfevents.1687783800.a2b8afcf1f4f.23849.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61e14d94f5d2de1c8adfdd6fa4b6c0133d515949113f3b4076b0927ef8b05464
3
+ size 4376
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
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
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:c660d4338db836d3278a0c4e07f46e6e88adcfd9f001edbdc5c01f3962ca2f00
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff