eskayML/interview_classifier
Browse files- README.md +13 -8
- config.json +6 -14
- model.safetensors +2 -2
- training_args.bin +0 -0
README.md
CHANGED
@@ -18,8 +18,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
18 |
|
19 |
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset.
|
20 |
It achieves the following results on the evaluation set:
|
21 |
-
- Loss:
|
22 |
-
- Accuracy: 0.
|
23 |
|
24 |
## Model description
|
25 |
|
@@ -44,17 +44,22 @@ The following hyperparameters were used during training:
|
|
44 |
- seed: 42
|
45 |
- optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
46 |
- lr_scheduler_type: linear
|
47 |
-
- num_epochs:
|
48 |
|
49 |
### Training results
|
50 |
|
51 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
52 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
53 |
-
| No log | 1.0 |
|
54 |
-
|
|
55 |
-
|
|
56 |
-
|
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
|
60 |
### Framework versions
|
|
|
18 |
|
19 |
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset.
|
20 |
It achieves the following results on the evaluation set:
|
21 |
+
- Loss: 0.4205
|
22 |
+
- Accuracy: 0.8684
|
23 |
|
24 |
## Model description
|
25 |
|
|
|
44 |
- seed: 42
|
45 |
- optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
46 |
- lr_scheduler_type: linear
|
47 |
+
- num_epochs: 10
|
48 |
|
49 |
### Training results
|
50 |
|
51 |
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
52 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
53 |
+
| No log | 1.0 | 95 | 0.8682 | 0.7105 |
|
54 |
+
| No log | 2.0 | 190 | 0.6114 | 0.7632 |
|
55 |
+
| No log | 3.0 | 285 | 0.5425 | 0.8421 |
|
56 |
+
| No log | 4.0 | 380 | 0.5898 | 0.8421 |
|
57 |
+
| No log | 5.0 | 475 | 0.5797 | 0.8421 |
|
58 |
+
| 0.6499 | 6.0 | 570 | 0.5694 | 0.8421 |
|
59 |
+
| 0.6499 | 7.0 | 665 | 0.5204 | 0.8421 |
|
60 |
+
| 0.6499 | 8.0 | 760 | 0.4596 | 0.8421 |
|
61 |
+
| 0.6499 | 9.0 | 855 | 0.4310 | 0.8684 |
|
62 |
+
| 0.6499 | 10.0 | 950 | 0.4205 | 0.8684 |
|
63 |
|
64 |
|
65 |
### Framework versions
|
config.json
CHANGED
@@ -9,23 +9,15 @@
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
-
"0": "
|
13 |
-
"1": "
|
14 |
-
"2": "
|
15 |
-
"3": "IMPLEMENTATION SUSTAINABILITY INFRASTRUCTURE",
|
16 |
-
"4": "CLINICIAN PERSPECTIVE",
|
17 |
-
"5": "PATIENT PERSPECTIVES",
|
18 |
-
"6": "STAFF CHARACTERISTICS"
|
19 |
},
|
20 |
"initializer_range": 0.02,
|
21 |
"label2id": {
|
22 |
-
"
|
23 |
-
"
|
24 |
-
"
|
25 |
-
"ORGANIZATIONAL CHARACTERISTICS": 1,
|
26 |
-
"PATIENT CHARACTERISTICS": 2,
|
27 |
-
"PATIENT PERSPECTIVES": 5,
|
28 |
-
"STAFF CHARACTERISTICS": 6
|
29 |
},
|
30 |
"max_position_embeddings": 512,
|
31 |
"model_type": "distilbert",
|
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
+
"0": "multi_level_org_char",
|
13 |
+
"1": "multi_level_org_perspect",
|
14 |
+
"2": "impl_sust_infra"
|
|
|
|
|
|
|
|
|
15 |
},
|
16 |
"initializer_range": 0.02,
|
17 |
"label2id": {
|
18 |
+
"impl_sust_infra": 2,
|
19 |
+
"multi_level_org_char": 0,
|
20 |
+
"multi_level_org_perspect": 1
|
|
|
|
|
|
|
|
|
21 |
},
|
22 |
"max_position_embeddings": 512,
|
23 |
"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:3e8ff202dd05489f7f736a32e68873846680f058d44943090bd6c1eb4a528454
|
3 |
+
size 267835644
|
training_args.bin
CHANGED
Binary files a/training_args.bin and b/training_args.bin differ
|
|