mpalaval commited on
Commit
b38ffd7
1 Parent(s): 24dfe26

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForMultilabelSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": [
12
+ {
13
+ "0": "admiration",
14
+ "1": "amusement",
15
+ "10": "disapproval",
16
+ "11": "disgust",
17
+ "12": "embarrassment",
18
+ "13": "excitement",
19
+ "14": "fear",
20
+ "15": "gratitude",
21
+ "16": "grief",
22
+ "17": "joy",
23
+ "18": "love",
24
+ "19": "nervousness",
25
+ "2": "anger",
26
+ "20": "optimism",
27
+ "21": "pride",
28
+ "22": "realization",
29
+ "23": "relief",
30
+ "24": "remorse",
31
+ "25": "sadness",
32
+ "26": "surprise",
33
+ "27": "neutral",
34
+ "3": "annoyance",
35
+ "4": "approval",
36
+ "5": "caring",
37
+ "6": "confusion",
38
+ "7": "curiosity",
39
+ "8": "desire",
40
+ "9": "disappointment"
41
+ }
42
+ ],
43
+ "initializer_range": 0.02,
44
+ "label2id": {
45
+ "admiration": 0,
46
+ "amusement": 1,
47
+ "anger": 2,
48
+ "annoyance": 3,
49
+ "approval": 4,
50
+ "caring": 5,
51
+ "confusion": 6,
52
+ "curiosity": 7,
53
+ "desire": 8,
54
+ "disappointment": 9,
55
+ "disapproval": 10,
56
+ "disgust": 11,
57
+ "embarrassment": 12,
58
+ "excitement": 13,
59
+ "fear": 14,
60
+ "gratitude": 15,
61
+ "grief": 16,
62
+ "joy": 17,
63
+ "love": 18,
64
+ "nervousness": 19,
65
+ "neutral": 27,
66
+ "optimism": 20,
67
+ "pride": 21,
68
+ "realization": 22,
69
+ "relief": 23,
70
+ "remorse": 24,
71
+ "sadness": 25,
72
+ "surprise": 26
73
+ },
74
+ "max_position_embeddings": 512,
75
+ "model_type": "distilbert",
76
+ "n_heads": 12,
77
+ "n_layers": 6,
78
+ "pad_token_id": 0,
79
+ "qa_dropout": 0.1,
80
+ "seq_classif_dropout": 0.2,
81
+ "sinusoidal_pos_embds": false,
82
+ "tie_weights_": true,
83
+ "torch_dtype": "float32",
84
+ "transformers_version": "4.35.1",
85
+ "vocab_size": 30522
86
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2280792d36f3b06479d06c22a63c782ebf0600a7047b3ea4e2527d566ad1fe1d
3
+ size 267912544
runs/Nov15_02-07-47_89bfac40a02e/events.out.tfevents.1700014105.89bfac40a02e.1456.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b35e51b9eb28280a63ebb6c0d3b01892d7f6341580f2d66d5d3572b6ebbdbc2
3
+ size 6143
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,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e88732b27c565a9c2fb0bc09e57b159ef6bc0f0eff810fe65ad8661768bf6836
3
+ size 4664
vocab.txt ADDED
The diff for this file is too large to render. See raw diff