Training in progress, epoch 0
Browse files- adapter_config.json +7 -5
- adapter_model.safetensors +1 -1
- added_tokens.json +5 -0
- config.json +6 -11
- tokenizer.model +2 -2
- tokenizer_config.json +32 -25
- training_args.bin +1 -1
adapter_config.json
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
{
|
|
|
2 |
"auto_mapping": null,
|
3 |
-
"base_model_name_or_path": "TheBloke/
|
4 |
"bias": "none",
|
5 |
"fan_in_fan_out": null,
|
6 |
"inference_mode": true,
|
@@ -12,15 +13,16 @@
|
|
12 |
"modules_to_save": null,
|
13 |
"peft_type": "LORA",
|
14 |
"r": 32,
|
|
|
15 |
"revision": null,
|
16 |
"target_modules": [
|
17 |
-
"down_proj",
|
18 |
"v_proj",
|
19 |
-
"
|
|
|
20 |
"up_proj",
|
|
|
21 |
"o_proj",
|
22 |
-
"
|
23 |
-
"q_proj"
|
24 |
],
|
25 |
"task_type": "CAUSAL_LM"
|
26 |
}
|
|
|
1 |
{
|
2 |
+
"alpha_pattern": {},
|
3 |
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "TheBloke/Llama-2-7B-fp16",
|
5 |
"bias": "none",
|
6 |
"fan_in_fan_out": null,
|
7 |
"inference_mode": true,
|
|
|
13 |
"modules_to_save": null,
|
14 |
"peft_type": "LORA",
|
15 |
"r": 32,
|
16 |
+
"rank_pattern": {},
|
17 |
"revision": null,
|
18 |
"target_modules": [
|
|
|
19 |
"v_proj",
|
20 |
+
"q_proj",
|
21 |
+
"k_proj",
|
22 |
"up_proj",
|
23 |
+
"down_proj",
|
24 |
"o_proj",
|
25 |
+
"gate_proj"
|
|
|
26 |
],
|
27 |
"task_type": "CAUSAL_LM"
|
28 |
}
|
adapter_model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 319876032
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:396bf764dd7fd3b635ee45c5823a963089cb6103f4eb859d6be2e99630c24a39
|
3 |
size 319876032
|
added_tokens.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</s>": 2,
|
3 |
+
"<s>": 1,
|
4 |
+
"<unk>": 0
|
5 |
+
}
|
config.json
CHANGED
@@ -1,21 +1,16 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "TheBloke/
|
3 |
"architectures": [
|
4 |
"LlamaForCausalLM"
|
5 |
],
|
6 |
-
"
|
7 |
-
"AutoConfig": "TheBloke/CodeLlama-7B-fp16--configuration_llama.LlamaConfig",
|
8 |
-
"AutoModel": "TheBloke/CodeLlama-7B-fp16--modeling_llama.LlamaModel",
|
9 |
-
"AutoModelForCausalLM": "TheBloke/CodeLlama-7B-fp16--modeling_llama.LlamaForCausalLM",
|
10 |
-
"AutoModelForSequenceClassification": "TheBloke/CodeLlama-7B-fp16--modeling_llama.LlamaForSequenceClassification"
|
11 |
-
},
|
12 |
"bos_token_id": 1,
|
13 |
"eos_token_id": 2,
|
14 |
"hidden_act": "silu",
|
15 |
"hidden_size": 4096,
|
16 |
"initializer_range": 0.02,
|
17 |
"intermediate_size": 11008,
|
18 |
-
"max_position_embeddings":
|
19 |
"model_type": "llama",
|
20 |
"num_attention_heads": 32,
|
21 |
"num_hidden_layers": 32,
|
@@ -36,10 +31,10 @@
|
|
36 |
},
|
37 |
"rms_norm_eps": 1e-05,
|
38 |
"rope_scaling": null,
|
39 |
-
"rope_theta":
|
40 |
"tie_word_embeddings": false,
|
41 |
"torch_dtype": "float16",
|
42 |
-
"transformers_version": "4.
|
43 |
"use_cache": false,
|
44 |
-
"vocab_size":
|
45 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "TheBloke/Llama-2-7B-fp16",
|
3 |
"architectures": [
|
4 |
"LlamaForCausalLM"
|
5 |
],
|
6 |
+
"attention_bias": false,
|
|
|
|
|
|
|
|
|
|
|
7 |
"bos_token_id": 1,
|
8 |
"eos_token_id": 2,
|
9 |
"hidden_act": "silu",
|
10 |
"hidden_size": 4096,
|
11 |
"initializer_range": 0.02,
|
12 |
"intermediate_size": 11008,
|
13 |
+
"max_position_embeddings": 4096,
|
14 |
"model_type": "llama",
|
15 |
"num_attention_heads": 32,
|
16 |
"num_hidden_layers": 32,
|
|
|
31 |
},
|
32 |
"rms_norm_eps": 1e-05,
|
33 |
"rope_scaling": null,
|
34 |
+
"rope_theta": 10000.0,
|
35 |
"tie_word_embeddings": false,
|
36 |
"torch_dtype": "float16",
|
37 |
+
"transformers_version": "4.35.0.dev0",
|
38 |
"use_cache": false,
|
39 |
+
"vocab_size": 32000
|
40 |
}
|
tokenizer.model
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:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
|
3 |
+
size 499723
|
tokenizer_config.json
CHANGED
@@ -1,38 +1,45 @@
|
|
1 |
{
|
2 |
"add_bos_token": true,
|
3 |
"add_eos_token": false,
|
4 |
-
"
|
5 |
-
"
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
},
|
|
|
|
|
12 |
"clean_up_tokenization_spaces": false,
|
13 |
-
"eos_token":
|
14 |
-
|
15 |
-
"content": "</s>",
|
16 |
-
"lstrip": false,
|
17 |
-
"normalized": true,
|
18 |
-
"rstrip": false,
|
19 |
-
"single_word": false
|
20 |
-
},
|
21 |
-
"legacy": null,
|
22 |
"model_max_length": 1000000000000000019884624838656,
|
23 |
-
"pad_token":
|
24 |
"sp_model_kwargs": {},
|
25 |
"spaces_between_special_tokens": false,
|
26 |
"tokenizer_class": "LlamaTokenizer",
|
|
|
27 |
"trust_remote_code": false,
|
28 |
-
"unk_token":
|
29 |
-
"__type": "AddedToken",
|
30 |
-
"content": "<unk>",
|
31 |
-
"lstrip": false,
|
32 |
-
"normalized": true,
|
33 |
-
"rstrip": false,
|
34 |
-
"single_word": false
|
35 |
-
},
|
36 |
"use_default_system_prompt": true,
|
37 |
"use_fast": true
|
38 |
}
|
|
|
1 |
{
|
2 |
"add_bos_token": true,
|
3 |
"add_eos_token": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<unk>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": true,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": false
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": true,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": false
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": true,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": false
|
28 |
+
}
|
29 |
},
|
30 |
+
"additional_special_tokens": [],
|
31 |
+
"bos_token": "<s>",
|
32 |
"clean_up_tokenization_spaces": false,
|
33 |
+
"eos_token": "</s>",
|
34 |
+
"legacy": true,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
"model_max_length": 1000000000000000019884624838656,
|
36 |
+
"pad_token": "</s>",
|
37 |
"sp_model_kwargs": {},
|
38 |
"spaces_between_special_tokens": false,
|
39 |
"tokenizer_class": "LlamaTokenizer",
|
40 |
+
"tokenizer_file": "/root/.cache/model/huggingface/hub/models--TheBloke--Llama-2-7B-fp16/snapshots/ba2306439903c2ebf7d09970a973ef44d1402239/tokenizer.json",
|
41 |
"trust_remote_code": false,
|
42 |
+
"unk_token": "<unk>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
"use_default_system_prompt": true,
|
44 |
"use_fast": true
|
45 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4475
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:710008004c3917182b08218d0ee0cd47987620af8087b3e4bddefe7ba183f72c
|
3 |
size 4475
|