SimoneJLaudani commited on
Commit
0aebba5
·
verified ·
1 Parent(s): b944e53

End of training

Browse files
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: bert-base-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - precision
8
+ - recall
9
+ - f1
10
+ - accuracy
11
+ model-index:
12
+ - name: trainer8
13
+ results: []
14
+ ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+ # trainer8
20
+
21
+ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the None dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 1.7360
24
+ - Precision: 0.2889
25
+ - Recall: 0.2738
26
+ - F1: 0.2509
27
+ - Accuracy: 0.2738
28
+
29
+ ## Model description
30
+
31
+ More information needed
32
+
33
+ ## Intended uses & limitations
34
+
35
+ More information needed
36
+
37
+ ## Training and evaluation data
38
+
39
+ More information needed
40
+
41
+ ## Training procedure
42
+
43
+ ### Training hyperparameters
44
+
45
+ The following hyperparameters were used during training:
46
+ - learning_rate: 1e-05
47
+ - train_batch_size: 8
48
+ - eval_batch_size: 8
49
+ - seed: 42
50
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
+ - lr_scheduler_type: linear
52
+ - num_epochs: 7
53
+
54
+ ### Training results
55
+
56
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
57
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
58
+ | 2.0043 | 0.57 | 30 | 1.9531 | 0.0204 | 0.1429 | 0.0357 | 0.1429 |
59
+ | 1.9325 | 1.13 | 60 | 1.9080 | 0.1615 | 0.2143 | 0.1460 | 0.2143 |
60
+ | 1.8774 | 1.7 | 90 | 1.8684 | 0.3164 | 0.2143 | 0.1910 | 0.2143 |
61
+ | 1.835 | 2.26 | 120 | 1.7834 | 0.1535 | 0.2619 | 0.1825 | 0.2619 |
62
+ | 1.7079 | 2.83 | 150 | 1.7444 | 0.2040 | 0.2857 | 0.2180 | 0.2857 |
63
+ | 1.6089 | 3.4 | 180 | 1.7426 | 0.3652 | 0.3214 | 0.2789 | 0.3214 |
64
+ | 1.6118 | 3.96 | 210 | 1.7444 | 0.2285 | 0.25 | 0.1993 | 0.25 |
65
+ | 1.5414 | 4.53 | 240 | 1.7426 | 0.2625 | 0.3095 | 0.2704 | 0.3095 |
66
+ | 1.5095 | 5.09 | 270 | 1.7443 | 0.3820 | 0.2619 | 0.2186 | 0.2619 |
67
+ | 1.4397 | 5.66 | 300 | 1.7368 | 0.2545 | 0.2976 | 0.2382 | 0.2976 |
68
+ | 1.4319 | 6.23 | 330 | 1.7444 | 0.3844 | 0.2738 | 0.2566 | 0.2738 |
69
+ | 1.4072 | 6.79 | 360 | 1.7384 | 0.3680 | 0.2857 | 0.2588 | 0.2857 |
70
+
71
+
72
+ ### Framework versions
73
+
74
+ - Transformers 4.38.2
75
+ - Pytorch 2.1.0+cu121
76
+ - Datasets 2.18.0
77
+ - Tokenizers 0.15.2
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "attention_probs_dropout_prob": 0.1,
9
+ "dim": 768,
10
+ "dropout": 0.1,
11
+ "gradient_checkpointing": false,
12
+ "hidden_act": "gelu",
13
+ "hidden_dim": 3072,
14
+ "hidden_dropout_prob": 0.1,
15
+ "id2label": {
16
+ "0": "anger",
17
+ "1": "fear",
18
+ "2": "joy",
19
+ "3": "love",
20
+ "4": "neutral",
21
+ "5": "sadness",
22
+ "6": "surprise"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 3072,
26
+ "label2id": {
27
+ "LABEL_0": 0,
28
+ "LABEL_1": 1,
29
+ "LABEL_2": 2,
30
+ "LABEL_3": 3,
31
+ "LABEL_4": 4,
32
+ "LABEL_5": 5,
33
+ "LABEL_6": 6
34
+ },
35
+ "layer_norm_eps": 1e-12,
36
+ "max_position_embeddings": 512,
37
+ "model_type": "distilbert",
38
+ "n_heads": 12,
39
+ "n_layers": 12,
40
+ "pad_token_id": 0,
41
+ "position_embedding_type": "absolute",
42
+ "problem_type": "single_label_classification",
43
+ "qa_dropout": 0.1,
44
+ "seq_classif_dropout": 0.2,
45
+ "sinusoidal_pos_embds": false,
46
+ "torch_dtype": "float32",
47
+ "transformers_version": "4.38.2",
48
+ "type_vocab_size": 2,
49
+ "use_cache": true,
50
+ "vocab_size": 30522
51
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:239de5ddc5a7f65549b2ed59583c44ecf6fae1c91e8f0fd6ab6a0522a5c469c5
3
+ size 437968636
runs/Mar12_22-37-29_2530b40b6199/events.out.tfevents.1710283053.2530b40b6199.296.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c80841cf6716fe3c79ef0123dbfef2621bbfdb8a306564c29c0854ca28afb528
3
+ size 6395
runs/Mar12_23-06-01_2530b40b6199/events.out.tfevents.1710284775.2530b40b6199.296.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61befb92b4771dc050067ecf5da9a9347c023a72dc490e19b6d716af334e5801
3
+ size 13456
runs/Mar12_23-06-01_2530b40b6199/events.out.tfevents.1710287517.2530b40b6199.296.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a48afedf6a71f8974d9cddebe87a45330279de0ab15abe8ae0f7c013d5de640
3
+ size 560
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_config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 512,
50
+ "never_split": null,
51
+ "pad_token": "[PAD]",
52
+ "sep_token": "[SEP]",
53
+ "strip_accents": null,
54
+ "tokenize_chinese_chars": true,
55
+ "tokenizer_class": "DistilBertTokenizer",
56
+ "unk_token": "[UNK]"
57
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a350d98d9c50022f698d1f446e02d7111b095a5de05b2ea056fe82e41fc3f8ad
3
+ size 4856
vocab.txt ADDED
The diff for this file is too large to render. See raw diff