Simon Tang commited on
Commit
8d537c1
1 Parent(s): f86b16e

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: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - anli
7
+ metrics:
8
+ - rouge
9
+ model-index:
10
+ - name: gpt-j-claim-generator
11
+ results:
12
+ - task:
13
+ name: Causal Language Modeling
14
+ type: text-generation
15
+ dataset:
16
+ name: anli
17
+ type: anli
18
+ config: plain_text
19
+ split: dev_r3
20
+ args: plain_text
21
+ metrics:
22
+ - name: Rouge1
23
+ type: rouge
24
+ value: 0.8913860940628431
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
+ # gpt-j-claim-generator
31
+
32
+ This model is a fine-tuned version of [EleutherAI/gpt-j-6b](https://huggingface.co/EleutherAI/gpt-j-6b) on the anli dataset.
33
+ It achieves the following results on the evaluation set:
34
+ - Loss: 0.0232
35
+ - Rouge1: 0.8914
36
+ - Rouge2: 0.8240
37
+ - Rougel: 0.8863
38
+ - Rougelsum: 0.8864
39
+
40
+ ## Model description
41
+
42
+ More information needed
43
+
44
+ ## Intended uses & limitations
45
+
46
+ More information needed
47
+
48
+ ## Training and evaluation data
49
+
50
+ More information needed
51
+
52
+ ## Training procedure
53
+
54
+ ### Training hyperparameters
55
+
56
+ The following hyperparameters were used during training:
57
+ - learning_rate: 1e-05
58
+ - train_batch_size: 12
59
+ - eval_batch_size: 1
60
+ - seed: 42
61
+ - distributed_type: multi-GPU
62
+ - num_devices: 3
63
+ - total_train_batch_size: 36
64
+ - total_eval_batch_size: 3
65
+ - optimizer: Adam with betas=(0.9,0.95) and epsilon=1e-08
66
+ - lr_scheduler_type: linear
67
+ - lr_scheduler_warmup_steps: 100
68
+ - num_epochs: 5
69
+
70
+ ### Training results
71
+
72
+ | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum |
73
+ |:-------------:|:-----:|:-----:|:---------------:|:------:|:------:|:------:|:---------:|
74
+ | 0.013 | 1.79 | 5000 | 0.0200 | 0.8921 | 0.8194 | 0.8859 | 0.8860 |
75
+ | 0.0085 | 3.58 | 10000 | 0.0232 | 0.8914 | 0.8240 | 0.8863 | 0.8864 |
76
+
77
+
78
+ ### Framework versions
79
+
80
+ - Transformers 4.30.2
81
+ - Pytorch 2.0.1+cu117
82
+ - Datasets 2.13.1
83
+ - Tokenizers 0.13.3