diff --git a/README.md b/README.md index 5c00587a3..d35b38904 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Example: Train.json }, ... ]` -data_formatter_template: `### Input: {{input}} \n\n##Label: {{output}}` +data_formatter_template: `### Input: {{input}} \n\n## Label: {{output}}` Formatting will happen on the fly while tuning. The keys in template should match fields in the dataset file. The `response template` corresponding to the above template will need to be supplied. in this case, `response template` = `\n## Label:`. @@ -299,7 +299,7 @@ python tuning/sft_trainer.py \ --gradient_accumulation_steps 4 \ --learning_rate 1e-5 \ --response_template "\n## Label:" \ ---data_formatter_template: "### Input: {{input}} \n\n##Label: {{output}}" +--data_formatter_template: "### Input: {{input}} \n\n## Label: {{output}}" ```