w05230505 commited on
Commit
8368c0c
1 Parent(s): 8a23e1d

Model save

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: bert-base-uncased
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - spearmanr
9
+ model-index:
10
+ - name: bert-base-uncased-finetuned-stsb
11
+ results: []
12
+ ---
13
+
14
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
+ should probably proofread and complete it, then remove this comment. -->
16
+
17
+ # bert-base-uncased-finetuned-stsb
18
+
19
+ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.5010
22
+ - Pearson: 0.8856
23
+ - Spearmanr: 0.8816
24
+ - Combined Score: 0.8836
25
+
26
+ ## Model description
27
+
28
+ More information needed
29
+
30
+ ## Intended uses & limitations
31
+
32
+ More information needed
33
+
34
+ ## Training and evaluation data
35
+
36
+ More information needed
37
+
38
+ ## Training procedure
39
+
40
+ ### Training hyperparameters
41
+
42
+ The following hyperparameters were used during training:
43
+ - learning_rate: 2e-05
44
+ - train_batch_size: 16
45
+ - eval_batch_size: 8
46
+ - seed: 42
47
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
48
+ - lr_scheduler_type: linear
49
+ - num_epochs: 3.0
50
+
51
+ ### Training results
52
+
53
+ | Training Loss | Epoch | Step | Validation Loss | Pearson | Spearmanr | Combined Score |
54
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|:---------:|:--------------:|
55
+ | 1.1212 | 1.0 | 360 | 0.5732 | 0.8790 | 0.8762 | 0.8776 |
56
+ | 0.4308 | 2.0 | 720 | 0.5607 | 0.8813 | 0.8777 | 0.8795 |
57
+ | 0.2947 | 3.0 | 1080 | 0.5010 | 0.8856 | 0.8816 | 0.8836 |
58
+
59
+
60
+ ### Framework versions
61
+
62
+ - Transformers 4.45.0.dev0
63
+ - Pytorch 2.3.0+cu121
64
+ - Datasets 2.18.0
65
+ - Tokenizers 0.19.1