Jeremiah Zhou commited on
Commit
0804d9d
1 Parent(s): ba4fcc1

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - glue
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ model-index:
11
+ - name: bert-base-uncased-mrpc
12
+ results:
13
+ - task:
14
+ name: Text Classification
15
+ type: text-classification
16
+ dataset:
17
+ name: glue
18
+ type: glue
19
+ args: mrpc
20
+ metrics:
21
+ - name: Accuracy
22
+ type: accuracy
23
+ value: 0.8455882352941176
24
+ - name: F1
25
+ type: f1
26
+ value: 0.8900523560209423
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-uncased-mrpc
33
+
34
+ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the glue dataset.
35
+ It achieves the following results on the evaluation set:
36
+ - Loss: 0.6524
37
+ - Accuracy: 0.8456
38
+ - F1: 0.8901
39
+ - Combined Score: 0.8678
40
+
41
+ ## Model description
42
+
43
+ More information needed
44
+
45
+ ## Intended uses & limitations
46
+
47
+ More information needed
48
+
49
+ ## Training and evaluation data
50
+
51
+ More information needed
52
+
53
+ ## Training procedure
54
+
55
+ ### Training hyperparameters
56
+
57
+ The following hyperparameters were used during training:
58
+ - learning_rate: 2e-05
59
+ - train_batch_size: 16
60
+ - eval_batch_size: 8
61
+ - seed: 42
62
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
63
+ - lr_scheduler_type: linear
64
+ - lr_scheduler_warmup_ratio: 0.06
65
+ - num_epochs: 5.0
66
+
67
+ ### Training results
68
+
69
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Combined Score |
70
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:--------------:|
71
+ | No log | 1.0 | 230 | 0.4111 | 0.8088 | 0.8704 | 0.8396 |
72
+ | No log | 2.0 | 460 | 0.3762 | 0.8480 | 0.8942 | 0.8711 |
73
+ | 0.4287 | 3.0 | 690 | 0.5572 | 0.8578 | 0.9024 | 0.8801 |
74
+ | 0.4287 | 4.0 | 920 | 0.6087 | 0.8554 | 0.8977 | 0.8766 |
75
+ | 0.1172 | 5.0 | 1150 | 0.6524 | 0.8456 | 0.8901 | 0.8678 |
76
+
77
+
78
+ ### Framework versions
79
+
80
+ - Transformers 4.20.0.dev0
81
+ - Pytorch 1.11.0+cu113
82
+ - Datasets 2.1.0
83
+ - Tokenizers 0.12.1