zebans commited on
Commit
37f5ec5
1 Parent(s): cc88818

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -0
README.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - rotten_tomatoes_movie_review
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ model-index:
11
+ - name: bert-base-cased-finetuned-rotten-tomatoes-epochs-5
12
+ results:
13
+ - task:
14
+ name: Text Classification
15
+ type: text-classification
16
+ dataset:
17
+ name: rotten_tomatoes_movie_review
18
+ type: rotten_tomatoes_movie_review
19
+ args: default
20
+ metrics:
21
+ - name: Accuracy
22
+ type: accuracy
23
+ value: 0.975609756097561
24
+ - name: F1
25
+ type: f1
26
+ value: 0.9756096702430234
27
+ ---
28
+
29
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
30
+ should probably proofread and complete it, then remove this comment. -->
31
+
32
+ # bert-base-cased-finetuned-rotten-tomatoes-epochs-5
33
+
34
+ This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the rotten_tomatoes_movie_review dataset.
35
+ It achieves the following results on the evaluation set:
36
+ - Loss: 0.1022
37
+ - Accuracy: 0.9756
38
+ - F1: 0.9756
39
+
40
+ ## Model description
41
+
42
+ More information needed
43
+
44
+ ## Intended uses & limitations
45
+
46
+ More information needed
47
+
48
+ ## Training and evaluation data
49
+
50
+ More information needed
51
+
52
+ ## Training procedure
53
+
54
+ ### Training hyperparameters
55
+
56
+ The following hyperparameters were used during training:
57
+ - learning_rate: 2e-05
58
+ - train_batch_size: 32
59
+ - eval_batch_size: 32
60
+ - seed: 42
61
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
62
+ - lr_scheduler_type: linear
63
+ - num_epochs: 5
64
+
65
+ ### Training results
66
+
67
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
68
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|
69
+ | 0.595 | 1.0 | 34 | 0.3926 | 0.8780 | 0.8780 |
70
+ | 0.3767 | 2.0 | 68 | 0.2374 | 0.9390 | 0.9390 |
71
+ | 0.273 | 3.0 | 102 | 0.1522 | 0.9615 | 0.9615 |
72
+ | 0.1597 | 4.0 | 136 | 0.1154 | 0.9719 | 0.9719 |
73
+ | 0.1348 | 5.0 | 170 | 0.1022 | 0.9756 | 0.9756 |
74
+
75
+
76
+ ### Framework versions
77
+
78
+ - Transformers 4.16.2
79
+ - Pytorch 2.1.0+cu121
80
+ - Datasets 1.16.1
81
+ - Tokenizers 0.15.0