Commit
·
4852723
1
Parent(s):
f81bf67
Upload . with huggingface_hub
Browse files- adapter_config.json +20 -0
- adapter_model.bin +3 -0
- added_tokens.json +7 -0
- extra_embeddings.pt +3 -0
- special_tokens_map.json +12 -0
- tokenizer.model +3 -0
- tokenizer_config.json +9 -0
adapter_config.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model_name_or_path": "decapoda-research/llama-13b-hf",
|
| 3 |
+
"bias": "none",
|
| 4 |
+
"enable_lora": null,
|
| 5 |
+
"fan_in_fan_out": false,
|
| 6 |
+
"inference_mode": true,
|
| 7 |
+
"lora_alpha": 32,
|
| 8 |
+
"lora_dropout": 0.05,
|
| 9 |
+
"merge_weights": false,
|
| 10 |
+
"modules_to_save": null,
|
| 11 |
+
"peft_type": "LORA",
|
| 12 |
+
"r": 16,
|
| 13 |
+
"target_modules": [
|
| 14 |
+
"q_proj",
|
| 15 |
+
"k_proj",
|
| 16 |
+
"v_proj",
|
| 17 |
+
"o_proj"
|
| 18 |
+
],
|
| 19 |
+
"task_type": "CAUSAL_LM"
|
| 20 |
+
}
|
adapter_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94b76b01f10c2e74899f1ea67c7e13f1414cd2dcea4bd5731cd12e403893d0df
|
| 3 |
+
size 104968909
|
added_tokens.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<|assistant|>": 32004,
|
| 3 |
+
"<|prefix_begin|>": 32000,
|
| 4 |
+
"<|prefix_end|>": 32003,
|
| 5 |
+
"<|prompter|>": 32002,
|
| 6 |
+
"<|system|>": 32001
|
| 7 |
+
}
|
extra_embeddings.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc5d019afb17e5982795cc41f607348cc5bee87ce03fe0da270584a137e127e1
|
| 3 |
+
size 327844614
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|prefix_begin|>",
|
| 4 |
+
"<|system|>",
|
| 5 |
+
"<|prompter|>",
|
| 6 |
+
"<|prefix_end|>",
|
| 7 |
+
"<|assistant|>"
|
| 8 |
+
],
|
| 9 |
+
"eos_token": "</s>",
|
| 10 |
+
"pad_token": "</s>",
|
| 11 |
+
"sep_token": "<s>"
|
| 12 |
+
}
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
|
| 3 |
+
size 499723
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "",
|
| 3 |
+
"clean_up_tokenization_spaces": false,
|
| 4 |
+
"eos_token": "",
|
| 5 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 6 |
+
"special_tokens_map_file": "/admin/home-jordiclive/llama/7B/special_tokens_map.json",
|
| 7 |
+
"tokenizer_class": "LlamaTokenizer",
|
| 8 |
+
"unk_token": ""
|
| 9 |
+
}
|