gchhablani commited on
Commit
bdbde96
1 Parent(s): 6b8ffb3

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: fnet-base-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.8219397497728022
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
+ # fnet-base-finetuned-stsb
31
+
32
+ This model is a fine-tuned version of [google/fnet-base](https://huggingface.co/google/fnet-base) on the GLUE STSB dataset.
33
+ It achieves the following results on the evaluation set:
34
+ - Loss: 0.7894
35
+ - Pearson: 0.8256
36
+ - Spearmanr: 0.8219
37
+ - Combined Score: 0.8238
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.5473 | 1.0 | 360 | 0.8120 | 0.7751 | 0.8115 | 0.8125 |
69
+ | 0.6954 | 2.0 | 720 | 0.8145 | 0.8717 | 0.8160 | 0.8130 |
70
+ | 0.4828 | 3.0 | 1080 | 0.8238 | 0.7894 | 0.8256 | 0.8219 |
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