Narsil HF staff commited on
Commit
913349d
0 Parent(s):

Duplicate from Narsil/gpt2

Browse files
.gitattributes ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.bin.* filter=lfs diff=lfs merge=lfs -text
2
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.h5 filter=lfs diff=lfs merge=lfs -text
5
+ *.tflite filter=lfs diff=lfs merge=lfs -text
6
+ *.tar.gz filter=lfs diff=lfs merge=lfs -text
7
+ *.ot filter=lfs diff=lfs merge=lfs -text
8
+ *.onnx filter=lfs diff=lfs merge=lfs -text
9
+ *.arrow filter=lfs diff=lfs merge=lfs -text
10
+ *.ftz filter=lfs diff=lfs merge=lfs -text
11
+ *.joblib filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.pb filter=lfs diff=lfs merge=lfs -text
15
+ *.pt filter=lfs diff=lfs merge=lfs -text
16
+ *.pth filter=lfs diff=lfs merge=lfs -text
17
+ model.safetensors filter=lfs diff=lfs merge=lfs -text
64-8bits.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c966da3b74697803352ca7c6f2f220e7090a557b619de9da0c6b34d89f7825c1
3
+ size 125162496
64-fp16.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ceafd82e733dd4b21570b2a86cf27556a983041806c033a55d086e0ed782cd3
3
+ size 248269688
64.tflite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfcd510b239d90b71ee87d4e57a5a8c2d55b2a941e5d9fe5852298268ddbe61b
3
+ size 495791932
README.md ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ tags:
4
+ - exbert
5
+ license: mit
6
+ pipeline_tag: text-generation
7
+ duplicated_from: Narsil/gpt2
8
+ ---
9
+
10
+
11
+ # GPT-2
12
+
13
+ Test the whole generation capabilities here: https://transformer.huggingface.co/doc/gpt2-large
14
+
15
+ Pretrained model on English language using a causal language modeling (CLM) objective. It was introduced in
16
+ [this paper](https://d4mucfpksywv.cloudfront.net/better-language-models/language_models_are_unsupervised_multitask_learners.pdf)
17
+ and first released at [this page](https://openai.com/blog/better-language-models/).
18
+
19
+ Disclaimer: The team releasing GPT-2 also wrote a
20
+ [model card](https://github.com/openai/gpt-2/blob/master/model_card.md) for their model. Content from this model card
21
+ has been written by the Hugging Face team to complete the information they provided and give specific examples of bias.
22
+
23
+ ## Model description
24
+
25
+ GPT-2 is a transformers model pretrained on a very large corpus of English data in a self-supervised fashion. This
26
+ means it was pretrained on the raw texts only, with no humans labelling them in any way (which is why it can use lots
27
+ of publicly available data) with an automatic process to generate inputs and labels from those texts. More precisely,
28
+ it was trained to guess the next word in sentences.
29
+
30
+ More precisely, inputs are sequences of continuous text of a certain length and the targets are the same sequence,
31
+ shifted one token (word or piece of word) to the right. The model uses internally a mask-mechanism to make sure the
32
+ predictions for the token `i` only uses the inputs from `1` to `i` but not the future tokens.
33
+
34
+ This way, the model learns an inner representation of the English language that can then be used to extract features
35
+ useful for downstream tasks. The model is best at what it was pretrained for however, which is generating texts from a
36
+ prompt.
37
+
38
+ ## Intended uses & limitations
39
+
40
+ You can use the raw model for text generation or fine-tune it to a downstream task. See the
41
+ [model hub](https://huggingface.co/models?filter=gpt2) to look for fine-tuned versions on a task that interests you.
42
+
43
+ ### How to use
44
+
45
+ You can use this model directly with a pipeline for text generation. Since the generation relies on some randomness, we
46
+ set a seed for reproducibility:
47
+
48
+ ```python
49
+ >>> from transformers import pipeline, set_seed
50
+ >>> generator = pipeline('text-generation', model='gpt2')
51
+ >>> set_seed(42)
52
+ >>> generator("Hello, I'm a language model,", max_length=30, num_return_sequences=5)
53
+
54
+ [{'generated_text': "Hello, I'm a language model, a language for thinking, a language for expressing thoughts."},
55
+ {'generated_text': "Hello, I'm a language model, a compiler, a compiler library, I just want to know how I build this kind of stuff. I don"},
56
+ {'generated_text': "Hello, I'm a language model, and also have more than a few of your own, but I understand that they're going to need some help"},
57
+ {'generated_text': "Hello, I'm a language model, a system model. I want to know my language so that it might be more interesting, more user-friendly"},
58
+ {'generated_text': 'Hello, I\\'m a language model, not a language model"\
59
+ \
60
+ The concept of "no-tricks" comes in handy later with new'}]
61
+ ```
62
+
63
+ Here is how to use this model to get the features of a given text in PyTorch:
64
+
65
+ ```python
66
+ from transformers import GPT2Tokenizer, GPT2Model
67
+ tokenizer = GPT2Tokenizer.from_pretrained('gpt2')
68
+ model = GPT2Model.from_pretrained('gpt2')
69
+ text = "Replace me by any text you'd like."
70
+ encoded_input = tokenizer(text, return_tensors='pt')
71
+ output = model(**encoded_input)
72
+ ```
73
+
74
+ and in TensorFlow:
75
+
76
+ ```python
77
+ from transformers import GPT2Tokenizer, TFGPT2Model
78
+ tokenizer = GPT2Tokenizer.from_pretrained('gpt2')
79
+ model = TFGPT2Model.from_pretrained('gpt2')
80
+ text = "Replace me by any text you'd like."
81
+ encoded_input = tokenizer(text, return_tensors='tf')
82
+ output = model(encoded_input)
83
+ ```
84
+
85
+ ### Limitations and bias
86
+
87
+ The training data used for this model has not been released as a dataset one can browse. We know it contains a lot of
88
+ unfiltered content from the internet, which is far from neutral. As the openAI team themselves point out in their
89
+ [model card](https://github.com/openai/gpt-2/blob/master/model_card.md#out-of-scope-use-cases):
90
+
91
+ > Because large-scale language models like GPT-2 do not distinguish fact from fiction, we don’t support use-cases
92
+ > that require the generated text to be true.
93
+ >
94
+ > Additionally, language models like GPT-2 reflect the biases inherent to the systems they were trained on, so we do
95
+ > not recommend that they be deployed into systems that interact with humans > unless the deployers first carry out a
96
+ > study of biases relevant to the intended use-case. We found no statistically significant difference in gender, race,
97
+ > and religious bias probes between 774M and 1.5B, implying all versions of GPT-2 should be approached with similar
98
+ > levels of caution around use cases that are sensitive to biases around human attributes.
99
+
100
+ Here's an example of how the model can have biased predictions:
101
+
102
+ ```python
103
+ >>> from transformers import pipeline, set_seed
104
+ >>> generator = pipeline('text-generation', model='gpt2')
105
+ >>> set_seed(42)
106
+ >>> generator("The White man worked as a", max_length=10, num_return_sequences=5)
107
+
108
+ [{'generated_text': 'The White man worked as a mannequin for'},
109
+ {'generated_text': 'The White man worked as a maniser of the'},
110
+ {'generated_text': 'The White man worked as a bus conductor by day'},
111
+ {'generated_text': 'The White man worked as a plumber at the'},
112
+ {'generated_text': 'The White man worked as a journalist. He had'}]
113
+
114
+ >>> set_seed(42)
115
+ >>> generator("The Black man worked as a", max_length=10, num_return_sequences=5)
116
+
117
+ [{'generated_text': 'The Black man worked as a man at a restaurant'},
118
+ {'generated_text': 'The Black man worked as a car salesman in a'},
119
+ {'generated_text': 'The Black man worked as a police sergeant at the'},
120
+ {'generated_text': 'The Black man worked as a man-eating monster'},
121
+ {'generated_text': 'The Black man worked as a slave, and was'}]
122
+ ```
123
+
124
+ This bias will also affect all fine-tuned versions of this model.
125
+
126
+ ## Training data
127
+
128
+ The OpenAI team wanted to train this model on a corpus as large as possible. To build it, they scraped all the web
129
+ pages from outbound links on Reddit which received at least 3 karma. Note that all Wikipedia pages were removed from
130
+ this dataset, so the model was not trained on any part of Wikipedia. The resulting dataset (called WebText) weights
131
+ 40GB of texts but has not been publicly released. You can find a list of the top 1,000 domains present in WebText
132
+ [here](https://github.com/openai/gpt-2/blob/master/domains.txt).
133
+
134
+ ## Training procedure
135
+
136
+ ### Preprocessing
137
+
138
+ The texts are tokenized using a byte-level version of Byte Pair Encoding (BPE) (for unicode characters) and a
139
+ vocabulary size of 50,257. The inputs are sequences of 1024 consecutive tokens.
140
+
141
+ The larger model was trained on 256 cloud TPU v3 cores. The training duration was not disclosed, nor were the exact
142
+ details of training.
143
+
144
+ ## Evaluation results
145
+
146
+ The model achieves the following results without any fine-tuning (zero-shot):
147
+
148
+ | Dataset | LAMBADA | LAMBADA | CBT-CN | CBT-NE | WikiText2 | PTB | enwiki8 | text8 | WikiText103 | 1BW |
149
+ |:--------:|:-------:|:-------:|:------:|:------:|:---------:|:------:|:-------:|:------:|:-----------:|:-----:|
150
+ | (metric) | (PPL) | (ACC) | (ACC) | (ACC) | (PPL) | (PPL) | (BPB) | (BPC) | (PPL) | (PPL) |
151
+ | | 35.13 | 45.99 | 87.65 | 83.4 | 29.41 | 65.85 | 1.16 | 1,17 | 37.50 | 75.20 |
152
+
153
+
154
+ ### BibTeX entry and citation info
155
+
156
+ ```bibtex
157
+ @article{radford2019language,
158
+ title={Language Models are Unsupervised Multitask Learners},
159
+ author={Radford, Alec and Wu, Jeff and Child, Rewon and Luan, David and Amodei, Dario and Sutskever, Ilya},
160
+ year={2019}
161
+ }
162
+ ```
163
+
164
+ <a href="https://huggingface.co/exbert/?model=gpt2">
165
+ \t<img width="300px" src="https://cdn-media.huggingface.co/exbert/button.png">
166
+ </a>
config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_new",
3
+ "architectures": [
4
+ "GPT2LMHeadModel"
5
+ ],
6
+ "attn_pdrop": 0.1,
7
+ "bos_token_id": 50256,
8
+ "embd_pdrop": 0.1,
9
+ "eos_token_id": 50256,
10
+ "initializer_range": 0.02,
11
+ "layer_norm_epsilon": 1e-05,
12
+ "model_type": "gpt2",
13
+ "n_ctx": 1024,
14
+ "n_embd": 768,
15
+ "n_head": 12,
16
+ "n_layer": 12,
17
+ "n_positions": 1024,
18
+ "resid_pdrop": 0.1,
19
+ "summary_activation": null,
20
+ "summary_first_dropout": 0.1,
21
+ "summary_proj_to_labels": true,
22
+ "summary_type": "cls_index",
23
+ "summary_use_proj": true,
24
+ "task_specific_params": {
25
+ "text-generation": {
26
+ "do_sample": true,
27
+ "max_length": 50
28
+ }
29
+ },
30
+ "vocab_size": 50257
31
+ }
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:192e8257ae9e8f796f764630f4a488a6a16d1461762d62b49ef7405df951a283
3
+ size 497764120
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc27c81ab93f3c679d2a98080ebf9c5a4b349cb9e3d3701f4e74c671baddc99e
3
+ size 548105200
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c5d3f4b8b76583b422fcb9189ad6c89d5d97a094541ce8932dce3ecabde1421
3
+ size 548118077
rust_model.ot ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adf0adedbf4016b249550f866c66a3b3a3d09c8b3b3a1f6e5e9a265d94e0270e
3
+ size 702517648
tf_model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d08c1307f7dfae6f878e0a2ca5715d587d2640530db8ef96fc0c1fc474dd9fee
3
+ size 497933648
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
vocab.json ADDED
The diff for this file is too large to render. See raw diff