eskayML/interview_classifier
Browse files- README.md +14 -8
- config.json +20 -40
- 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: 2.
|
| 22 |
-
- Accuracy: 0.
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
@@ -42,18 +42,24 @@ The following hyperparameters were used during training:
|
|
| 42 |
- train_batch_size: 2
|
| 43 |
- eval_batch_size: 2
|
| 44 |
- seed: 42
|
| 45 |
-
- optimizer: Use
|
| 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 |
### 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: 2.0881
|
| 22 |
+
- Accuracy: 0.2593
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
|
|
| 42 |
- train_batch_size: 2
|
| 43 |
- eval_batch_size: 2
|
| 44 |
- seed: 42
|
| 45 |
+
- optimizer: Use OptimizerNames.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 | 54 | 2.2885 | 0.1481 |
|
| 54 |
+
| No log | 2.0 | 108 | 2.2611 | 0.1481 |
|
| 55 |
+
| No log | 3.0 | 162 | 2.2186 | 0.2593 |
|
| 56 |
+
| No log | 4.0 | 216 | 2.1877 | 0.2222 |
|
| 57 |
+
| No log | 5.0 | 270 | 2.1593 | 0.2593 |
|
| 58 |
+
| No log | 6.0 | 324 | 2.1332 | 0.2593 |
|
| 59 |
+
| No log | 7.0 | 378 | 2.1185 | 0.2963 |
|
| 60 |
+
| No log | 8.0 | 432 | 2.0965 | 0.2593 |
|
| 61 |
+
| No log | 9.0 | 486 | 2.0914 | 0.2593 |
|
| 62 |
+
| 1.9418 | 10.0 | 540 | 2.0881 | 0.2593 |
|
| 63 |
|
| 64 |
|
| 65 |
### Framework versions
|
config.json
CHANGED
|
@@ -9,49 +9,29 @@
|
|
| 9 |
"dropout": 0.1,
|
| 10 |
"hidden_dim": 3072,
|
| 11 |
"id2label": {
|
| 12 |
-
"0": "
|
| 13 |
-
"1": "
|
| 14 |
-
"2": "
|
| 15 |
-
"3": "
|
| 16 |
-
"4": "
|
| 17 |
-
"5": "
|
| 18 |
-
"6": "
|
| 19 |
-
"7": "
|
| 20 |
-
"8": "
|
| 21 |
-
"9": "
|
| 22 |
-
"10": "JUICY QUOTE",
|
| 23 |
-
"11": "MAGIC WAND",
|
| 24 |
-
"12": "MED MANAGEMENT",
|
| 25 |
-
"13": "OTHER",
|
| 26 |
-
"14": "PATIENT DIGITAL TOOLS",
|
| 27 |
-
"15": "PATIENTS",
|
| 28 |
-
"16": "PROVIDER EDUCATION",
|
| 29 |
-
"17": "ROLE OF OTHER STAFF",
|
| 30 |
-
"18": "TIME CONSTRAINTS",
|
| 31 |
-
"19": "WORKFLOW"
|
| 32 |
},
|
| 33 |
"initializer_range": 0.02,
|
| 34 |
"label2id": {
|
| 35 |
-
"
|
| 36 |
-
"
|
| 37 |
-
"
|
| 38 |
-
"
|
| 39 |
-
"
|
| 40 |
-
"
|
| 41 |
-
"
|
| 42 |
-
"
|
| 43 |
-
"
|
| 44 |
-
"
|
| 45 |
-
"JUICY QUOTE": 10,
|
| 46 |
-
"MAGIC WAND": 11,
|
| 47 |
-
"MED MANAGEMENT": 12,
|
| 48 |
-
"OTHER": 13,
|
| 49 |
-
"PATIENT DIGITAL TOOLS": 14,
|
| 50 |
-
"PATIENTS": 15,
|
| 51 |
-
"PROVIDER EDUCATION": 16,
|
| 52 |
-
"ROLE OF OTHER STAFF": 17,
|
| 53 |
-
"TIME CONSTRAINTS": 18,
|
| 54 |
-
"WORKFLOW": 19
|
| 55 |
},
|
| 56 |
"max_position_embeddings": 512,
|
| 57 |
"model_type": "distilbert",
|
|
|
|
| 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",
|
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:c746289e38cf0dc9354955351115fe44941e54e64e6a5c7bd35c7bd70ab81c5f
|
| 3 |
+
size 267857176
|
training_args.bin
CHANGED
|
Binary files a/training_args.bin and b/training_args.bin differ
|
|
|