Training in progress, step 19
Browse files- adapter_config.json +13 -5
- adapter_model.safetensors +2 -2
- chat_template.jinja +5 -0
- config.json +2 -3
- tokenizer_config.json +1 -1
- training_args.bin +2 -2
adapter_config.json
CHANGED
|
@@ -3,6 +3,9 @@
|
|
| 3 |
"auto_mapping": null,
|
| 4 |
"base_model_name_or_path": "bigscience/bloom-560m",
|
| 5 |
"bias": "none",
|
|
|
|
|
|
|
|
|
|
| 6 |
"fan_in_fan_out": null,
|
| 7 |
"inference_mode": true,
|
| 8 |
"init_lora_weights": true,
|
|
@@ -10,22 +13,27 @@
|
|
| 10 |
"layers_pattern": null,
|
| 11 |
"layers_to_transform": null,
|
| 12 |
"loftq_config": {},
|
| 13 |
-
"lora_alpha":
|
|
|
|
| 14 |
"lora_dropout": 0.05,
|
| 15 |
"megatron_config": null,
|
| 16 |
"megatron_core": "megatron.core",
|
| 17 |
"modules_to_save": null,
|
| 18 |
"peft_type": "LORA",
|
| 19 |
-
"
|
|
|
|
| 20 |
"rank_pattern": {},
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
-
"dense",
|
| 24 |
"dense_h_to_4h",
|
| 25 |
-
"
|
| 26 |
-
"
|
|
|
|
| 27 |
],
|
|
|
|
| 28 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 29 |
"use_dora": false,
|
|
|
|
| 30 |
"use_rslora": false
|
| 31 |
}
|
|
|
|
| 3 |
"auto_mapping": null,
|
| 4 |
"base_model_name_or_path": "bigscience/bloom-560m",
|
| 5 |
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
"fan_in_fan_out": null,
|
| 10 |
"inference_mode": true,
|
| 11 |
"init_lora_weights": true,
|
|
|
|
| 13 |
"layers_pattern": null,
|
| 14 |
"layers_to_transform": null,
|
| 15 |
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 64,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
"lora_dropout": 0.05,
|
| 19 |
"megatron_config": null,
|
| 20 |
"megatron_core": "megatron.core",
|
| 21 |
"modules_to_save": null,
|
| 22 |
"peft_type": "LORA",
|
| 23 |
+
"qalora_group_size": 16,
|
| 24 |
+
"r": 32,
|
| 25 |
"rank_pattern": {},
|
| 26 |
"revision": null,
|
| 27 |
"target_modules": [
|
|
|
|
| 28 |
"dense_h_to_4h",
|
| 29 |
+
"query_key_value",
|
| 30 |
+
"dense",
|
| 31 |
+
"dense_4h_to_h"
|
| 32 |
],
|
| 33 |
+
"target_parameters": [],
|
| 34 |
"task_type": "CAUSAL_LM",
|
| 35 |
+
"trainable_token_indices": null,
|
| 36 |
"use_dora": false,
|
| 37 |
+
"use_qalora": false,
|
| 38 |
"use_rslora": false
|
| 39 |
}
|
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:b26ef208f28416a0712890337e4681d8a57f168195040a421fe8104533e06bc2
|
| 3 |
+
size 50358592
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>
|
| 2 |
+
|
| 3 |
+
'+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>
|
| 4 |
+
|
| 5 |
+
' }}{% endif %}
|
config.json
CHANGED
|
@@ -1,6 +1,4 @@
|
|
| 1 |
{
|
| 2 |
-
"_attn_implementation_autoset": true,
|
| 3 |
-
"_name_or_path": "bigscience/bloom-560m",
|
| 4 |
"apply_residual_connection_post_layernorm": false,
|
| 5 |
"architectures": [
|
| 6 |
"BloomForCausalLM"
|
|
@@ -25,7 +23,8 @@
|
|
| 25 |
"skip_bias_add": true,
|
| 26 |
"skip_bias_add_qkv": false,
|
| 27 |
"slow_but_exact": false,
|
| 28 |
-
"
|
|
|
|
| 29 |
"unk_token_id": 0,
|
| 30 |
"use_cache": false,
|
| 31 |
"vocab_size": 250880
|
|
|
|
| 1 |
{
|
|
|
|
|
|
|
| 2 |
"apply_residual_connection_post_layernorm": false,
|
| 3 |
"architectures": [
|
| 4 |
"BloomForCausalLM"
|
|
|
|
| 23 |
"skip_bias_add": true,
|
| 24 |
"skip_bias_add_qkv": false,
|
| 25 |
"slow_but_exact": false,
|
| 26 |
+
"torch_dtype": "bfloat16",
|
| 27 |
+
"transformers_version": "4.55.0",
|
| 28 |
"unk_token_id": 0,
|
| 29 |
"use_cache": false,
|
| 30 |
"vocab_size": 250880
|
tokenizer_config.json
CHANGED
|
@@ -35,9 +35,9 @@
|
|
| 35 |
}
|
| 36 |
},
|
| 37 |
"bos_token": "<s>",
|
| 38 |
-
"chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' }}{% endif %}",
|
| 39 |
"clean_up_tokenization_spaces": false,
|
| 40 |
"eos_token": "</s>",
|
|
|
|
| 41 |
"merges_file": null,
|
| 42 |
"model_max_length": 1000000000000000019884624838656,
|
| 43 |
"pad_token": "<pad>",
|
|
|
|
| 35 |
}
|
| 36 |
},
|
| 37 |
"bos_token": "<s>",
|
|
|
|
| 38 |
"clean_up_tokenization_spaces": false,
|
| 39 |
"eos_token": "</s>",
|
| 40 |
+
"extra_special_tokens": {},
|
| 41 |
"merges_file": null,
|
| 42 |
"model_max_length": 1000000000000000019884624838656,
|
| 43 |
"pad_token": "<pad>",
|
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:b2b279f4dc88c9bef838fd287ae00cc55d02565da6fc52cbcdd320370823a3f4
|
| 3 |
+
size 7352
|