End of training
Browse files- README.md +15 -17
- config.json +7 -7
- pytorch_model.bin +2 -2
- tokenizer_config.json +42 -0
- training_args.bin +2 -2
README.md
CHANGED
@@ -23,12 +23,10 @@ model-index:
|
|
23 |
metrics:
|
24 |
- name: F1
|
25 |
type: f1
|
26 |
-
value:
|
27 |
-
f1: 0.8172545518133599
|
28 |
- name: Accuracy
|
29 |
type: accuracy
|
30 |
-
value:
|
31 |
-
accuracy: 0.8328748280605227
|
32 |
---
|
33 |
|
34 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
@@ -38,9 +36,9 @@ should probably proofread and complete it, then remove this comment. -->
|
|
38 |
|
39 |
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the financial_phrasebank dataset.
|
40 |
It achieves the following results on the evaluation set:
|
41 |
-
- Loss: 0.
|
42 |
-
- F1:
|
43 |
-
- Accuracy:
|
44 |
|
45 |
## Model description
|
46 |
|
@@ -69,17 +67,17 @@ The following hyperparameters were used during training:
|
|
69 |
|
70 |
### Training results
|
71 |
|
72 |
-
| Training Loss | Epoch | Step | Validation Loss | F1
|
73 |
-
|
74 |
-
| 0.
|
75 |
-
| 0.
|
76 |
-
| 0.
|
77 |
-
| 0.
|
78 |
|
79 |
|
80 |
### Framework versions
|
81 |
|
82 |
-
- Transformers 4.
|
83 |
-
- Pytorch 2.0
|
84 |
-
- Datasets 2.14.
|
85 |
-
- Tokenizers 0.
|
|
|
23 |
metrics:
|
24 |
- name: F1
|
25 |
type: f1
|
26 |
+
value: 0.8199689183645938
|
|
|
27 |
- name: Accuracy
|
28 |
type: accuracy
|
29 |
+
value: 0.8370013755158184
|
|
|
30 |
---
|
31 |
|
32 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
36 |
|
37 |
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the financial_phrasebank dataset.
|
38 |
It achieves the following results on the evaluation set:
|
39 |
+
- Loss: 0.6190
|
40 |
+
- F1: 0.8200
|
41 |
+
- Accuracy: 0.8370
|
42 |
|
43 |
## Model description
|
44 |
|
|
|
67 |
|
68 |
### Training results
|
69 |
|
70 |
+
| Training Loss | Epoch | Step | Validation Loss | F1 | Accuracy |
|
71 |
+
|:-------------:|:-----:|:----:|:---------------:|:------:|:--------:|
|
72 |
+
| 0.6472 | 0.94 | 100 | 0.5388 | 0.7457 | 0.7558 |
|
73 |
+
| 0.2832 | 1.89 | 200 | 0.4992 | 0.8072 | 0.8177 |
|
74 |
+
| 0.1671 | 2.83 | 300 | 0.5158 | 0.8190 | 0.8377 |
|
75 |
+
| 0.0834 | 3.77 | 400 | 0.6190 | 0.8200 | 0.8370 |
|
76 |
|
77 |
|
78 |
### Framework versions
|
79 |
|
80 |
+
- Transformers 4.34.1
|
81 |
+
- Pytorch 2.1.0+cu118
|
82 |
+
- Datasets 2.14.6
|
83 |
+
- Tokenizers 0.14.1
|
config.json
CHANGED
@@ -10,16 +10,16 @@
|
|
10 |
"hidden_dropout_prob": 0.1,
|
11 |
"hidden_size": 768,
|
12 |
"id2label": {
|
13 |
-
"0": "
|
14 |
-
"1": "
|
15 |
-
"2": "
|
16 |
},
|
17 |
"initializer_range": 0.02,
|
18 |
"intermediate_size": 3072,
|
19 |
"label2id": {
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
},
|
24 |
"layer_norm_eps": 1e-12,
|
25 |
"max_position_embeddings": 512,
|
@@ -30,7 +30,7 @@
|
|
30 |
"position_embedding_type": "absolute",
|
31 |
"problem_type": "single_label_classification",
|
32 |
"torch_dtype": "float32",
|
33 |
-
"transformers_version": "4.
|
34 |
"type_vocab_size": 2,
|
35 |
"use_cache": true,
|
36 |
"vocab_size": 30522
|
|
|
10 |
"hidden_dropout_prob": 0.1,
|
11 |
"hidden_size": 768,
|
12 |
"id2label": {
|
13 |
+
"0": "LABEL_0",
|
14 |
+
"1": "LABEL_1",
|
15 |
+
"2": "LABEL_2"
|
16 |
},
|
17 |
"initializer_range": 0.02,
|
18 |
"intermediate_size": 3072,
|
19 |
"label2id": {
|
20 |
+
"LABEL_0": 0,
|
21 |
+
"LABEL_1": 1,
|
22 |
+
"LABEL_2": 2
|
23 |
},
|
24 |
"layer_norm_eps": 1e-12,
|
25 |
"max_position_embeddings": 512,
|
|
|
30 |
"position_embedding_type": "absolute",
|
31 |
"problem_type": "single_label_classification",
|
32 |
"torch_dtype": "float32",
|
33 |
+
"transformers_version": "4.34.1",
|
34 |
"type_vocab_size": 2,
|
35 |
"use_cache": true,
|
36 |
"vocab_size": 30522
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a4ecf664122564551f8e651898a34638b6857709f6ccb6e58f18dd2083ac6006
|
3 |
+
size 438007022
|
tokenizer_config.json
CHANGED
@@ -1,4 +1,46 @@
|
|
1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"clean_up_tokenization_spaces": true,
|
3 |
"cls_token": "[CLS]",
|
4 |
"do_lower_case": true,
|
|
|
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,
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:12a54bfa31a0ddf94acc27fbd9dd54c1e9b8d1d4a41e7c7338adcfaba3a5c660
|
3 |
+
size 4536
|