Skip to content

Commit

Permalink
fix typo in python code example (#1413)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhinnery-openai authored Sep 19, 2024
1 parent 2399022 commit 5d2314a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Chat_finetuning_data_prep.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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\")"
]
},
Expand Down

0 comments on commit 5d2314a

Please sign in to comment.