Training in progress, step 1500
Browse files- adapter_config.json +6 -5
- adapter_model.safetensors +2 -2
- special_tokens_map.json +2 -14
- tokenizer.json +0 -1
- tokenizer_config.json +4 -0
- training_args.bin +2 -2
adapter_config.json
CHANGED
|
@@ -22,13 +22,14 @@
|
|
| 22 |
"rank_pattern": {},
|
| 23 |
"revision": null,
|
| 24 |
"target_modules": [
|
| 25 |
-
"q_proj",
|
| 26 |
-
"o_proj",
|
| 27 |
"v_proj",
|
| 28 |
-
"up_proj",
|
| 29 |
-
"gate_proj",
|
| 30 |
"down_proj",
|
| 31 |
-
"k_proj"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
],
|
| 33 |
"task_type": "CAUSAL_LM",
|
| 34 |
"use_dora": false,
|
|
|
|
| 22 |
"rank_pattern": {},
|
| 23 |
"revision": null,
|
| 24 |
"target_modules": [
|
|
|
|
|
|
|
| 25 |
"v_proj",
|
|
|
|
|
|
|
| 26 |
"down_proj",
|
| 27 |
+
"k_proj",
|
| 28 |
+
"up_proj",
|
| 29 |
+
"lm_head",
|
| 30 |
+
"o_proj",
|
| 31 |
+
"q_proj",
|
| 32 |
+
"gate_proj"
|
| 33 |
],
|
| 34 |
"task_type": "CAUSAL_LM",
|
| 35 |
"use_dora": false,
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:994b715e3e3aecec9695f60cbdd1ba7f6ba3abf0bede77add39d740f9991ed2c
|
| 3 |
+
size 1444314856
|
special_tokens_map.json
CHANGED
|
@@ -1,19 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"additional_special_tokens": [
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
"lstrip": false,
|
| 6 |
-
"normalized": false,
|
| 7 |
-
"rstrip": false,
|
| 8 |
-
"single_word": false
|
| 9 |
-
},
|
| 10 |
-
{
|
| 11 |
-
"content": "[/SQL]",
|
| 12 |
-
"lstrip": false,
|
| 13 |
-
"normalized": false,
|
| 14 |
-
"rstrip": false,
|
| 15 |
-
"single_word": false
|
| 16 |
-
}
|
| 17 |
],
|
| 18 |
"bos_token": {
|
| 19 |
"content": "<|endoftext|>",
|
|
|
|
| 1 |
{
|
| 2 |
"additional_special_tokens": [
|
| 3 |
+
"[SQL]",
|
| 4 |
+
"[/SQL]"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
],
|
| 6 |
"bos_token": {
|
| 7 |
"content": "<|endoftext|>",
|
tokenizer.json
CHANGED
|
@@ -499,7 +499,6 @@
|
|
| 499 |
"end_of_word_suffix": null,
|
| 500 |
"fuse_unk": false,
|
| 501 |
"byte_fallback": false,
|
| 502 |
-
"ignore_merges": false,
|
| 503 |
"vocab": {
|
| 504 |
"<|endoftext|>": 0,
|
| 505 |
"<|padding|>": 1,
|
|
|
|
| 499 |
"end_of_word_suffix": null,
|
| 500 |
"fuse_unk": false,
|
| 501 |
"byte_fallback": false,
|
|
|
|
| 502 |
"vocab": {
|
| 503 |
"<|endoftext|>": 0,
|
| 504 |
"<|padding|>": 1,
|
tokenizer_config.json
CHANGED
|
@@ -404,8 +404,12 @@
|
|
| 404 |
"chat_template": "{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = 'You are a helpful assistant.' %}{% endif %}{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% for message in loop_messages %}{% if loop.index0 == 0 %}{{'<|im_start|>system\n' + system_message + '<|im_end|>\n'}}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
| 405 |
"clean_up_tokenization_spaces": true,
|
| 406 |
"eos_token": "<|endoftext|>",
|
|
|
|
| 407 |
"model_max_length": 4096,
|
| 408 |
"pad_token": "<|endoftext|>",
|
|
|
|
| 409 |
"tokenizer_class": "GPTNeoXTokenizer",
|
|
|
|
|
|
|
| 410 |
"unk_token": "<|endoftext|>"
|
| 411 |
}
|
|
|
|
| 404 |
"chat_template": "{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = 'You are a helpful assistant.' %}{% endif %}{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% for message in loop_messages %}{% if loop.index0 == 0 %}{{'<|im_start|>system\n' + system_message + '<|im_end|>\n'}}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
| 405 |
"clean_up_tokenization_spaces": true,
|
| 406 |
"eos_token": "<|endoftext|>",
|
| 407 |
+
"max_length": 1024,
|
| 408 |
"model_max_length": 4096,
|
| 409 |
"pad_token": "<|endoftext|>",
|
| 410 |
+
"stride": 0,
|
| 411 |
"tokenizer_class": "GPTNeoXTokenizer",
|
| 412 |
+
"truncation_side": "right",
|
| 413 |
+
"truncation_strategy": "longest_first",
|
| 414 |
"unk_token": "<|endoftext|>"
|
| 415 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:197267dd45789e99dbf88be971b2223190d42503cdd003a15db8e3f7996a29d5
|
| 3 |
+
size 4984
|