reichenbach
commited on
Commit
•
cd2a4b9
1
Parent(s):
8b55a84
Training in progress, epoch 2
Browse files- config.json +45 -0
- model.safetensors +3 -0
- runs/Nov28_06-18-25_88217fac21a6/events.out.tfevents.1701152306.88217fac21a6.47.0 +3 -0
- runs/Nov28_06-20-17_88217fac21a6/events.out.tfevents.1701152417.88217fac21a6.47.1 +3 -0
- runs/Nov28_07-14-05_bca7ae891357/events.out.tfevents.1701155658.bca7ae891357.47.0 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +55 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "Curious to dive deeper",
|
13 |
+
"1": "Neutral",
|
14 |
+
"2": "Surprised",
|
15 |
+
"3": "Happy",
|
16 |
+
"4": "Sad",
|
17 |
+
"5": "Disgusted",
|
18 |
+
"6": "Fearful",
|
19 |
+
"7": "Angry"
|
20 |
+
},
|
21 |
+
"initializer_range": 0.02,
|
22 |
+
"label2id": {
|
23 |
+
"Angry": 7,
|
24 |
+
"Curious to dive deeper": 0,
|
25 |
+
"Disgusted": 5,
|
26 |
+
"Fearful": 6,
|
27 |
+
"Happy": 3,
|
28 |
+
"Neutral": 1,
|
29 |
+
"Sad": 4,
|
30 |
+
"Surprised": 2
|
31 |
+
},
|
32 |
+
"max_position_embeddings": 512,
|
33 |
+
"model_type": "distilbert",
|
34 |
+
"n_heads": 12,
|
35 |
+
"n_layers": 6,
|
36 |
+
"pad_token_id": 0,
|
37 |
+
"problem_type": "single_label_classification",
|
38 |
+
"qa_dropout": 0.1,
|
39 |
+
"seq_classif_dropout": 0.2,
|
40 |
+
"sinusoidal_pos_embds": false,
|
41 |
+
"tie_weights_": true,
|
42 |
+
"torch_dtype": "float32",
|
43 |
+
"transformers_version": "4.35.0",
|
44 |
+
"vocab_size": 30522
|
45 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29934047b1e3ef98c191a7605664f2cc004510c38477f976d61d8b66b809ada2
|
3 |
+
size 267851024
|
runs/Nov28_06-18-25_88217fac21a6/events.out.tfevents.1701152306.88217fac21a6.47.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fa0b0701e50f555afda77a825222dc8f50991c18d3db28a37874c6a62e04b4cf
|
3 |
+
size 4513
|
runs/Nov28_06-20-17_88217fac21a6/events.out.tfevents.1701152417.88217fac21a6.47.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4deb70763369320a8671b354fc705e7d0cf0c1db5a050422df1fc690c4b47d78
|
3 |
+
size 19634
|
runs/Nov28_07-14-05_bca7ae891357/events.out.tfevents.1701155658.bca7ae891357.47.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3873577ed21d11168838c7d9a27599695128db633058c8a14727200752ca0046
|
3 |
+
size 10975
|
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:4bfc4b598f4f8a4731697f8cfd34b7808b5e1fe67553e13de8d3bea40a535d28
|
3 |
+
size 4155
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|