Asis commited on
Commit
a8f01df
1 Parent(s): 2d3b2fc

First model version

Browse files
.gitattributes CHANGED
@@ -1,28 +1,5 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
 
 
3
  *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bin.* filter=lfs diff=lfs merge=lfs -text
5
- *.bz2 filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.model filter=lfs diff=lfs merge=lfs -text
12
- *.msgpack filter=lfs diff=lfs merge=lfs -text
13
- *.onnx filter=lfs diff=lfs merge=lfs -text
14
- *.ot filter=lfs diff=lfs merge=lfs -text
15
- *.parquet filter=lfs diff=lfs merge=lfs -text
16
- *.pb filter=lfs diff=lfs merge=lfs -text
17
- *.pt filter=lfs diff=lfs merge=lfs -text
18
- *.pth filter=lfs diff=lfs merge=lfs -text
19
- *.rar filter=lfs diff=lfs merge=lfs -text
20
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
21
- *.tar.* filter=lfs diff=lfs merge=lfs -text
22
- *.tflite filter=lfs diff=lfs merge=lfs -text
23
- *.tgz filter=lfs diff=lfs merge=lfs -text
24
- *.wasm filter=lfs diff=lfs merge=lfs -text
25
- *.xz filter=lfs diff=lfs merge=lfs -text
26
- *.zip filter=lfs diff=lfs merge=lfs -text
27
- *.zstandard filter=lfs diff=lfs merge=lfs -text
28
- *tfevents* filter=lfs diff=lfs merge=lfs -text
 
1
+ ## git-lfs ##
2
+ #
3
+ #
4
+ # models
5
  *.bin filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
