namvandy commited on
Commit
6bb996e
1 Parent(s): 52d7255

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: cc-by-sa-4.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - klue
7
+ metrics:
8
+ - pearsonr
9
+ model-index:
10
+ - name: bert-base-finetuned-sts
11
+ results:
12
+ - task:
13
+ name: Text Classification
14
+ type: text-classification
15
+ dataset:
16
+ name: klue
17
+ type: klue
18
+ config: sts
19
+ split: train
20
+ args: sts
21
+ metrics:
22
+ - name: Pearsonr
23
+ type: pearsonr
24
+ value: 0.9116408161709073
25
+ ---
26
+
27
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
28
+ should probably proofread and complete it, then remove this comment. -->
29
+
30
+ # bert-base-finetuned-sts
31
+
32
+ This model is a fine-tuned version of [klue/bert-base](https://huggingface.co/klue/bert-base) on the klue dataset.
33
+ It achieves the following results on the evaluation set:
34
+ - Loss: 0.3951
35
+ - Pearsonr: 0.9116
36
+
37
+ ## Model description
38
+
39
+ More information needed
40
+
41
+ ## Intended uses & limitations
42
+
43
+ More information needed
44
+
45
+ ## Training and evaluation data
46
+
47
+ More information needed
48
+
49
+ ## Training procedure
50
+
51
+ ### Training hyperparameters
52
+
53
+ The following hyperparameters were used during training:
54
+ - learning_rate: 2e-05
55
+ - train_batch_size: 4
56
+ - eval_batch_size: 4
57
+ - seed: 42
58
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
59
+ - lr_scheduler_type: linear
60
+ - num_epochs: 10
61
+
62
+ ### Training results
63
+
64
+ | Training Loss | Epoch | Step | Validation Loss | Pearsonr |
65
+ |:-------------:|:-----:|:-----:|:---------------:|:--------:|
66
+ | 0.2345 | 1.0 | 2917 | 0.7037 | 0.8757 |
67
+ | 0.1491 | 2.0 | 5834 | 0.4869 | 0.8846 |
68
+ | 0.097 | 3.0 | 8751 | 0.4023 | 0.9041 |
69
+ | 0.0735 | 4.0 | 11668 | 0.3960 | 0.9073 |
70
+ | 0.0644 | 5.0 | 14585 | 0.4838 | 0.8989 |
71
+ | 0.0446 | 6.0 | 17502 | 0.3990 | 0.9078 |
72
+ | 0.0355 | 7.0 | 20419 | 0.3951 | 0.9116 |
73
+ | 0.0277 | 8.0 | 23336 | 0.4284 | 0.9053 |
74
+ | 0.0239 | 9.0 | 26253 | 0.4166 | 0.9073 |
75
+ | 0.0205 | 10.0 | 29170 | 0.4234 | 0.9062 |
76
+
77
+
78
+ ### Framework versions
79
+
80
+ - Transformers 4.25.1
81
+ - Pytorch 1.13.0
82
+ - Datasets 2.7.1
83
+ - Tokenizers 0.13.2