Josh98 commited on
Commit
580c674
·
1 Parent(s): 23855e7

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "anger": 3,
13
+ "fear": 4,
14
+ "joy": 1,
15
+ "love": 2,
16
+ "sadness": 0,
17
+ "surprise": 5
18
+ },
19
+ "initializer_range": 0.02,
20
+ "label2id": {
21
+ "0": "sadness",
22
+ "1": "joy",
23
+ "2": "love",
24
+ "3": "anger",
25
+ "4": "fear",
26
+ "5": "surprise"
27
+ },
28
+ "max_position_embeddings": 512,
29
+ "model_type": "distilbert",
30
+ "n_heads": 12,
31
+ "n_layers": 6,
32
+ "pad_token_id": 0,
33
+ "problem_type": "single_label_classification",
34
+ "qa_dropout": 0.1,
35
+ "seq_classif_dropout": 0.2,
36
+ "sinusoidal_pos_embds": false,
37
+ "tie_weights_": true,
38
+ "torch_dtype": "float32",
39
+ "transformers_version": "4.27.0.dev0",
40
+ "vocab_size": 30522
41
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3601165062335cdc345c39c9006b55c9d0d37d02e7561803971bb212c0deb93
3
+ size 267867821
runs/Mar11_00-18-56_7e44c955d6cf/1678494224.698926/events.out.tfevents.1678494224.7e44c955d6cf.5079.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16476333b935bba91469d8f69d9368a65d2f927312b30f19ad2b00f7c9d23e15
3
+ size 5799
runs/Mar11_00-18-56_7e44c955d6cf/events.out.tfevents.1678494224.7e44c955d6cf.5079.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfc94ff6d19f900987937855f02805669465c200935154c90795e363c5dc0f20
3
+ size 4077
runs/Mar11_00-27-13_7e44c955d6cf/1678494438.0713751/events.out.tfevents.1678494438.7e44c955d6cf.5079.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4af640abefe74d42efcb9ed8f6ff412ae2883cc3679d45bfd28600904803d7a3
3
+ size 5799
runs/Mar11_00-27-13_7e44c955d6cf/events.out.tfevents.1678494438.7e44c955d6cf.5079.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cd60ae183ec1ea495f7dc6707db3ae880738119f798d312f6e55f0f884ddc80
3
+ size 4077
runs/Mar11_00-59-15_7e44c955d6cf/1678496399.1874442/events.out.tfevents.1678496399.7e44c955d6cf.5079.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9eef41f94dd9c5492677e8502ad5b753338acfb22bbcc044a49e3ad833502dc
3
+ size 5799
runs/Mar11_00-59-15_7e44c955d6cf/events.out.tfevents.1678496399.7e44c955d6cf.5079.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3d6328335ed6323083d4c7b2126e72fa03e1182dee3f56a43487a905f4a7596
3
+ size 4557
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": true,
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": "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:c0fdb2357c4cf92b68217ae42c104abcad3d348af544aee9065c564f565e89fb
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff