fix typo in python code example (#1413)

This commit is contained in:
Kevin Whinnery 2024-09-19 14:19:30 -05:00 committed by GitHub
parent 2399022424
commit 5d2314ab4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -267,7 +267,7 @@
"print_distribution(n_messages, \"num_messages_per_example\")\n",
"print_distribution(convo_lens, \"num_total_tokens_per_example\")\n",
"print_distribution(assistant_message_lens, \"num_assistant_tokens_per_example\")\n",
"n_too_long = sum(l > 16,385 for l in convo_lens)\n",
"n_too_long = sum(l > 16385 for l in convo_lens)\n",
"print(f\"\\n{n_too_long} examples may be over the 16,385 token limit, they will be truncated during fine-tuning\")"
]
},