eskayML commited on
Commit
e295c8d
·
verified ·
1 Parent(s): 825e4f9

eskayML/old_electra_pytranscripts

Browse files
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: mrm8488/electra-small-finetuned-squadv2
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ model-index:
10
+ - name: old_electra_pytranscripts
11
+ results: []
12
+ ---
13
+
14
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
+ should probably proofread and complete it, then remove this comment. -->
16
+
17
+ # old_electra_pytranscripts
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.1743
22
+ - Accuracy: 0.2632
23
+
24
+ ## Model description
25
+
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+
30
+ More information needed
31
+
32
+ ## Training and evaluation data
33
+
34
+ More information needed
35
+
36
+ ## Training procedure
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - learning_rate: 2e-05
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 | 76 | 2.2813 | 0.2368 |
54
+ | No log | 2.0 | 152 | 2.2611 | 0.1579 |
55
+ | No log | 3.0 | 228 | 2.2412 | 0.2368 |
56
+ | No log | 4.0 | 304 | 2.2222 | 0.2632 |
57
+ | No log | 5.0 | 380 | 2.2071 | 0.2632 |
58
+ | No log | 6.0 | 456 | 2.1922 | 0.2632 |
59
+ | 2.1966 | 7.0 | 532 | 2.1866 | 0.2368 |
60
+ | 2.1966 | 8.0 | 608 | 2.1814 | 0.2105 |
61
+ | 2.1966 | 9.0 | 684 | 2.1775 | 0.2632 |
62
+ | 2.1966 | 10.0 | 760 | 2.1743 | 0.2632 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.47.1
68
+ - Pytorch 2.5.1+cu121
69
+ - Datasets 3.2.0
70
+ - Tokenizers 0.21.0
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "mrm8488/electra-small-finetuned-squadv2",
3
+ "architectures": [
4
+ "ElectraForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "embedding_size": 128,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 256,
12
+ "id2label": {
13
+ "0": "Value equation",
14
+ "1": "labels",
15
+ "2": "Financial Impact",
16
+ "3": "Health System Characteristics",
17
+ "4": "Clinical utility & efficiency-Provider perspective",
18
+ "5": "Workflow related problems",
19
+ "6": "Provider Characteristics",
20
+ "7": "Training",
21
+ "8": "Patient/Physician interaction in LUS",
22
+ "9": "Imaging modalities in general"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 1024,
26
+ "label2id": {
27
+ "Clinical utility & efficiency-Provider perspective": 4,
28
+ "Financial Impact": 2,
29
+ "Health System Characteristics": 3,
30
+ "Imaging modalities in general": 9,
31
+ "Patient/Physician interaction in LUS": 8,
32
+ "Provider Characteristics": 6,
33
+ "Training": 7,
34
+ "Value equation": 0,
35
+ "Workflow related problems": 5,
36
+ "labels": 1
37
+ },
38
+ "layer_norm_eps": 1e-12,
39
+ "max_position_embeddings": 512,
40
+ "model_type": "electra",
41
+ "num_attention_heads": 4,
42
+ "num_hidden_layers": 12,
43
+ "pad_token_id": 0,
44
+ "position_embedding_type": "absolute",
45
+ "problem_type": "single_label_classification",
46
+ "summary_activation": "gelu",
47
+ "summary_last_dropout": 0.1,
48
+ "summary_type": "first",
49
+ "summary_use_proj": true,
50
+ "torch_dtype": "float32",
51
+ "transformers_version": "4.47.1",
52
+ "type_vocab_size": 2,
53
+ "use_cache": true,
54
+ "vocab_size": 30522
55
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d431f10ed5a5cd25ebefd3b4ffdf9bf41249fc414fd1abe24bc0eece665c526
3
+ size 54229432
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "extra_special_tokens": {},
49
+ "mask_token": "[MASK]",
50
+ "max_length": 512,
51
+ "model_max_length": 512,
52
+ "never_split": null,
53
+ "pad_token": "[PAD]",
54
+ "sep_token": "[SEP]",
55
+ "strip_accents": null,
56
+ "tokenize_chinese_chars": true,
57
+ "tokenizer_class": "ElectraTokenizer",
58
+ "unk_token": "[UNK]"
59
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21836d5b6d84ca4371c2451265e6c01bbe6987a76fbc74e777cf227a449e98f6
3
+ size 5304
vocab.txt ADDED
The diff for this file is too large to render. See raw diff