Training in progress, step 200
Browse files- special_tokens_map.json +23 -0
- tokenizer_config.json +5 -1
- training_args.bin +1 -1
special_tokens_map.json
CHANGED
@@ -1,4 +1,27 @@
|
|
1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"bos_token": {
|
3 |
"content": "<s>",
|
4 |
"lstrip": false,
|
|
|
1 |
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
{
|
4 |
+
"content": "<|user|>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false
|
9 |
+
},
|
10 |
+
{
|
11 |
+
"content": "<|system|>",
|
12 |
+
"lstrip": false,
|
13 |
+
"normalized": false,
|
14 |
+
"rstrip": false,
|
15 |
+
"single_word": false
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"content": "<|assistant|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
}
|
24 |
+
],
|
25 |
"bos_token": {
|
26 |
"content": "<s>",
|
27 |
"lstrip": false,
|
tokenizer_config.json
CHANGED
@@ -49,7 +49,11 @@
|
|
49 |
"special": true
|
50 |
}
|
51 |
},
|
52 |
-
"additional_special_tokens": [
|
|
|
|
|
|
|
|
|
53 |
"bos_token": "<s>",
|
54 |
"chat_template": "{% for message in messages %}{% if message['role'] == 'user' %}{{ '<|user|>\n' + message['content'] + eos_token + '\n\n' }}{% elif message['role'] == 'system' %}{{ '<|system|>\n' + message['content'] + eos_token + '\n\n' }}{% elif message['role'] == 'assistant' %}{{ '<|assistant|>\n' + message['content'] + eos_token + '\n\n' }}{% endif %}{% if loop.last and add_generation_prompt %}{{ '<|assistant|>\n' }}{% endif %}{% endfor %}",
|
55 |
"clean_up_tokenization_spaces": false,
|
|
|
49 |
"special": true
|
50 |
}
|
51 |
},
|
52 |
+
"additional_special_tokens": [
|
53 |
+
"<|user|>",
|
54 |
+
"<|system|>",
|
55 |
+
"<|assistant|>"
|
56 |
+
],
|
57 |
"bos_token": "<s>",
|
58 |
"chat_template": "{% for message in messages %}{% if message['role'] == 'user' %}{{ '<|user|>\n' + message['content'] + eos_token + '\n\n' }}{% elif message['role'] == 'system' %}{{ '<|system|>\n' + message['content'] + eos_token + '\n\n' }}{% elif message['role'] == 'assistant' %}{{ '<|assistant|>\n' + message['content'] + eos_token + '\n\n' }}{% endif %}{% if loop.last and add_generation_prompt %}{{ '<|assistant|>\n' }}{% endif %}{% endfor %}",
|
59 |
"clean_up_tokenization_spaces": false,
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4600
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ddcd4fcd2bee6b9a654583f08f41ddbbb5ad4f8a75c4e86a1bb04fc546056c3
|
3 |
size 4600
|