added_tokens.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"<|startoftext|>": 50257, "<|pad|>": 50258}
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "gpt2",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2LMHeadModel"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 50256,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gpt2",
14
+ "n_ctx": 1024,
15
+ "n_embd": 768,
16
+ "n_head": 12,
17
+ "n_inner": null,
18
+ "n_layer": 12,
19
+ "n_positions": 1024,
20
+ "reorder_and_upcast_attn": false,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_by_inverse_layer_idx": false,
23
+ "scale_attn_weights": true,
24
+ "summary_activation": null,
25
+ "summary_first_dropout": 0.1,
26
+ "summary_proj_to_labels": true,
27
+ "summary_type": "cls_index",
28
+ "summary_use_proj": true,
29
+ "task_specific_params": {
30
+ "text-generation": {
31
+ "do_sample": true,
32
+ "max_length": 50
33
+ }
34
+ },
35
+ "torch_dtype": "float32",
36
+ "transformers_version": "4.17.0",
37
+ "use_cache": true,
38
+ "vocab_size": 50259
39
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20bbdf00f973a93dd0c9dc7e7c5843c2bc24b7c6a696d93ed92f3c89c910d65e
3
+ size 510410537
requirements.txt ADDED
@@ -0,0 +1,394 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ absl-py==1.0.0
2
+ alabaster==0.7.12
3
+ albumentations==0.1.12
4
+ altair==4.2.0
5
+ appdirs==1.4.4
6
+ argon2-cffi==21.3.0
7
+ argon2-cffi-bindings==21.2.0
8
+ arviz==0.11.4
9
+ astor==0.8.1
10
+ astropy==4.3.1
11
+ astunparse==1.6.3
12
+ atari-py==0.2.9
13
+ atomicwrites==1.4.0
14
+ attrs==21.4.0
15
+ audioread==2.1.9
16
+ autograd==1.3
17
+ Babel==2.9.1
18
+ backcall==0.2.0
19
+ beautifulsoup4==4.6.3
20
+ bleach==4.1.0
21
+ blis==0.4.1
22
+ bokeh==2.3.3
23
+ Bottleneck==1.3.4
24
+ branca==0.4.2
25
+ bs4==0.0.1
26
+ CacheControl==0.12.10
27
+ cached-property==1.5.2
28
+ cachetools==4.2.4
29
+ catalogue==1.0.0
30
+ certifi==2021.10.8
31
+ cffi==1.15.0
32
+ cftime==1.6.0
33
+ chardet==3.0.4
34
+ charset-normalizer==2.0.12
35
+ click==7.1.2
36
+ cloudpickle==1.3.0
37
+ cmake==3.12.0
38
+ cmdstanpy==0.9.5
39
+ colorcet==3.0.0
40
+ colorlover==0.3.0
41
+ community==1.0.0b1
42
+ contextlib2==0.5.5
43
+ convertdate==2.4.0
44
+ coverage==3.7.1
45
+ coveralls==0.5
46
+ crcmod==1.7
47
+ cufflinks==0.17.3
48
+ cupy-cuda111==9.4.0
49
+ cvxopt==1.2.7
50
+ cvxpy==1.0.31
51
+ cycler==0.11.0
52
+ cymem==2.0.6
53
+ Cython==0.29.28
54
+ daft==0.0.4
55
+ dask==2.12.0
56
+ datascience==0.10.6
57
+ debugpy==1.0.0
58
+ decorator==4.4.2
59
+ defusedxml==0.7.1
60
+ descartes==1.1.0
61
+ dill==0.3.4
62
+ distributed==1.25.3
63
+ dlib==19.18.0
64
+ dm-tree==0.1.6
65
+ docopt==0.6.2
66
+ docutils==0.17.1
67
+ dopamine-rl==1.0.5
68
+ earthengine-api==0.1.303
69
+ easydict==1.9
70
+ ecos==2.0.10
71
+ editdistance==0.5.3
72
+ en-core-web-sm==2.2.5
73
+ entrypoints==0.4
74
+ ephem==4.1.3
75
+ et-xmlfile==1.1.0
76
+ fa2==0.3.5
77
+ fastai==1.0.61
78
+ fastdtw==0.3.4
79
+ fastprogress==1.0.2
80
+ fastrlock==0.8
81
+ fbprophet==0.7.1
82
+ feather-format==0.4.1
83
+ filelock==3.6.0
84
+ firebase-admin==4.4.0
85
+ fix-yahoo-finance==0.0.22
86
+ Flask==1.1.4
87
+ flatbuffers==2.0
88
+ folium==0.8.3
89
+ future==0.16.0
90
+ gast==0.5.3
91
+ GDAL==2.2.2
92
+ gdown==4.2.2
93
+ gensim==3.6.0
94
+ geographiclib==1.52
95
+ geopy==1.17.0
96
+ gin-config==0.5.0
97
+ glob2==0.7
98
+ google==2.0.3
99
+ google-api-core==1.26.3
100
+ google-api-python-client==1.12.11
101
+ google-auth==1.35.0
102
+ google-auth-httplib2==0.0.4
103
+ google-auth-oauthlib==0.4.6
104
+ google-cloud-bigquery==1.21.0
105
+ google-cloud-bigquery-storage==1.1.0
106
+ google-cloud-core==1.0.3
107
+ google-cloud-datastore==1.8.0
108
+ google-cloud-firestore==1.7.0
109
+ google-cloud-language==1.2.0
110
+ google-cloud-storage==1.18.1
111
+ google-cloud-translate==1.5.0
112
+ google-colab==1.0.0
113
+ google-pasta==0.2.0
114
+ google-resumable-media==0.4.1
115
+ googleapis-common-protos==1.56.0
116
+ googledrivedownloader==0.4
117
+ graphviz==0.10.1
118
+ greenlet==1.1.2
119
+ grpcio==1.44.0
120
+ gspread==3.4.2
121
+ gspread-dataframe==3.0.8
122
+ gym==0.17.3
123
+ h5py==3.1.0
124
+ HeapDict==1.0.1
125
+ hijri-converter==2.2.3
126
+ holidays==0.10.5.2
127
+ holoviews==1.14.8
128
+ html5lib==1.0.1
129
+ httpimport==0.5.18
130
+ httplib2==0.17.4
131
+ httplib2shim==0.0.3
132
+ huggingface-hub==0.4.0
133
+ humanize==0.5.1
134
+ hyperopt==0.1.2
135
+ ideep4py==2.0.0.post3
136
+ idna==2.10
137
+ imageio==2.4.1
138
+ imagesize==1.3.0
139
+ imbalanced-learn==0.8.1
140
+ imblearn==0.0
141
+ imgaug==0.2.9
142
+ importlib-metadata==4.11.3
143
+ importlib-resources==5.4.0
144
+ imutils==0.5.4
145
+ inflect==2.1.0
146
+ iniconfig==1.1.1
147
+ intel-openmp==2022.0.2
148
+ intervaltree==2.1.0
149
+ ipykernel==4.10.1
150
+ ipython==5.5.0
151
+ ipython-genutils==0.2.0
152
+ ipython-sql==0.3.9
153
+ ipywidgets==7.7.0
154
+ itsdangerous==1.1.0
155
+ jax==0.3.4
156
+ jaxlib==0.3.2+cuda11.cudnn805
157
+ jedi==0.18.1
158
+ jieba==0.42.1
159
+ Jinja2==2.11.3
160
+ joblib==1.1.0
161
+ jpeg4py==0.1.4
162
+ jsonschema==4.3.3
163
+ jupyter==1.0.0
164
+ jupyter-client==5.3.5
165
+ jupyter-console==5.2.0
166
+ jupyter-core==4.9.2
167
+ jupyterlab-pygments==0.1.2
168
+ jupyterlab-widgets==1.1.0
169
+ kaggle==1.5.12
170
+ kapre==0.3.7
171
+ keras==2.8.0
172
+ Keras-Preprocessing==1.1.2
173
+ keras-vis==0.4.1
174
+ kiwisolver==1.4.0
175
+ korean-lunar-calendar==0.2.1
176
+ libclang==13.0.0
177
+ librosa==0.8.1
178
+ lightgbm==2.2.3
179
+ llvmlite==0.34.0
180
+ lmdb==0.99
181
+ LunarCalendar==0.0.9
182
+ lxml==4.2.6
183
+ Markdown==3.3.6
184
+ MarkupSafe==2.0.1
185
+ matplotlib==3.2.2
186
+ matplotlib-inline==0.1.3
187
+ matplotlib-venn==0.11.6
188
+ missingno==0.5.1
189
+ mistune==0.8.4
190
+ mizani==0.6.0
191
+ mkl==2019.0
192
+ mlxtend==0.14.0
193
+ more-itertools==8.12.0
194
+ moviepy==0.2.3.5
195
+ mpmath==1.2.1
196
+ msgpack==1.0.3
197
+ multiprocess==0.70.12.2
198
+ multitasking==0.0.10
199
+ murmurhash==1.0.6
200
+ music21==5.5.0
201
+ natsort==5.5.0
202
+ nbclient==0.5.13
203
+ nbconvert==5.6.1
204
+ nbformat==5.2.0
205
+ nest-asyncio==1.5.4
206
+ netCDF4==1.5.8
207
+ networkx==2.6.3
208
+ nibabel==3.0.2
209
+ nltk==3.2.5
210
+ notebook==5.3.1
211
+ numba==0.51.2
212
+ numexpr==2.8.1
213
+ numpy==1.21.5
214
+ nvidia-ml-py3==7.352.0
215
+ oauth2client==4.1.3
216
+ oauthlib==3.2.0
217
+ okgrade==0.4.3
218
+ opencv-contrib-python==4.1.2.30
219
+ opencv-python==4.1.2.30
220
+ openpyxl==3.0.9
221
+ opt-einsum==3.3.0
222
+ osqp==0.6.2.post0
223
+ packaging==21.3
224
+ palettable==3.3.0
225
+ pandas==1.3.5
226
+ pandas-datareader==0.9.0
227
+ pandas-gbq==0.13.3
228
+ pandas-profiling==1.4.1
229
+ pandocfilters==1.5.0
230
+ panel==0.12.1
231
+ param==1.12.0
232
+ parso==0.8.3
233
+ pathlib==1.0.1
234
+ patsy==0.5.2
235
+ pep517==0.12.0
236
+ pexpect==4.8.0
237
+ pickleshare==0.7.5
238
+ Pillow==7.1.2
239
+ pip==21.1.3
240
+ pip-tools==6.2.0
241
+ plac==1.1.3
242
+ plotly==5.5.0
243
+ plotnine==0.6.0
244
+ pluggy==0.7.1
245
+ pooch==1.6.0
246
+ portpicker==1.3.9
247
+ prefetch-generator==1.0.1
248
+ preshed==3.0.6
249
+ prettytable==3.2.0
250
+ progressbar2==3.38.0
251
+ prometheus-client==0.13.1
252
+ promise==2.3
253
+ prompt-toolkit==1.0.18
254
+ protobuf==3.17.3
255
+ psutil==5.4.8
256
+ psycopg2==2.7.6.1
257
+ ptyprocess==0.7.0
258
+ py==1.11.0
259
+ pyarrow==6.0.1
260
+ pyasn1==0.4.8
261
+ pyasn1-modules==0.2.8
262
+ pycocotools==2.0.4
263
+ pycparser==2.21
264
+ pyct==0.4.8
265
+ pydata-google-auth==1.4.0
266
+ pydot==1.3.0
267
+ pydot-ng==2.0.0
268
+ pydotplus==2.0.2
269
+ PyDrive==1.3.1
270
+ pyemd==0.5.1
271
+ pyerfa==2.0.0.1
272
+ pyglet==1.5.0
273
+ Pygments==2.6.1
274
+ pygobject==3.26.1
275
+ pymc3==3.11.4
276
+ PyMeeus==0.5.11
277
+ pymongo==4.0.2
278
+ pymystem3==0.2.0
279
+ PyOpenGL==3.1.6
280
+ pyparsing==3.0.7
281
+ pyrsistent==0.18.1
282
+ pysndfile==1.3.8
283
+ PySocks==1.7.1
284
+ pystan==2.19.1.1
285
+ pytest==3.6.4
286
+ python-apt==0.0.0
287
+ python-chess==0.23.11
288
+ python-dateutil==2.8.2
289
+ python-louvain==0.16
290
+ python-slugify==6.1.1
291
+ python-utils==3.1.0
292
+ pytz==2018.9
293
+ pyviz-comms==2.1.0
294
+ PyWavelets==1.3.0
295
+ PyYAML==6.0
296
+ pyzmq==22.3.0
297
+ qdldl==0.1.5.post0
298
+ qtconsole==5.2.2
299
+ QtPy==2.0.1
300
+ regex==2019.12.20
301
+ requests==2.23.0
302
+ requests-oauthlib==1.3.1
303
+ resampy==0.2.2
304
+ rpy2==3.4.5
305
+ rsa==4.8
306
+ sacremoses==0.0.49
307
+ scikit-image==0.18.3
308
+ scikit-learn==1.0.2
309
+ scipy==1.4.1
310
+ screen-resolution-extra==0.0.0
311
+ scs==3.2.0
312
+ seaborn==0.11.2
313
+ semver==2.13.0
314
+ Send2Trash==1.8.0
315
+ setuptools==57.4.0
316
+ setuptools-git==1.2
317
+ Shapely==1.8.1.post1
318
+ simplegeneric==0.8.1
319
+ six==1.15.0
320
+ sklearn==0.0
321
+ sklearn-pandas==1.8.0
322
+ smart-open==5.2.1
323
+ snowballstemmer==2.2.0
324
+ sortedcontainers==2.4.0
325
+ SoundFile==0.10.3.post1
326
+ soupsieve==2.3.1
327
+ spacy==2.2.4
328
+ Sphinx==1.8.6
329
+ sphinxcontrib-serializinghtml==1.1.5
330
+ sphinxcontrib-websupport==1.2.4
331
+ SQLAlchemy==1.4.32
332
+ sqlparse==0.4.2
333
+ srsly==1.0.5
334
+ statsmodels==0.10.2
335
+ sympy==1.7.1
336
+ tables==3.7.0
337
+ tabulate==0.8.9
338
+ tblib==1.7.0
339
+ tenacity==8.0.1
340
+ tensorboard==2.8.0
341
+ tensorboard-data-server==0.6.1
342
+ tensorboard-plugin-wit==1.8.1
343
+ tensorflow==2.8.0
344
+ tensorflow-datasets==4.0.1
345
+ tensorflow-estimator==2.8.0
346
+ tensorflow-gcs-config==2.8.0
347
+ tensorflow-hub==0.12.0
348
+ tensorflow-io-gcs-filesystem==0.24.0
349
+ tensorflow-metadata==1.7.0
350
+ tensorflow-probability==0.16.0
351
+ termcolor==1.1.0
352
+ terminado==0.13.3
353
+ testpath==0.6.0
354
+ text-unidecode==1.3
355
+ textblob==0.15.3
356
+ Theano-PyMC==1.1.2
357
+ thinc==7.4.0
358
+ threadpoolctl==3.1.0
359
+ tifffile==2021.11.2
360
+ tokenizers==0.11.6
361
+ tomli==2.0.1
362
+ toolz==0.11.2
363
+ torch==1.10.0+cu111
364
+ torchaudio==0.10.0+cu111
365
+ torchsummary==1.5.1
366
+ torchtext==0.11.0
367
+ torchvision==0.11.1+cu111
368
+ tornado==5.1.1
369
+ tqdm==4.63.0
370
+ traitlets==5.1.1
371
+ transformers==4.17.0
372
+ tweepy==3.10.0
373
+ typeguard==2.7.1
374
+ typing-extensions==3.10.0.2
375
+ tzlocal==1.5.1
376
+ uritemplate==3.0.1
377
+ urllib3==1.24.3
378
+ vega-datasets==0.9.0
379
+ wasabi==0.9.0
380
+ wcwidth==0.2.5
381
+ webencodings==0.5.1
382
+ Werkzeug==1.0.1
383
+ wheel==0.37.1
384
+ widgetsnbextension==3.6.0
385
+ wordcloud==1.5.0
386
+ wrapt==1.14.0
387
+ xarray==0.18.2
388
+ xgboost==0.90
389
+ xkit==0.0.0
390
+ xlrd==1.1.0
391
+ xlwt==1.3.0
392
+ yellowbrick==1.4
393
+ zict==2.1.0
394
+ zipp==3.7.0
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": {"content": "<|startoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "eos_token": {"content": "<|endoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "unk_token": {"content": "<|endoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, "pad_token": "<|pad|>"}
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"errors": "replace", "unk_token": {"content": "<|endoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "bos_token": {"content": "<|startoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "eos_token": {"content": "<|endoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "add_prefix_space": false, "pad_token": "<|pad|>", "model_max_length": 1024, "special_tokens_map_file": null, "name_or_path": "gpt2", "tokenizer_class": "GPT2Tokenizer"}
vocab.json ADDED
The diff for this file is too large to render. See raw diff