Commit
·
496e0cb
1
Parent(s):
8b17547
Initial commit
Browse files- config.json +24 -0
- merges.txt +0 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- vocab.json +0 -0
config.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"num_layers": 32,
|
| 3 |
+
"d_model": 4096,
|
| 4 |
+
"attention_heads": 32,
|
| 5 |
+
"ffn_dim": 16384,
|
| 6 |
+
"vocab_size": 50261,
|
| 7 |
+
"bos_token_id": 50257,
|
| 8 |
+
"eos_token_id": 50259,
|
| 9 |
+
"activation_dropout": 0.0,
|
| 10 |
+
"activation_function": "gelu",
|
| 11 |
+
"architectures": [
|
| 12 |
+
"XGLMForCausalLM"
|
| 13 |
+
],
|
| 14 |
+
"attention_dropout": 0.1,
|
| 15 |
+
"dropout": 0.1,
|
| 16 |
+
"init_std": 0.02,
|
| 17 |
+
"layerdrop": 0.0,
|
| 18 |
+
"max_position_embeddings": 2048,
|
| 19 |
+
"model_type": "xglm",
|
| 20 |
+
"tokenizer_class": "GPT2Tokenizer",
|
| 21 |
+
"scale_embedding": true,
|
| 22 |
+
"transformers_version": "4.17.0",
|
| 23 |
+
"use_cache": true
|
| 24 |
+
}
|
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:b7e8efbc150c9bbad3e4f7edb83896d7bd5532e7876022227eda5fbaaa4eb56f
|
| 3 |
+
size 13711967353
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"bos_token": "<s>", "eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>", "sep_token": "<|endoftext|>"}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|