lfhe commited on
Commit
626868d
·
1 Parent(s): 2978eaa
README.md CHANGED
@@ -199,4 +199,4 @@ Carbon emissions can be estimated using the [Machine Learning Impact calculator]
199
  [More Information Needed]
200
  ### Framework versions
201
 
202
- - PEFT 0.15.2
 
199
  [More Information Needed]
200
  ### Framework versions
201
 
202
+ - PEFT 0.15.1
adapter_config.json CHANGED
@@ -13,24 +13,24 @@
13
  "layers_pattern": null,
14
  "layers_to_transform": null,
15
  "loftq_config": {},
16
- "lora_alpha": 384,
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
- "r": 96,
24
  "rank_pattern": {},
25
  "revision": null,
26
  "target_modules": [
27
- "gate_up_proj",
28
  "down_proj",
 
29
  "o_proj",
30
  "qkv_proj"
31
  ],
32
  "task_type": "CAUSAL_LM",
33
  "trainable_token_indices": null,
34
  "use_dora": false,
35
- "use_rslora": false
36
  }
 
13
  "layers_pattern": null,
14
  "layers_to_transform": null,
15
  "loftq_config": {},
16
+ "lora_alpha": 128,
17
  "lora_bias": false,
18
+ "lora_dropout": 0.4,
19
  "megatron_config": null,
20
  "megatron_core": "megatron.core",
21
  "modules_to_save": null,
22
  "peft_type": "LORA",
23
+ "r": 32,
24
  "rank_pattern": {},
25
  "revision": null,
26
  "target_modules": [
 
27
  "down_proj",
28
+ "gate_up_proj",
29
  "o_proj",
30
  "qkv_proj"
31
  ],
32
  "task_type": "CAUSAL_LM",
33
  "trainable_token_indices": null,
34
  "use_dora": false,
35
+ "use_rslora": true
36
  }
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:516c3509e61796a317f44891ae0130bbb3d44075671858a4597fc31dc22f2d77
3
- size 604014680
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b03f3a72422fe1fe7ad7ddf1a8a303708b207115f90f1a54679683b3c73df8a
3
+ size 201361312
tokenizer_config.json CHANGED
@@ -117,6 +117,7 @@
117
  }
118
  },
119
  "bos_token": "<s>",
 
120
  "clean_up_tokenization_spaces": false,
121
  "eos_token": "<|end|>",
122
  "extra_special_tokens": {},
 
117
  }
118
  },
119
  "bos_token": "<s>",
120
+ "chat_template": "{% for message in messages %}{% if message['role'] == 'system' and message['content'] %}{{'<|system|>\n' + message['content'] + '<|end|>\n'}}{% elif message['role'] == 'user' %}{{'<|user|>\n' + message['content'] + '<|end|>\n'}}{% elif message['role'] == 'assistant' %}{{'<|assistant|>\n' + message['content'] + '<|end|>\n'}}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>\n' }}{% else %}{{ eos_token }}{% endif %}",
121
  "clean_up_tokenization_spaces": false,
122
  "eos_token": "<|end|>",
123
  "extra_special_tokens": {},