Merge pull request #3216 from HiroseKoichi/release

Remove brackets around `{{name}}` in `ChatML-Names` and `Llama-3-Instruct-Names`
This commit is contained in:
Cohee
2024-12-22 23:32:08 +02:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{ {
"input_sequence": "<|im_start|>[{{name}}]", "input_sequence": "<|im_start|>{{name}}",
"output_sequence": "<|im_start|>[{{name}}]", "output_sequence": "<|im_start|>{{name}}",
"last_output_sequence": "", "last_output_sequence": "",
"system_sequence": "<|im_start|>system", "system_sequence": "<|im_start|>system",
"stop_sequence": "<|im_end|>", "stop_sequence": "<|im_end|>",

View File

@@ -1,6 +1,6 @@
{ {
"input_sequence": "<|start_header_id|>[{{name}}]<|end_header_id|>\n\n", "input_sequence": "<|start_header_id|>{{name}}<|end_header_id|>\n\n",
"output_sequence": "<|start_header_id|>[{{name}}]<|end_header_id|>\n\n", "output_sequence": "<|start_header_id|>{{name}}<|end_header_id|>\n\n",
"last_output_sequence": "", "last_output_sequence": "",
"system_sequence": "<|start_header_id|>system<|end_header_id|>\n\n", "system_sequence": "<|start_header_id|>system<|end_header_id|>\n\n",
"stop_sequence": "<|eot_id|>", "stop_sequence": "<|eot_id|>",