Deividas Mataciunas
commited on
Commit
·
cabe18e
1
Parent(s):
647ca25
First model version
Browse files- .DS_Store +0 -0
- config.json +23 -0
- merges.txt +0 -0
- special_tokens_map.json +1 -0
- tf_model.h5 +3 -0
- tokenizer_config.json +1 -0
- vocab.json +0 -0
.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"activation_function": "gelu_new",
|
| 3 |
+
"attn_pdrop": 0.1,
|
| 4 |
+
"bos_token_id": 0,
|
| 5 |
+
"embd_pdrop": 0.1,
|
| 6 |
+
"eos_token_id": 2,
|
| 7 |
+
"initializer_range": 0.02,
|
| 8 |
+
"layer_norm_epsilon": 1e-05,
|
| 9 |
+
"model_type": "gpt2",
|
| 10 |
+
"n_ctx": 1024,
|
| 11 |
+
"n_embd": 768,
|
| 12 |
+
"n_head": 12,
|
| 13 |
+
"n_inner": null,
|
| 14 |
+
"n_layer": 12,
|
| 15 |
+
"n_positions": 1024,
|
| 16 |
+
"resid_pdrop": 0.1,
|
| 17 |
+
"summary_activation": null,
|
| 18 |
+
"summary_first_dropout": 0.1,
|
| 19 |
+
"summary_proj_to_labels": true,
|
| 20 |
+
"summary_type": "cls_index",
|
| 21 |
+
"summary_use_proj": true,
|
| 22 |
+
"vocab_size": 50000
|
| 23 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"bos_token": "<s>", "eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>", "mask_token": "<mask>"}
|
tf_model.h5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a09db39d4309a9ce24982b5a1fcf6bd66f19b98d48396e57cc3e2664bcf3077d
|
| 3 |
+
size 497145960
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"special_tokens_map_file": null, "full_tokenizer_file": null}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|