harkase commited on
Commit
55cf103
·
verified ·
1 Parent(s): 381bfc3

End of training

Browse files
Files changed (4) hide show
  1. README.md +16 -11
  2. config.json +16 -33
  3. model.safetensors +2 -2
  4. training_args.bin +1 -1
README.md CHANGED
@@ -6,20 +6,22 @@ tags:
6
  - generated_from_trainer
7
  metrics:
8
  - accuracy
 
9
  model-index:
10
- - name: results
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
- # results
18
 
19
  This model is a fine-tuned version of [monologg/koelectra-base-v3-discriminator](https://huggingface.co/monologg/koelectra-base-v3-discriminator) on the None dataset.
20
  It achieves the following results on the evaluation set:
21
- - Loss: 2.0903
22
- - Accuracy: 0.3669
 
23
 
24
  ## Model description
25
 
@@ -44,16 +46,19 @@ The following hyperparameters were used during training:
44
  - seed: 42
45
  - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED 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
- | 2.5615 | 1.0 | 1554 | 2.5777 | 0.1532 |
54
- | 2.3007 | 2.0 | 3108 | 2.3464 | 0.2561 |
55
- | 1.9241 | 3.0 | 4662 | 2.1408 | 0.3367 |
56
- | 1.6816 | 4.0 | 6216 | 2.0903 | 0.3669 |
 
 
 
57
 
58
 
59
  ### Framework versions
 
6
  - generated_from_trainer
7
  metrics:
8
  - accuracy
9
+ - f1
10
  model-index:
11
+ - name: MyMbti_classification_model
12
  results: []
13
  ---
14
 
15
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
16
  should probably proofread and complete it, then remove this comment. -->
17
 
18
+ # MyMbti_classification_model
19
 
20
  This model is a fine-tuned version of [monologg/koelectra-base-v3-discriminator](https://huggingface.co/monologg/koelectra-base-v3-discriminator) on the None dataset.
21
  It achieves the following results on the evaluation set:
22
+ - Loss: 0.6564
23
+ - Accuracy: 0.5676
24
+ - F1: 0.6406
25
 
26
  ## Model description
27
 
 
46
  - seed: 42
47
  - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
48
  - lr_scheduler_type: linear
49
+ - num_epochs: 5
50
 
51
  ### Training results
52
 
53
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
54
+ |:-------------:|:------:|:----:|:---------------:|:--------:|:------:|
55
+ | 0.6612 | 0.0669 | 200 | 0.6585 | 0.4970 | 0.4306 |
56
+ | 0.6569 | 0.1339 | 400 | 0.6563 | 0.4951 | 0.4099 |
57
+ | 0.6547 | 0.2008 | 600 | 0.6564 | 0.5676 | 0.6406 |
58
+ | 0.653 | 0.2677 | 800 | 0.6533 | 0.5289 | 0.5172 |
59
+ | 0.6554 | 0.3347 | 1000 | 0.6524 | 0.5400 | 0.5435 |
60
+ | 0.6558 | 0.4016 | 1200 | 0.6552 | 0.5416 | 0.4878 |
61
+ | 0.6516 | 0.4685 | 1400 | 0.6549 | 0.5438 | 0.4847 |
62
 
63
 
64
  ### Framework versions
config.json CHANGED
@@ -3,48 +3,30 @@
3
  "ElectraForSequenceClassification"
4
  ],
5
  "attention_probs_dropout_prob": 0.1,
 
 
 
 
 
 
6
  "classifier_dropout": null,
7
  "embedding_size": 768,
8
  "hidden_act": "gelu",
9
  "hidden_dropout_prob": 0.1,
10
  "hidden_size": 768,
11
  "id2label": {
12
- "0": "LABEL_0",
13
- "1": "LABEL_1",
14
- "2": "LABEL_2",
15
- "3": "LABEL_3",
16
- "4": "LABEL_4",
17
- "5": "LABEL_5",
18
- "6": "LABEL_6",
19
- "7": "LABEL_7",
20
- "8": "LABEL_8",
21
- "9": "LABEL_9",
22
- "10": "LABEL_10",
23
- "11": "LABEL_11",
24
- "12": "LABEL_12",
25
- "13": "LABEL_13",
26
- "14": "LABEL_14",
27
- "15": "LABEL_15"
28
  },
29
  "initializer_range": 0.02,
30
  "intermediate_size": 3072,
31
  "label2id": {
32
- "LABEL_0": 0,
33
- "LABEL_1": 1,
34
- "LABEL_10": 10,
35
- "LABEL_11": 11,
36
- "LABEL_12": 12,
37
- "LABEL_13": 13,
38
- "LABEL_14": 14,
39
- "LABEL_15": 15,
40
- "LABEL_2": 2,
41
- "LABEL_3": 3,
42
- "LABEL_4": 4,
43
- "LABEL_5": 5,
44
- "LABEL_6": 6,
45
- "LABEL_7": 7,
46
- "LABEL_8": 8,
47
- "LABEL_9": 9
48
  },
49
  "layer_norm_eps": 1e-12,
50
  "max_position_embeddings": 512,
@@ -53,11 +35,12 @@
53
  "num_hidden_layers": 12,
54
  "pad_token_id": 0,
55
  "position_embedding_type": "absolute",
56
- "problem_type": "single_label_classification",
57
  "summary_activation": "gelu",
58
  "summary_last_dropout": 0.1,
59
  "summary_type": "first",
60
  "summary_use_proj": true,
 
61
  "torch_dtype": "float32",
62
  "transformers_version": "4.55.2",
63
  "type_vocab_size": 2,
 
3
  "ElectraForSequenceClassification"
4
  ],
5
  "attention_probs_dropout_prob": 0.1,
6
+ "axis_names": [
7
+ "IE",
8
+ "SN",
9
+ "TF",
10
+ "JP"
11
+ ],
12
  "classifier_dropout": null,
13
  "embedding_size": 768,
14
  "hidden_act": "gelu",
15
  "hidden_dropout_prob": 0.1,
16
  "hidden_size": 768,
17
  "id2label": {
18
+ "0": "IE",
19
+ "1": "SN",
20
+ "2": "TF",
21
+ "3": "JP"
 
 
 
 
 
 
 
 
 
 
 
 
22
  },
23
  "initializer_range": 0.02,
24
  "intermediate_size": 3072,
25
  "label2id": {
26
+ "IE": 0,
27
+ "JP": 3,
28
+ "SN": 1,
29
+ "TF": 2
 
 
 
 
 
 
 
 
 
 
 
 
30
  },
31
  "layer_norm_eps": 1e-12,
32
  "max_position_embeddings": 512,
 
35
  "num_hidden_layers": 12,
36
  "pad_token_id": 0,
37
  "position_embedding_type": "absolute",
38
+ "problem_type": "multi_label_classification",
39
  "summary_activation": "gelu",
40
  "summary_last_dropout": 0.1,
41
  "summary_type": "first",
42
  "summary_use_proj": true,
43
+ "task_type": "multilabel_4axis",
44
  "torch_dtype": "float32",
45
  "transformers_version": "4.55.2",
46
  "type_vocab_size": 2,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0db04dc9c8d456584eac7f334388de3e6b2982f5807dadbfd487c5b13912bb45
3
- size 451758736
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7eac4d6bde09291ae691e27527969fba10a06eb4b13409899a89a41711444e5a
3
+ size 451721824
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6de89322b112bf904d1abd35dc5efa4d54d4aea70192130afedd0da28083425e
3
  size 5713
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bf668bbab69941c0ced64b8a84b99b1af55159f6b0ee1a0bac514355441169b
3
  size 5713