Training in progress, step 3000
Browse files- adapter_config.json +4 -4
- adapter_model.safetensors +1 -1
- runs/May09_16-55-00_879f0587a757/events.out.tfevents.1715273746.879f0587a757.4275.0 +3 -0
- runs/May09_18-02-42_879f0587a757/events.out.tfevents.1715277821.879f0587a757.21677.0 +3 -0
- runs/May09_18-05-29_879f0587a757/events.out.tfevents.1715277985.879f0587a757.21677.1 +3 -0
- special_tokens_map.json +2 -14
- tokenizer_config.json +4 -0
- training_args.bin +1 -1
adapter_config.json
CHANGED
@@ -22,13 +22,13 @@
|
|
22 |
"rank_pattern": {},
|
23 |
"revision": null,
|
24 |
"target_modules": [
|
|
|
|
|
|
|
25 |
"q_proj",
|
26 |
-
"v_proj",
|
27 |
"k_proj",
|
28 |
"up_proj",
|
29 |
-
"
|
30 |
-
"o_proj",
|
31 |
-
"gate_proj"
|
32 |
],
|
33 |
"task_type": "CAUSAL_LM",
|
34 |
"use_dora": false,
|
|
|
22 |
"rank_pattern": {},
|
23 |
"revision": null,
|
24 |
"target_modules": [
|
25 |
+
"gate_proj",
|
26 |
+
"down_proj",
|
27 |
+
"o_proj",
|
28 |
"q_proj",
|
|
|
29 |
"k_proj",
|
30 |
"up_proj",
|
31 |
+
"v_proj"
|
|
|
|
|
32 |
],
|
33 |
"task_type": "CAUSAL_LM",
|
34 |
"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 2460946960
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca95b10eda7083ce2aaf7c094dd5244d1115daaf10585f843c317f7e550cc00d
|
3 |
size 2460946960
|
runs/May09_16-55-00_879f0587a757/events.out.tfevents.1715273746.879f0587a757.4275.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d0cea70df718898195b22ac0934db38e9394529f9907c17f25b6c0a8cb12618e
|
3 |
+
size 5404
|
runs/May09_18-02-42_879f0587a757/events.out.tfevents.1715277821.879f0587a757.21677.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db2e700383bbb5ff7b690522c3c593ed2f949aab020bf8209ec6817a3f1d5493
|
3 |
+
size 5404
|
runs/May09_18-05-29_879f0587a757/events.out.tfevents.1715277985.879f0587a757.21677.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6dddee77c9934d6c82a0b5ed8183ba061522779859458b8f427ec4eb58ab0bc1
|
3 |
+
size 5885
|
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_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 5048
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d3cd06e1bc5d39cad2c771f380db45da3e508766294a8ec8328bfdcf08ae1c30
|
3 |
size 5048
|