Cielciel/aift-model-review-multiple-label-classification-new
Browse files- README.md +12 -12
- config.json +16 -14
- model.safetensors +2 -2
- models-new-600/config.json +49 -0
- models-new-600/model.safetensors +3 -0
- models-new-600/special_tokens_map.json +7 -0
- models-new-600/tokenizer.json +0 -0
- models-new-600/tokenizer_config.json +55 -0
- models-new-600/training_args.bin +3 -0
- models-new-600/vocab.txt +0 -0
- runs/Jan29_03-24-01_aift-review-classification-multiple-label/events.out.tfevents.1706498706.aift-review-classification-multiple-label.3311739.0 +3 -0
- runs/Jan29_03-24-01_aift-review-classification-multiple-label/events.out.tfevents.1706498763.aift-review-classification-multiple-label.3311739.1 +3 -0
- tokenizer.json +6 -1
- training_args.bin +1 -1
README.md
CHANGED
@@ -15,8 +15,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
15 |
|
16 |
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset.
|
17 |
It achieves the following results on the evaluation set:
|
18 |
-
- Loss:
|
19 |
-
- Accuracy Thresh: 0.
|
20 |
|
21 |
## Model description
|
22 |
|
@@ -48,16 +48,16 @@ The following hyperparameters were used during training:
|
|
48 |
|
49 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy Thresh |
|
50 |
|:-------------:|:-----:|:----:|:---------------:|:---------------:|
|
51 |
-
|
|
52 |
-
|
|
53 |
-
|
|
54 |
-
|
|
55 |
-
|
|
56 |
-
|
|
57 |
-
|
|
58 |
-
|
|
59 |
-
|
|
60 |
-
|
|
61 |
|
62 |
|
63 |
### Framework versions
|
|
|
15 |
|
16 |
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset.
|
17 |
It achieves the following results on the evaluation set:
|
18 |
+
- Loss: 1.1569
|
19 |
+
- Accuracy Thresh: 0.8636
|
20 |
|
21 |
## Model description
|
22 |
|
|
|
48 |
|
49 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy Thresh |
|
50 |
|:-------------:|:-----:|:----:|:---------------:|:---------------:|
|
51 |
+
| No log | 1.0 | 70 | 2.6518 | 0.3893 |
|
52 |
+
| No log | 2.0 | 140 | 1.6987 | 0.6300 |
|
53 |
+
| No log | 3.0 | 210 | 1.3761 | 0.7193 |
|
54 |
+
| No log | 4.0 | 280 | 1.2348 | 0.7807 |
|
55 |
+
| No log | 5.0 | 350 | 1.1667 | 0.8279 |
|
56 |
+
| No log | 6.0 | 420 | 1.1763 | 0.8393 |
|
57 |
+
| No log | 7.0 | 490 | 1.1202 | 0.8450 |
|
58 |
+
| 1.8776 | 8.0 | 560 | 1.1149 | 0.8521 |
|
59 |
+
| 1.8776 | 9.0 | 630 | 1.1348 | 0.8600 |
|
60 |
+
| 1.8776 | 10.0 | 700 | 1.1569 | 0.8636 |
|
61 |
|
62 |
|
63 |
### Framework versions
|
config.json
CHANGED
@@ -11,25 +11,27 @@
|
|
11 |
"id2label": {
|
12 |
"0": "ads",
|
13 |
"1": "bugs",
|
14 |
-
"2": "
|
15 |
-
"3": "
|
16 |
-
"4": "
|
17 |
-
"5": "
|
18 |
-
"6": "
|
19 |
-
"7": "
|
20 |
-
"8": "
|
|
|
21 |
},
|
22 |
"initializer_range": 0.02,
|
23 |
"label2id": {
|
24 |
"ads": 0,
|
25 |
"bugs": 1,
|
26 |
-
"
|
27 |
-
"
|
28 |
-
"
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"
|
|
|
33 |
},
|
34 |
"max_position_embeddings": 512,
|
35 |
"model_type": "distilbert",
|
|
|
11 |
"id2label": {
|
12 |
"0": "ads",
|
13 |
"1": "bugs",
|
14 |
+
"2": "positive",
|
15 |
+
"3": "negative",
|
16 |
+
"4": "graphic",
|
17 |
+
"5": "gameplay",
|
18 |
+
"6": "request",
|
19 |
+
"7": "neutral",
|
20 |
+
"8": "feedback",
|
21 |
+
"9": "others"
|
22 |
},
|
23 |
"initializer_range": 0.02,
|
24 |
"label2id": {
|
25 |
"ads": 0,
|
26 |
"bugs": 1,
|
27 |
+
"feedback": 8,
|
28 |
+
"gameplay": 5,
|
29 |
+
"graphic": 4,
|
30 |
+
"negative": 3,
|
31 |
+
"neutral": 7,
|
32 |
+
"others": 9,
|
33 |
+
"positive": 2,
|
34 |
+
"request": 6
|
35 |
},
|
36 |
"max_position_embeddings": 512,
|
37 |
"model_type": "distilbert",
|
model.safetensors
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:9f771c4077b70cef7134de5d0ac0d5145e07fc4ef1ea3e2f33f8a18cdcc50833
|
3 |
+
size 267857176
|
models-new-600/config.json
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "ads",
|
13 |
+
"1": "bugs",
|
14 |
+
"2": "positive",
|
15 |
+
"3": "negative",
|
16 |
+
"4": "graphic",
|
17 |
+
"5": "gameplay",
|
18 |
+
"6": "request",
|
19 |
+
"7": "neutral",
|
20 |
+
"8": "feedback",
|
21 |
+
"9": "others"
|
22 |
+
},
|
23 |
+
"initializer_range": 0.02,
|
24 |
+
"label2id": {
|
25 |
+
"ads": 0,
|
26 |
+
"bugs": 1,
|
27 |
+
"feedback": 8,
|
28 |
+
"gameplay": 5,
|
29 |
+
"graphic": 4,
|
30 |
+
"negative": 3,
|
31 |
+
"neutral": 7,
|
32 |
+
"others": 9,
|
33 |
+
"positive": 2,
|
34 |
+
"request": 6
|
35 |
+
},
|
36 |
+
"max_position_embeddings": 512,
|
37 |
+
"model_type": "distilbert",
|
38 |
+
"n_heads": 12,
|
39 |
+
"n_layers": 6,
|
40 |
+
"pad_token_id": 0,
|
41 |
+
"problem_type": "multi_label_classification",
|
42 |
+
"qa_dropout": 0.1,
|
43 |
+
"seq_classif_dropout": 0.2,
|
44 |
+
"sinusoidal_pos_embds": false,
|
45 |
+
"tie_weights_": true,
|
46 |
+
"torch_dtype": "float32",
|
47 |
+
"transformers_version": "4.37.1",
|
48 |
+
"vocab_size": 30522
|
49 |
+
}
|
models-new-600/model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9f771c4077b70cef7134de5d0ac0d5145e07fc4ef1ea3e2f33f8a18cdcc50833
|
3 |
+
size 267857176
|
models-new-600/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 |
+
}
|
models-new-600/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
models-new-600/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 |
+
}
|
models-new-600/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad7b03a35128b5fbd3260767565ab2172354e6653ccf2b69c10415c8dd3d3085
|
3 |
+
size 4347
|
models-new-600/vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
runs/Jan29_03-24-01_aift-review-classification-multiple-label/events.out.tfevents.1706498706.aift-review-classification-multiple-label.3311739.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c2fde4d959373577e49d17c83e755e1ce0cdf34495f2a3a508a5665ac053d8ee
|
3 |
+
size 8884
|
runs/Jan29_03-24-01_aift-review-classification-multiple-label/events.out.tfevents.1706498763.aift-review-classification-multiple-label.3311739.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4cc5c0c4077e8d9fa48f2dd699a81dc82be6ae1a108dd3e6e54c09dcc08ff9c9
|
3 |
+
size 418
|
tokenizer.json
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
-
"truncation":
|
|
|
|
|
|
|
|
|
|
|
4 |
"padding": null,
|
5 |
"added_tokens": [
|
6 |
{
|
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
+
"truncation": {
|
4 |
+
"direction": "Right",
|
5 |
+
"max_length": 512,
|
6 |
+
"strategy": "LongestFirst",
|
7 |
+
"stride": 0
|
8 |
+
},
|
9 |
"padding": null,
|
10 |
"added_tokens": [
|
11 |
{
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4347
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad7b03a35128b5fbd3260767565ab2172354e6653ccf2b69c10415c8dd3d3085
|
3 |
size 4347
|