choiruzzia commited on
Commit
43006bf
·
verified ·
1 Parent(s): f89c072

Training fold 1

Browse files
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: ayameRushia/roberta-base-indonesian-sentiment-analysis-smsa
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - accuracy
8
+ - precision
9
+ - recall
10
+ - f1
11
+ model-index:
12
+ - name: 2_best_berita_roberta_model_fold_1
13
+ results: []
14
+ ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+ # 2_best_berita_roberta_model_fold_1
20
+
21
+ This model is a fine-tuned version of [ayameRushia/roberta-base-indonesian-sentiment-analysis-smsa](https://huggingface.co/ayameRushia/roberta-base-indonesian-sentiment-analysis-smsa) on the None dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 0.8575
24
+ - Accuracy: 0.8868
25
+ - Precision: 0.8904
26
+ - Recall: 0.8843
27
+ - F1: 0.8870
28
+
29
+ ## Model description
30
+
31
+ More information needed
32
+
33
+ ## Intended uses & limitations
34
+
35
+ More information needed
36
+
37
+ ## Training and evaluation data
38
+
39
+ More information needed
40
+
41
+ ## Training procedure
42
+
43
+ ### Training hyperparameters
44
+
45
+ The following hyperparameters were used during training:
46
+ - learning_rate: 5e-05
47
+ - train_batch_size: 8
48
+ - eval_batch_size: 8
49
+ - seed: 42
50
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
+ - lr_scheduler_type: linear
52
+ - num_epochs: 10
53
+
54
+ ### Training results
55
+
56
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
57
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
58
+ | No log | 1.0 | 106 | 0.9177 | 0.5472 | 0.7029 | 0.6055 | 0.5274 |
59
+ | No log | 2.0 | 212 | 0.8990 | 0.7264 | 0.7612 | 0.7252 | 0.7101 |
60
+ | No log | 3.0 | 318 | 0.7968 | 0.8491 | 0.8478 | 0.8622 | 0.8496 |
61
+ | No log | 4.0 | 424 | 0.8026 | 0.8396 | 0.8400 | 0.8413 | 0.8353 |
62
+ | 0.5042 | 5.0 | 530 | 1.0039 | 0.8443 | 0.8579 | 0.8603 | 0.8488 |
63
+ | 0.5042 | 6.0 | 636 | 0.8274 | 0.8774 | 0.8743 | 0.8850 | 0.8780 |
64
+ | 0.5042 | 7.0 | 742 | 0.8575 | 0.8868 | 0.8904 | 0.8843 | 0.8870 |
65
+ | 0.5042 | 8.0 | 848 | 0.9014 | 0.8821 | 0.8806 | 0.8906 | 0.8830 |
66
+ | 0.5042 | 9.0 | 954 | 0.9622 | 0.8726 | 0.8723 | 0.8859 | 0.8741 |
67
+ | 0.0373 | 10.0 | 1060 | 0.9673 | 0.8726 | 0.8723 | 0.8859 | 0.8741 |
68
+
69
+
70
+ ### Framework versions
71
+
72
+ - Transformers 4.41.2
73
+ - Pytorch 2.1.2
74
+ - Datasets 2.19.2
75
+ - Tokenizers 0.19.1
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "ayameRushia/roberta-base-indonesian-sentiment-analysis-smsa",
3
+ "architectures": [
4
+ "RobertaForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "gradient_checkpointing": false,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 768,
14
+ "id2label": {
15
+ "0": "POSITIVE",
16
+ "1": "NEUTRAL",
17
+ "2": "NEGATIVE"
18
+ },
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 3072,
21
+ "label2id": {
22
+ "NEGATIVE": 2,
23
+ "NEUTRAL": 1,
24
+ "POSITIVE": 0
25
+ },
26
+ "layer_norm_eps": 1e-05,
27
+ "max_position_embeddings": 514,
28
+ "model_type": "roberta",
29
+ "num_attention_heads": 12,
30
+ "num_hidden_layers": 12,
31
+ "pad_token_id": 1,
32
+ "position_embedding_type": "absolute",
33
+ "problem_type": "single_label_classification",
34
+ "torch_dtype": "float32",
35
+ "transformers_version": "4.41.2",
36
+ "type_vocab_size": 1,
37
+ "use_cache": true,
38
+ "vocab_size": 50265
39
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4ba855048e9103016cf4ae6e4cc687d0b0b21d67a114fe1f60dee9a12cb0d7b
3
+ size 498615900
runs/Jul17_17-20-37_6083bec5524b/events.out.tfevents.1721236838.6083bec5524b.34.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9202ab4f7b4b8b063022f5cce35fb223861881ca57f0bd0f722dc9780edd0d1
3
+ size 10701
runs/Jul17_17-20-37_6083bec5524b/events.out.tfevents.1721237391.6083bec5524b.34.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0397b9ddd4054cb2388b0edf059f6e2aaad75b584052410da99471c6bc1522f
3
+ size 560
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6cab8925ee14f440c469b95d09a9a4ce37181f740066379007086e0a512bac27
3
+ size 5176