4d31e9a038c1a23e7162ea081bc02f611aa301021070fa7bdafdb39d4c7afff6
Browse files- config.json +1 -1
- tokenizer_config.json +1 -0
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "google/codegemma-7b",
|
3 |
"architectures": [
|
4 |
"GemmaForCausalLM"
|
5 |
],
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "google/codegemma-7b-it",
|
3 |
"architectures": [
|
4 |
"GemmaForCausalLM"
|
5 |
],
|
tokenizer_config.json
CHANGED
@@ -1740,6 +1740,7 @@
|
|
1740 |
}
|
1741 |
},
|
1742 |
"bos_token": "<bos>",
|
|
|
1743 |
"clean_up_tokenization_spaces": false,
|
1744 |
"eos_token": "<eos>",
|
1745 |
"model_max_length": 1000000000000000019884624838656,
|
|
|
1740 |
}
|
1741 |
},
|
1742 |
"bos_token": "<bos>",
|
1743 |
+
"chat_template": "{{ bos_token }}{% if messages[0]['role'] == 'system' %}{{ raise_exception('System role not supported') }}{% endif %}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if (message['role'] == 'assistant') %}{% set role = 'model' %}{% else %}{% set role = message['role'] %}{% endif %}{{ '<start_of_turn>' + role + '\n' + message['content'] | trim + '<end_of_turn>\n' }}{% endfor %}{% if add_generation_prompt %}{{'<start_of_turn>model\n'}}{% endif %}",
|
1744 |
"clean_up_tokenization_spaces": false,
|
1745 |
"eos_token": "<eos>",
|
1746 |
"model_max_length": 1000000000000000019884624838656,
|