gchhablani commited on
Commit
3a958a1
1 Parent(s): 1822088

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - generated_from_trainer
7
+ datasets:
8
+ - glue
9
+ metrics:
10
+ - spearmanr
11
+ model-index:
12
+ - name: bert-base-cased-finetuned-stsb
13
+ results:
14
+ - task:
15
+ name: Text Classification
16
+ type: text-classification
17
+ dataset:
18
+ name: GLUE STSB
19
+ type: glue
20
+ args: stsb
21
+ metrics:
22
+ - name: Spearmanr
23
+ type: spearmanr
24
+ value: 0.8897907271421561
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-cased-finetuned-stsb
31
+
32
+ This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the GLUE STSB dataset.
33
+ It achieves the following results on the evaluation set:
34
+ - Loss: 0.4861
35
+ - Pearson: 0.8926
36
+ - Spearmanr: 0.8898
37
+ - Combined Score: 0.8912
38
+
39
+ ## Model description
40
+
41
+ More information needed
42
+
43
+ ## Intended uses & limitations
44
+
45
+ More information needed
46
+
47
+ ## Training and evaluation data
48
+
49
+ More information needed
50
+
51
+ ## Training procedure
52
+
53
+ ### Training hyperparameters
54
+
55
+ The following hyperparameters were used during training:
56
+ - learning_rate: 2e-05
57
+ - train_batch_size: 16
58
+ - eval_batch_size: 8
59
+ - seed: 42
60
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
61
+ - lr_scheduler_type: linear
62
+ - num_epochs: 3.0
63
+
64
+ ### Training results
65
+
66
+ | Training Loss | Epoch | Step | Combined Score | Validation Loss | Pearson | Spearmanr |
67
+ |:-------------:|:-----:|:----:|:--------------:|:---------------:|:-------:|:---------:|
68
+ | 1.1174 | 1.0 | 360 | 0.8816 | 0.5000 | 0.8832 | 0.8800 |
69
+ | 0.3835 | 2.0 | 720 | 0.8901 | 0.4672 | 0.8915 | 0.8888 |
70
+ | 0.2388 | 3.0 | 1080 | 0.8912 | 0.4861 | 0.8926 | 0.8898 |
71
+
72
+
73
+ ### Framework versions
74
+
75
+ - Transformers 4.11.0.dev0
76
+ - Pytorch 1.9.0
77
+ - Datasets 1.12.1
78
+ - Tokenizers 0.10.3