ganeshkamath89 commited on
Commit
01ff491
1 Parent(s): 66ad6c6

Updating readme.md

Browse files
Files changed (1) hide show
  1. README.md +70 -1
README.md CHANGED
@@ -1,4 +1,73 @@
1
  ---
 
 
 
2
  datasets:
3
  - nyu-mll/glue
4
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
  datasets:
6
  - nyu-mll/glue
7
+ metrics:
8
+ - matthews_correlation
9
+ model-index:
10
+ - name: bert-fine-tuned-cola
11
+ results:
12
+ - task:
13
+ name: Text Classification
14
+ type: text-classification
15
+ dataset:
16
+ name: glue
17
+ type: glue
18
+ args: cola
19
+ metrics:
20
+ - name: Matthews Correlation
21
+ type: matthews_correlation
22
+ value: 0.5959186748524787
23
+ ---
24
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
25
+ should probably proofread and complete it, then remove this comment. -->
26
+
27
+ # bert-fine-tuned-cola
28
+
29
+ This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the glue dataset.
30
+ It achieves the following results on the evaluation set:
31
+ - Loss: 0.8068
32
+ - Matthews Correlation: 0.5959
33
+
34
+ ## Model description
35
+
36
+ More information needed
37
+
38
+ ## Intended uses & limitations
39
+
40
+ More information needed
41
+
42
+ ## Training and evaluation data
43
+
44
+ More information needed
45
+
46
+ ## Training procedure
47
+
48
+ ### Training hyperparameters
49
+
50
+ The following hyperparameters were used during training:
51
+ - learning_rate: 2e-05
52
+ - train_batch_size: 8
53
+ - eval_batch_size: 8
54
+ - seed: 42
55
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
56
+ - lr_scheduler_type: linear
57
+ - num_epochs: 3
58
+
59
+ ### Training results
60
+
61
+ | Training Loss | Epoch | Step | Validation Loss | Matthews Correlation |
62
+ |:-------------:|:-----:|:----:|:---------------:|:--------------------:|
63
+ | 0.4838 | 1.0 | 1069 | 0.5996 | 0.4637 |
64
+ | 0.3543 | 2.0 | 2138 | 0.6670 | 0.5778 |
65
+ | 0.1948 | 3.0 | 3207 | 0.8068 | 0.5959 |
66
+
67
+
68
+ ### Framework versions
69
+
70
+ - Transformers 4.13.0.dev0
71
+ - Pytorch 1.9.1+cu102
72
+ - Datasets 1.13.4.dev0
73
+ - Tokenizers 0.10.3