loiccabannes
commited on
Commit
•
3ec46e9
1
Parent(s):
e50119f
model and tokenizer first upload
Browse files- config.json +1 -0
- emoji.json +0 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +30 -0
- tokenizer_config.json +29 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"d_model": 1024, "n_layer": 48, "vocab_size": 32000, "ssm_cfg": {}, "rms_norm": true, "residual_in_fp32": true, "fused_add_norm": true, "pad_vocab_size_multiple": 8}
|
emoji.json
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:2093be9f3a7a991c62be35020295c46d099c3b83f85fe69bb0871f04abf32706
|
3 |
+
size 709121042
|
special_tokens_map.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<|startoftext|>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "<|endoftext|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "<|endoftext|>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"unk_token": {
|
24 |
+
"content": "<|endoftext|>",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
}
|
30 |
+
}
|
tokenizer_config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"31996": {
|
4 |
+
"content": "<|startoftext|>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"31999": {
|
12 |
+
"content": "<|endoftext|>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
}
|
19 |
+
},
|
20 |
+
"bos_token": "<|startoftext|>",
|
21 |
+
"chat_template": "{% for message in messages %}{% if message['role'] == 'system' %}{{ '###system:\n'+message['content']+'\n' }}{% endif %}{% if message['role'] == 'user' %}{{ '###User:\n' }}{{ message['content']}}{{ '\n###Assistant:\n' }}{% endif %}{% if message['role'] == 'assistant' %}{{ message['content']+eos_token}}{% endif %}{% endfor %}",
|
22 |
+
"clean_up_tokenization_spaces": true,
|
23 |
+
"do_clean_text": false,
|
24 |
+
"eos_token": "<|endoftext|>",
|
25 |
+
"model_max_length": 2048,
|
26 |
+
"pad_token": "<|endoftext|>",
|
27 |
+
"tokenizer_class": "GPTNeoXJapaneseTokenizer",
|
28 |
+
"unk_token": "<|endoftext|>"
|
29 |
+
}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|