chjun commited on
Commit
8902ec5
1 Parent(s): 111c298

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "NEGATIVE",
13
+ "1": "POSITIVE"
14
+ },
15
+ "initializer_range": 0.02,
16
+ "label2id": {
17
+ "NEGATIVE": 0,
18
+ "POSITIVE": 1
19
+ },
20
+ "max_position_embeddings": 512,
21
+ "model_type": "distilbert",
22
+ "n_heads": 12,
23
+ "n_layers": 6,
24
+ "pad_token_id": 0,
25
+ "problem_type": "single_label_classification",
26
+ "qa_dropout": 0.1,
27
+ "seq_classif_dropout": 0.2,
28
+ "sinusoidal_pos_embds": false,
29
+ "tie_weights_": true,
30
+ "torch_dtype": "float32",
31
+ "transformers_version": "4.26.1",
32
+ "vocab_size": 30522
33
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ed97974fb01402b9a74556a4671eaecc23bcd38b5722cca2b85b4cdacb723c6
3
+ size 267854125
runs/Mar15_06-23-59_57d87da97af9/1678861445.910334/events.out.tfevents.1678861445.57d87da97af9.129.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3509feb6d085c6684596fed72c9c8ee05f749f261e79261691857a3a717cd12f
3
+ size 5664
runs/Mar15_06-23-59_57d87da97af9/events.out.tfevents.1678861445.57d87da97af9.129.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d2534463802e6d7c44c32b5ec070fbd5eea6cd78f149523d65216522808f54b
3
+ size 3812
runs/Mar15_06-58-01_57d87da97af9/1678863489.3063116/events.out.tfevents.1678863489.57d87da97af9.129.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1522d16951252e55328a10370956ff1154bf2d6a7a7f37b37c0cff443a542da
3
+ size 5664
runs/Mar15_06-58-01_57d87da97af9/events.out.tfevents.1678863489.57d87da97af9.129.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd67d91c6a78887cfb6e32c20ab5192f74d15fa07daf9e4b421604f756700631
3
+ size 40
runs/Mar15_07-29-24_57d87da97af9/1678865368.4220102/events.out.tfevents.1678865368.57d87da97af9.22799.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afb616d12f1185385cbbcd0131b13e7a2688f5e258fdc89bf7c5096cb191fc97
3
+ size 5664
runs/Mar15_07-29-24_57d87da97af9/events.out.tfevents.1678865368.57d87da97af9.22799.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11ca2357636f07058b8b0f16e0dfbc3f9976aa98f8a7f0d235a19790a6573820
3
+ size 4129
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:d91111c6db928d0dd0676bbef4188add262dd178ccce8b54af50c0c477f0e505
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff