mtebad commited on
Commit
2923706
1 Parent(s): e1278fb

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
+ "0": "anger",
13
+ "1": "joy",
14
+ "2": "love",
15
+ "3": "sadness",
16
+ "4": "surprise",
17
+ "5": "fear"
18
+ },
19
+ "initializer_range": 0.02,
20
+ "label2id": {
21
+ "anger": 0,
22
+ "fear": 5,
23
+ "joy": 1,
24
+ "love": 2,
25
+ "sadness": 3,
26
+ "surprise": 4
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.30.2",
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:b8db48500c2758ccf778f74f6430860109cea600fc9952fac6c235e417817586
3
+ size 267867821
runs/Jun17_09-59-38_50aadcb747a9/events.out.tfevents.1686995992.50aadcb747a9.236.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:530faae243bc02acace9c95a088f7b55b9ff978ed7bf60ac552d8af48917dc86
3
+ size 4153
runs/Jun17_10-00-39_50aadcb747a9/events.out.tfevents.1686996042.50aadcb747a9.236.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:375ec98eda9c2c802ff24251546264bd403cf157d30c2bbd9aa1c4e64e3fd615
3
+ size 4153
runs/Jun17_10-01-00_50aadcb747a9/events.out.tfevents.1686996063.50aadcb747a9.236.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c685a5b294e6569d993499c67960b0bfdc09addbf6b9a4125c3698379e8e91db
3
+ size 4153
runs/Jun17_10-14-28_50aadcb747a9/events.out.tfevents.1686996871.50aadcb747a9.236.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2f033240a2b122640cf676f86b8c9f96fad71c798cc2cafc53cdd0381efb0c8
3
+ size 88
runs/Jun17_10-15-59_50aadcb747a9/events.out.tfevents.1686996965.50aadcb747a9.9131.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d4a8da98a6620cc7f61f5595f15d267f16e16b76732f36050b1a49ced869924
3
+ size 4153
runs/Jun17_10-19-58_50aadcb747a9/events.out.tfevents.1686997201.50aadcb747a9.9131.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78dc283eb44810b6d48979767b990a55f54e26d87fd586ecd3f37df787de86b3
3
+ size 4153
runs/Jun17_10-24-41_50aadcb747a9/events.out.tfevents.1686997484.50aadcb747a9.9131.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d043137237be851074342ba9bf0d42d2fe654434358da1d346e13588e615604
3
+ size 4790
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:73442f3b494f8d70276c4312a9b03e4d7fa8fc5b805d01222cec39a96a76173a
3
+ size 3963
vocab.txt ADDED
The diff for this file is too large to render. See raw diff