qlora-llama2-7b-question-generation-eduqg
Browse files- README.md +2 -2
- adapter_config.json +3 -3
- adapter_model.bin +1 -1
- tokenizer_config.json +1 -0
- training_args.bin +1 -1
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
base_model: meta-llama/Llama-2-7b-hf
|
3 |
tags:
|
4 |
- generated_from_trainer
|
5 |
model-index:
|
@@ -12,7 +12,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
12 |
|
13 |
# qlora-llama2-7b-question-generation-eduqg
|
14 |
|
15 |
-
This model is a fine-tuned version of [meta-llama/Llama-2-7b-hf](https://huggingface.co/meta-llama/Llama-2-7b-hf) on an unknown dataset.
|
16 |
|
17 |
## Model description
|
18 |
|
|
|
1 |
---
|
2 |
+
base_model: meta-llama/Llama-2-7b-chat-hf
|
3 |
tags:
|
4 |
- generated_from_trainer
|
5 |
model-index:
|
|
|
12 |
|
13 |
# qlora-llama2-7b-question-generation-eduqg
|
14 |
|
15 |
+
This model is a fine-tuned version of [meta-llama/Llama-2-7b-chat-hf](https://huggingface.co/meta-llama/Llama-2-7b-chat-hf) on an unknown dataset.
|
16 |
|
17 |
## Model description
|
18 |
|
adapter_config.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
{
|
2 |
"alpha_pattern": {},
|
3 |
"auto_mapping": null,
|
4 |
-
"base_model_name_or_path": "meta-llama/Llama-2-7b-hf",
|
5 |
"bias": "none",
|
6 |
"fan_in_fan_out": false,
|
7 |
"inference_mode": true,
|
@@ -16,8 +16,8 @@
|
|
16 |
"rank_pattern": {},
|
17 |
"revision": null,
|
18 |
"target_modules": [
|
19 |
-
"
|
20 |
-
"
|
21 |
],
|
22 |
"task_type": "CAUSAL_LM"
|
23 |
}
|
|
|
1 |
{
|
2 |
"alpha_pattern": {},
|
3 |
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "meta-llama/Llama-2-7b-chat-hf",
|
5 |
"bias": "none",
|
6 |
"fan_in_fan_out": false,
|
7 |
"inference_mode": true,
|
|
|
16 |
"rank_pattern": {},
|
17 |
"revision": null,
|
18 |
"target_modules": [
|
19 |
+
"q_proj",
|
20 |
+
"v_proj"
|
21 |
],
|
22 |
"task_type": "CAUSAL_LM"
|
23 |
}
|
adapter_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 67154893
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:10280491f2180aa0f05a53e33717f933601ea657ea391a8023fc60b46da61019
|
3 |
size 67154893
|
tokenizer_config.json
CHANGED
@@ -26,6 +26,7 @@
|
|
26 |
}
|
27 |
},
|
28 |
"bos_token": "<s>",
|
|
|
29 |
"clean_up_tokenization_spaces": false,
|
30 |
"eos_token": "</s>",
|
31 |
"legacy": false,
|
|
|
26 |
}
|
27 |
},
|
28 |
"bos_token": "<s>",
|
29 |
+
"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 = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\\n' + system_message + '\\n<</SYS>>\\n\\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + '[INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}",
|
30 |
"clean_up_tokenization_spaces": false,
|
31 |
"eos_token": "</s>",
|
32 |
"legacy": false,
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4155
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:da55107a7dde3efd9267a449345915f5fe5d2635b8ca8dfb5ae017abf5c2d93a
|
3 |
size 4155
|