eskayML/interview_classifier
Browse files- README.md +0 -21
- config.json +20 -7
- model.safetensors +2 -2
- training_args.bin +0 -0
README.md
CHANGED
@@ -4,8 +4,6 @@ license: apache-2.0
|
|
4 |
base_model: distilbert-base-uncased
|
5 |
tags:
|
6 |
- generated_from_trainer
|
7 |
-
metrics:
|
8 |
-
- accuracy
|
9 |
model-index:
|
10 |
- name: interview_classifier
|
11 |
results: []
|
@@ -17,9 +15,6 @@ should probably proofread and complete it, then remove this comment. -->
|
|
17 |
# interview_classifier
|
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 |
|
@@ -46,22 +41,6 @@ The following hyperparameters were used during training:
|
|
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
|
66 |
|
67 |
- Transformers 4.46.2
|
|
|
4 |
base_model: distilbert-base-uncased
|
5 |
tags:
|
6 |
- generated_from_trainer
|
|
|
|
|
7 |
model-index:
|
8 |
- name: interview_classifier
|
9 |
results: []
|
|
|
15 |
# interview_classifier
|
16 |
|
17 |
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset.
|
|
|
|
|
|
|
18 |
|
19 |
## Model description
|
20 |
|
|
|
41 |
- lr_scheduler_type: linear
|
42 |
- num_epochs: 10
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
### Framework versions
|
45 |
|
46 |
- Transformers 4.46.2
|
config.json
CHANGED
@@ -9,22 +9,35 @@
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
-
"0": "
|
13 |
-
"1": "
|
14 |
-
"2": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
},
|
16 |
"initializer_range": 0.02,
|
17 |
"label2id": {
|
18 |
-
"
|
19 |
-
"
|
20 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
},
|
22 |
"max_position_embeddings": 512,
|
23 |
"model_type": "distilbert",
|
24 |
"n_heads": 12,
|
25 |
"n_layers": 6,
|
26 |
"pad_token_id": 0,
|
27 |
-
"problem_type": "single_label_classification",
|
28 |
"qa_dropout": 0.1,
|
29 |
"seq_classif_dropout": 0.2,
|
30 |
"sinusoidal_pos_embds": false,
|
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
+
"0": "Provider Characteristics",
|
13 |
+
"1": "Finanicial Impact",
|
14 |
+
"2": "Imaging modalities in general",
|
15 |
+
"3": "Clinical utility & efficiency-Provider perspective",
|
16 |
+
"4": "Health System Characteristics",
|
17 |
+
"5": "Training",
|
18 |
+
"6": "Value equation",
|
19 |
+
"7": "Workflow related problems",
|
20 |
+
"8": "Credentialing / Quality Assurance Infrastructure",
|
21 |
+
"9": "Patient/Physican interaction in LUS"
|
22 |
},
|
23 |
"initializer_range": 0.02,
|
24 |
"label2id": {
|
25 |
+
"Clinical utility & efficiency-Provider perspective": 3,
|
26 |
+
"Credentialing / Quality Assurance Infrastructure": 8,
|
27 |
+
"Finanicial Impact": 1,
|
28 |
+
"Health System Characteristics": 4,
|
29 |
+
"Imaging modalities in general": 2,
|
30 |
+
"Patient/Physican interaction in LUS": 9,
|
31 |
+
"Provider Characteristics": 0,
|
32 |
+
"Training": 5,
|
33 |
+
"Value equation": 6,
|
34 |
+
"Workflow related problems": 7
|
35 |
},
|
36 |
"max_position_embeddings": 512,
|
37 |
"model_type": "distilbert",
|
38 |
"n_heads": 12,
|
39 |
"n_layers": 6,
|
40 |
"pad_token_id": 0,
|
|
|
41 |
"qa_dropout": 0.1,
|
42 |
"seq_classif_dropout": 0.2,
|
43 |
"sinusoidal_pos_embds": false,
|
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:21d46da7190cee32bf6b5982b0afa63c01df020db1ee3eb240e63338c06d2360
|
3 |
+
size 267857176
|
training_args.bin
CHANGED
Binary files a/training_args.bin and b/training_args.bin differ
|
|