choiruzzia commited on
Commit
e9df4e6
·
verified ·
1 Parent(s): 017c77c

Training fold 1

Browse files
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 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
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="200" height="32"/>]()
20
+ # best_berita_roberta_model_fold_1
21
+
22
+ 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.
23
+ It achieves the following results on the evaluation set:
24
+ - Loss: 0.0964
25
+ - Accuracy: 0.9817
26
+ - Precision: 0.9812
27
+ - Recall: 0.9826
28
+ - F1: 0.9818
29
+
30
+ ## Model description
31
+
32
+ More information needed
33
+
34
+ ## Intended uses & limitations
35
+
36
+ More information needed
37
+
38
+ ## Training and evaluation data
39
+
40
+ More information needed
41
+
42
+ ## Training procedure
43
+
44
+ ### Training hyperparameters
45
+
46
+ The following hyperparameters were used during training:
47
+ - learning_rate: 5e-05
48
+ - train_batch_size: 8
49
+ - eval_batch_size: 8
50
+ - seed: 42
51
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
52
+ - lr_scheduler_type: linear
53
+ - num_epochs: 10
54
+
55
+ ### Training results
56
+
57
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
58
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
59
+ | 0.6034 | 1.0 | 601 | 0.5137 | 0.8785 | 0.9043 | 0.8684 | 0.8758 |
60
+ | 0.2584 | 2.0 | 1202 | 0.2616 | 0.9434 | 0.9438 | 0.9489 | 0.9435 |
61
+ | 0.1286 | 3.0 | 1803 | 0.2470 | 0.9642 | 0.9645 | 0.9668 | 0.9646 |
62
+ | 0.0948 | 4.0 | 2404 | 0.0964 | 0.9817 | 0.9812 | 0.9826 | 0.9818 |
63
+ | 0.0405 | 5.0 | 3005 | 0.3506 | 0.9551 | 0.9560 | 0.9593 | 0.9558 |
64
+ | 0.0038 | 6.0 | 3606 | 0.3762 | 0.9551 | 0.9549 | 0.9597 | 0.9551 |
65
+ | 0.0105 | 7.0 | 4207 | 0.2738 | 0.9667 | 0.9657 | 0.9698 | 0.9666 |
66
+ | 0.0004 | 8.0 | 4808 | 0.2319 | 0.9742 | 0.9732 | 0.9765 | 0.9743 |
67
+ | 0.0018 | 9.0 | 5409 | 0.2551 | 0.9725 | 0.9715 | 0.9750 | 0.9726 |
68
+ | 0.0 | 10.0 | 6010 | 0.2604 | 0.9725 | 0.9715 | 0.9750 | 0.9726 |
69
+
70
+
71
+ ### Framework versions
72
+
73
+ - Transformers 4.42.3
74
+ - Pytorch 2.1.2
75
+ - Datasets 2.20.0
76
+ - 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.42.3",
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:cbc36971bc71df8850094acc4406e1afef2529b5d1159d53348a82a4c2201805
3
+ size 498615900
runs/Jul17_15-47-26_f87df83a7fd8/events.out.tfevents.1721231248.f87df83a7fd8.34.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65c9d25dbdcc7c2fde94b8ee7945d847a256918cc1d7ae8fc0db36536668a5fc
3
+ size 12840
runs/Jul17_15-47-26_f87df83a7fd8/events.out.tfevents.1721234140.f87df83a7fd8.34.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b16dfffbe3f23b385b2b565bff68cd4189377ebd6b253ee2236a5870de32089
3
+ size 560
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92358cc0080bbe303577fc8273b9d9b4f83d0ef6065c0a475116ba8b988f9074
3
+ size 5176