mirror of
https://github.com/openai/openai-cookbook
synced 2024-11-11 13:11:02 +00:00
fix typo in python code example (#1413)
This commit is contained in:
parent
2399022424
commit
5d2314ab4e
@ -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\")"
|
||||
]
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user