munish0838 commited on
Commit
7eae6f0
1 Parent(s): 8ddf641

Create README.md

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