eskayML commited on
Commit
34b909a
·
verified ·
1 Parent(s): 27f8af5

eskayML/interview_classifier

Browse files
Files changed (4) hide show
  1. README.md +14 -8
  2. config.json +20 -40
  3. model.safetensors +2 -2
  4. 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.1799
22
- - Accuracy: 0.3491
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 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: 4
48
 
49
  ### Training results
50
 
51
  | Training Loss | Epoch | Step | Validation Loss | Accuracy |
52
  |:-------------:|:-----:|:----:|:---------------:|:--------:|
53
- | No log | 1.0 | 463 | 2.4565 | 0.2155 |
54
- | 2.5921 | 2.0 | 926 | 2.2935 | 0.3060 |
55
- | 2.2523 | 3.0 | 1389 | 2.2197 | 0.3362 |
56
- | 2.0511 | 4.0 | 1852 | 2.1799 | 0.3491 |
 
 
 
 
 
 
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": "ALGORITHM",
13
- "1": "COMANAGEMENT",
14
- "2": "COMPETING PRIORITIES",
15
- "3": "COST",
16
- "4": "COVID",
17
- "5": "EHR",
18
- "6": "GUIDELINES",
19
- "7": "HFREF COMFORT MANAGING",
20
- "8": "INFO NEEDS",
21
- "9": "INTERNAL & EXTERNAL SUPPORT BAR",
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
- "ALGORITHM": 0,
36
- "COMANAGEMENT": 1,
37
- "COMPETING PRIORITIES": 2,
38
- "COST": 3,
39
- "COVID": 4,
40
- "EHR": 5,
41
- "GUIDELINES": 6,
42
- "HFREF COMFORT MANAGING": 7,
43
- "INFO NEEDS": 8,
44
- "INTERNAL & EXTERNAL SUPPORT BAR": 9,
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:7ba634f663c49ef1cf0640bab1fc367eece12066bb6c109a14ae66f21a1ca320
3
- size 267887936
 
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