Ezi Ozoani commited on
Commit
e49ca90
1 Parent(s): 8943828

inital model card part

Browse files
Files changed (1) hide show
  1. app.py +299 -2
app.py CHANGED
@@ -1,4 +1,301 @@
1
  import streamlit as st
 
 
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
+ from pathlib import Path
3
+ import base64
4
 
5
+ # Initial page config
6
+
7
+ st.set_page_config(
8
+ page_title='Model Cards Mockup',
9
+ layout="wide",
10
+ initial_sidebar_state="expanded",
11
+ )
12
+
13
+ def main():
14
+ cs_sidebar()
15
+ cs_body()
16
+
17
+ return None
18
+
19
+ # Thanks to streamlitopedia for the following code snippet
20
+
21
+ def img_to_bytes(img_path):
22
+ img_bytes = Path(img_path).read_bytes()
23
+ encoded = base64.b64encode(img_bytes).decode()
24
+ return encoded
25
+
26
+ # sidebar
27
+
28
+ def cs_sidebar():
29
+
30
+
31
+ st.sidebar.header('Model Cards Mockup')
32
+
33
+
34
+ st.sidebar.markdown('Limitations')
35
+
36
+ st.sidebar.code('[type]')
37
+
38
+ st.sidebar.markdown('Bias')
39
+ st.sidebar.code('[type]')
40
+
41
+ st.sidebar.markdown('Good to know')
42
+ st.sidebar.code('''
43
+ [type])
44
+ ''')
45
+
46
+
47
+
48
+ return None
49
+
50
+ ##########################
51
+ # Main body of cheat sheet
52
+ ##########################
53
+
54
+ def cs_body():
55
+ # Model Cards
56
+
57
+ col1, col2= st.columns(2)
58
+
59
+ col1.subheader('DistilGPT2')
60
+ col1.markdown('''DistilGPT2 (short for Distilled-GPT2) is an English-language model pre-trained with the supervision of the
61
+ smallest version of Generative Pre-trained Transformer 2 (GPT-2). Like GPT-2, DistilGPT2 can be used to generate text.
62
+ Users of this model card should also consider information about the design, training, and limitations of [GPT-2]
63
+ ''')
64
+
65
+ # Model Details
66
+
67
+ col1.subheader('Model Details')
68
+ col1.markdown('''
69
+ **Developed by:** Hugging Face
70
+ - **Model type:** Transformer-based Language Model
71
+ - **Language:** English
72
+ - **License:** Apache 2.0
73
+ - **Model Description:** DistilGPT2 is an English-language model pre-trained with the supervision of the 124 million parameter version of GPT-2. DistilGPT2, which has 82 million parameters, was developed using [knowledge distillation](#knowledge-distillation) and was designed to be a faster, lighter version of GPT-2.
74
+ - **Resources for more information:** See [this repository](https://github.com/huggingface/transformers/tree/main/examples/research_projects/distillation) for more about Distil\* (a class of compressed models including Distilled-GPT2), [Sanh et al. (2019)](https://arxiv.org/abs/1910.01108) for more information about knowledge distillation and the training procedure, and this page for more about [GPT-2](https://openai.com/blog/better-language-models/).
75
+
76
+ ''')
77
+
78
+ # Uses, Limitations and Risks
79
+
80
+ with col1.subheader('Limitations and Risks'):
81
+ col1.subheader('')
82
+ with col1.expander(""):
83
+ st.markdown('''
84
+
85
+ As the developers of GPT-2 (OpenAI) note in their [model card](https://github.com/openai/gpt-2/blob/master/model_card.md), "language models like GPT-2 reflect the biases inherent to the systems they were trained on." Significant research has explored bias and fairness issues with models for language generation including GPT-2 (see, e.g., [Sheng et al. (2021)](https://aclanthology.org/2021.acl-long.330.pdf) and [Bender et al. (2021)](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)).
86
+
87
+ DistilGPT2 also suffers from persistent bias issues, as highlighted in the demonstrative examples below. Note that these examples are not a comprehensive stress-testing of the model. Readers considering using the model should consider more rigorous evaluations of the model depending on their use case and context.
88
+
89
+ The impact of model compression techniques - such as knowledge distillation - on bias and fairness issues associated with language models is an active area of research. For example:
90
+
91
+ - [Silva, Tambwekar and Gombolay (2021)](https://aclanthology.org/2021.naacl-main.189.pdf) find that distilled versions of BERT and RoBERTa consistently exhibit statistically significant bias (with regard to gender and race) with effect sizes larger than the teacher models.
92
+ - [Xu and Hu (2022)](https://arxiv.org/pdf/2201.08542.pdf) find that distilled versions of GPT-2 showed consistent reductions in toxicity and bias compared to the teacher model (see the paper for more detail on metrics used to define/measure toxicity and bias).
93
+ - [Gupta et al. (2022)](https://arxiv.org/pdf/2203.12574.pdf) find that DistilGPT2 exhibits greater gender disparities than GPT-2 and propose a technique for mitigating gender bias in distilled language models like DistilGPT2.
94
+
95
+ ```python
96
+ >>> from transformers import pipeline, set_seed
97
+ >>> generator = pipeline('text-generation', model='distilgpt2')
98
+ >>> set_seed(48)
99
+ >>> generator("The White man worked as a", max_length=20, num_return_sequences=3)
100
+ [{'generated_text': "The White man worked as a salesman at a McDonald's restaurant called Kia at the time of the"},
101
+ {'generated_text': 'The White man worked as a contractor in the Army in the late 1990s. He became a "'},
102
+ {'generated_text': 'The White man worked as a police spokesman to the US Navy in the 1930s.'}]
103
+
104
+ >>> set_seed(48)
105
+ >>> generator("The Black man worked as a", max_length=20, num_return_sequences=3)
106
+ [{'generated_text': 'The Black man worked as a shop assistant for an hour at Wal-Mart at Wal-Mart in'},
107
+ {'generated_text': 'The Black man worked as a waiter in the hotel when he was assaulted when he got out of a'},
108
+ {'generated_text': 'The Black man worked as a police spokesman four months ago...'}]
109
+ ```
110
+ ''')
111
+
112
+ col1.subheader('Potential Uses')
113
+ col1.markdown('''
114
+
115
+
116
+
117
+
118
+ Since DistilGPT2 is a distilled version of GPT-2, it is intended to be used for similar use cases with the increased functionality of being smaller and easier to run than the base model.
119
+
120
+ The developers of GPT-2 state in their [model card](https://github.com/openai/gpt-2/blob/master/model_card.md) that they envisioned GPT-2 would be used by researchers to better understand large-scale generative language models, with possible secondary use cases including:
121
+
122
+ > - *Writing assistance: Grammar assistance, autocompletion (for normal prose or code)*
123
+ > - *Creative writing and art: exploring the generation of creative, fictional texts; aiding creation of poetry and other literary art.*
124
+ > - *Entertainment: Creation of games, chat bots, and amusing generations.*
125
+
126
+ Using DistilGPT2, the Hugging Face team built the [Write With Transformers](https://transformer.huggingface.co/doc/distil-gpt2) web app, which allows users to play with the model to generate text directly from their browser.
127
+ ''')
128
+ col1.subheader('Out-of-scope Uses')
129
+ with col1.expander(""):
130
+ col1.markdown('''
131
+
132
+
133
+ OpenAI states in the GPT-2 [model card](https://github.com/openai/gpt-2/blob/master/model_card.md):
134
+
135
+ > Because large-scale language models like GPT-2 do not distinguish fact from fiction, we don't support use-cases that require the generated text to be true.
136
+ >
137
+ > Additionally, language models like GPT-2 reflect the biases inherent to the systems they were trained on, so we do not recommend that they be deployed into systems that interact with humans unless the deployers first carry out a study of biases relevant to the intended use-case.
138
+
139
+ ''')
140
+
141
+ # How to Get Started
142
+
143
+ col1.subheader('How to Get Started')
144
+ with col1.expander(""):
145
+ st.markdown('''
146
+
147
+
148
+
149
+ *Be sure to read the sections on in-scope and out-of-scope uses and limitations of the model for further information on how to use the model.*
150
+
151
+ Using DistilGPT2 is similar to using GPT-2. DistilGPT2 can be used directly with a pipeline for text generation. Since the generation relies on some randomness, we set a seed for reproducibility:
152
+
153
+ ```python
154
+ >>> from transformers import pipeline, set_seed
155
+ >>> generator = pipeline('text-generation', model='distilgpt2')
156
+ >>> set_seed(42)
157
+ >>> generator("Hello, I'm a language model", max_length=20, num_return_sequences=5)
158
+ Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.
159
+ [{'generated_text': "Hello, I'm a language model, I'm a language model. In my previous post I've"},
160
+ {'generated_text': "Hello, I'm a language model, and I'd love to hear what you think about it."},
161
+ {'generated_text': "Hello, I'm a language model, but I don't get much of a connection anymore, so"},
162
+ {'generated_text': "Hello, I'm a language model, a functional language... It's not an example, and that"},
163
+ {'generated_text': "Hello, I'm a language model, not an object model.\n\nIn a nutshell, I"}]
164
+ ```
165
+
166
+
167
+ **Here is how to use this model to get the features of a given text in PyTorch**:
168
+
169
+ ```python
170
+ from transformers import GPT2Tokenizer, GPT2Model
171
+ tokenizer = GPT2Tokenizer.from_pretrained('distilgpt2')
172
+ model = GPT2Model.from_pretrained('distilgpt2')
173
+ text = "Replace me by any text you'd like."
174
+ encoded_input = tokenizer(text, return_tensors='pt')
175
+ output = model(**encoded_input)
176
+ ```
177
+
178
+ **And in TensorFlow:**
179
+
180
+ ```python
181
+ from transformers import GPT2Tokenizer, TFGPT2Model
182
+ tokenizer = GPT2Tokenizer.from_pretrained('distilgpt2')
183
+ model = TFGPT2Model.from_pretrained('distilgpt2')
184
+ text = "Replace me by any text you'd like."
185
+ encoded_input = tokenizer(text, return_tensors='tf')
186
+ output = model(encoded_input)
187
+ ```
188
+
189
+ ''')
190
+
191
+
192
+ # Training Data
193
+
194
+ col1.subheader('Training Data')
195
+ col1.markdown('''
196
+ DistilGPT2 was trained using [OpenWebTextCorpus](https://skylion007.github.io/OpenWebTextCorpus/), an open-source reproduction of
197
+ OpenAI's WebText dataset, which was used to train GPT-2.
198
+ See the [OpenWebTextCorpus Dataset Card](https://huggingface.co/datasets/openwebtext) for additional information about
199
+ OpenWebTextCorpus and [Radford et al. (2019)](https://d4mucfpksywv.cloudfront.net/better-language-models/language-models.pdf)
200
+ for additional information about WebText.
201
+
202
+ ''')
203
+
204
+ # Training Procedure
205
+
206
+ col1.subheader('Training Procedure')
207
+ col1.markdown('''
208
+ The texts were tokenized using the same tokenizer as GPT-2, a byte-level version of Byte Pair Encoding (BPE). DistilGPT2 was
209
+ trained using knowledge distillation, following a procedure similar to the training procedure for DistilBERT, described in more
210
+ detail in [Sanh et al. (2019)](https://arxiv.org/abs/1910.01108).
211
+ ''')
212
+
213
+
214
+
215
+ # Evaluation Results
216
+
217
+ col1.subheader('Evaluation Results')
218
+ col1.markdown('''
219
+ The creators of DistilGPT2 [report](https://github.com/huggingface/transformers/tree/main/examples/research_projects/distillation)
220
+ that, on the [WikiText-103](https://blog.einstein.ai/the-wikitext-long-term-dependency-language-modeling-dataset/) benchmark,
221
+ GPT-2 reaches a perplexity on the test set of 16.3 compared to 21.1 for DistilGPT2 (after fine-tuning on the train set).
222
+
223
+ ''')
224
+
225
+
226
+ # Environmental Impact
227
+
228
+ col1.subheader('Environmental Impact')
229
+ col1.markdown('''
230
+ *Carbon emissions were estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute)
231
+ presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700). The hardware, runtime, cloud provider, and compute region
232
+ were utilized to estimate the carbon impact.*
233
+
234
+ - **Hardware Type:** 8 16GB V100
235
+ - **Hours used:** 168 (1 week)
236
+ - **Cloud Provider:** Azure
237
+ - **Compute Region:** unavailable, assumed East US for calculations
238
+ - **Carbon Emitted** *(Power consumption x Time x Carbon produced based on location of power grid)*: 149.2 kg eq. CO2
239
+
240
+
241
+
242
+
243
+ ''')
244
+
245
+
246
+ # Citation
247
+
248
+ col1.subheader('Citation')
249
+ col1.markdown('''
250
+ ```bibtex
251
+ @inproceedings{sanh2019distilbert,
252
+ title={DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter},
253
+ author={Sanh, Victor and Debut, Lysandre and Chaumond, Julien and Wolf, Thomas},
254
+ booktitle={NeurIPS EMC^2 Workshop},
255
+ year={2019}
256
+ }
257
+ ```
258
+ ''')
259
+
260
+ # Glossary
261
+
262
+ col1.subheader('Glossary')
263
+ col1.markdown(''' - **Knowledge Distillation**: As described in [Sanh et al. (2019)](https://arxiv.org/pdf/1910.01108.pdf), "knowledge distillation is a compression technique in which a compact model - the student - is trained to reproduce the behavior of a larger model - the teacher - or an ensemble of models." Also see [Bucila et al. (2006)](https://www.cs.cornell.edu/~caruana/compression.kdd06.pdf) and [Hinton et al. (2015)](https://arxiv.org/abs/1503.02531).
264
+
265
+ ''')
266
+
267
+
268
+
269
+ # Try App
270
+
271
+ col2.subheader('Try App')
272
+ col2.code('''[To:do add code]
273
+ ''')
274
+
275
+ # Visuals
276
+
277
+ col2.subheader('Visuals')
278
+ col2.code('''
279
+ [temp]
280
+ ''')
281
+
282
+
283
+
284
+
285
+
286
+ # Placeholders, help, and options
287
+
288
+ col2.subheader('Placeholders, help, and anything else')
289
+ col2.code('''
290
+
291
+ ''')
292
+
293
+
294
+
295
+
296
+ return None
297
+
298
+ # Run main()
299
+
300
+ if __name__ == '__main__':
301
+ main()