eskayML commited on
Commit
039555a
·
verified ·
1 Parent(s): 435ed8b

eskayML/interview_electra

Browse files
Files changed (4) hide show
  1. README.md +13 -13
  2. config.json +20 -40
  3. model.safetensors +2 -2
  4. training_args.bin +1 -1
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 [mrm8488/electra-small-finetuned-squadv2](https://huggingface.co/mrm8488/electra-small-finetuned-squadv2) on the None dataset.
20
  It achieves the following results on the evaluation set:
21
- - Loss: 1.4590
22
- - Accuracy: 0.6164
23
 
24
  ## Model description
25
 
@@ -42,7 +42,7 @@ 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: 10
48
 
@@ -50,16 +50,16 @@ The following hyperparameters were used during training:
50
 
51
  | Training Loss | Epoch | Step | Validation Loss | Accuracy |
52
  |:-------------:|:-----:|:----:|:---------------:|:--------:|
53
- | 2.782 | 1.0 | 579 | 2.6037 | 0.1983 |
54
- | 2.5903 | 2.0 | 1158 | 2.4794 | 0.1983 |
55
- | 2.5114 | 3.0 | 1737 | 2.3349 | 0.2586 |
56
- | 2.3676 | 4.0 | 2316 | 2.1538 | 0.4569 |
57
- | 2.2466 | 5.0 | 2895 | 1.9574 | 0.4526 |
58
- | 2.0461 | 6.0 | 3474 | 1.7796 | 0.5690 |
59
- | 1.7791 | 7.0 | 4053 | 1.6913 | 0.5776 |
60
- | 1.7205 | 8.0 | 4632 | 1.5485 | 0.5733 |
61
- | 1.59 | 9.0 | 5211 | 1.4805 | 0.6121 |
62
- | 1.5614 | 10.0 | 5790 | 1.4590 | 0.6164 |
63
 
64
 
65
  ### Framework versions
 
18
 
19
  This model is a fine-tuned version of [mrm8488/electra-small-finetuned-squadv2](https://huggingface.co/mrm8488/electra-small-finetuned-squadv2) on the None dataset.
20
  It achieves the following results on the evaluation set:
21
+ - Loss: 2.2729
22
+ - Accuracy: 0.1111
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
 
 
50
 
51
  | Training Loss | Epoch | Step | Validation Loss | Accuracy |
52
  |:-------------:|:-----:|:----:|:---------------:|:--------:|
53
+ | No log | 1.0 | 54 | 2.2936 | 0.0370 |
54
+ | No log | 2.0 | 108 | 2.2872 | 0.1111 |
55
+ | No log | 3.0 | 162 | 2.2796 | 0.0741 |
56
+ | No log | 4.0 | 216 | 2.2798 | 0.0741 |
57
+ | No log | 5.0 | 270 | 2.2775 | 0.0741 |
58
+ | No log | 6.0 | 324 | 2.2780 | 0.1111 |
59
+ | No log | 7.0 | 378 | 2.2801 | 0.0370 |
60
+ | No log | 8.0 | 432 | 2.2741 | 0.1111 |
61
+ | No log | 9.0 | 486 | 2.2733 | 0.0370 |
62
+ | 2.2069 | 10.0 | 540 | 2.2729 | 0.1111 |
63
 
64
 
65
  ### Framework versions
config.json CHANGED
@@ -10,50 +10,30 @@
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 256,
12
  "id2label": {
13
- "0": 0,
14
- "1": 1,
15
- "2": 2,
16
- "3": 3,
17
- "4": 4,
18
- "5": 5,
19
- "6": 6,
20
- "7": 7,
21
- "8": 8,
22
- "9": 9,
23
- "10": 10,
24
- "11": 11,
25
- "12": 12,
26
- "13": 13,
27
- "14": 14,
28
- "15": 15,
29
- "16": 16,
30
- "17": 17,
31
- "18": 18,
32
- "19": 19
33
  },
34
  "initializer_range": 0.02,
35
  "intermediate_size": 1024,
36
  "label2id": {
37
- "0": 0,
38
- "1": 1,
39
- "2": 2,
40
- "3": 3,
41
- "4": 4,
42
- "5": 5,
43
- "6": 6,
44
- "7": 7,
45
- "8": 8,
46
- "9": 9,
47
- "10": 10,
48
- "11": 11,
49
- "12": 12,
50
- "13": 13,
51
- "14": 14,
52
- "15": 15,
53
- "16": 16,
54
- "17": 17,
55
- "18": 18,
56
- "19": 19
57
  },
58
  "layer_norm_eps": 1e-12,
59
  "max_position_embeddings": 512,
 
10
  "hidden_dropout_prob": 0.1,
11
  "hidden_size": 256,
12
  "id2label": {
13
+ "0": "Provider Characteristics",
14
+ "1": "Finanicial Impact",
15
+ "2": "Imaging modalities in general",
16
+ "3": "Clinical utility & efficiency-Provider perspective",
17
+ "4": "Health System Characteristics",
18
+ "5": "Training",
19
+ "6": "Value equation",
20
+ "7": "Workflow related problems",
21
+ "8": "Credentialing / Quality Assurance Infrastructure",
22
+ "9": "Patient/Physican interaction in LUS"
 
 
 
 
 
 
 
 
 
 
23
  },
24
  "initializer_range": 0.02,
25
  "intermediate_size": 1024,
26
  "label2id": {
27
+ "Clinical utility & efficiency-Provider perspective": 3,
28
+ "Credentialing / Quality Assurance Infrastructure": 8,
29
+ "Finanicial Impact": 1,
30
+ "Health System Characteristics": 4,
31
+ "Imaging modalities in general": 2,
32
+ "Patient/Physican interaction in LUS": 9,
33
+ "Provider Characteristics": 0,
34
+ "Training": 5,
35
+ "Value equation": 6,
36
+ "Workflow related problems": 7
 
 
 
 
 
 
 
 
 
 
37
  },
38
  "layer_norm_eps": 1e-12,
39
  "max_position_embeddings": 512,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5678dd28a6ad932eda4117ba2efc7a01bb83e3a55364844c3a361908bb1a5748
3
- size 54239712
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e39f45a0be0b095f4c30756e3d98ef4c1f7ceb03f2f6f0652863ceb8ac226767
3
+ size 54229432
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:696c8c84281637804e271799054d0fb3f501144c057011eeb79843e891e858f0
3
  size 5304
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f90cb18423480090e5952f92b4845315772b669a221438661b8ddad1ce0062b
3
  size 5304