From 7b4ea96c08a0866ba67c0445a94366ba3ab8f129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?= <45557362+qgallouedec@users.noreply.github.com> Date: Fri, 18 Jul 2025 15:43:59 -0700 Subject: [PATCH] Update README.md (#2991) * Update README.md * Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1cb5fe9bee..1d1965e2ca 100644 --- a/README.md +++ b/README.md @@ -124,9 +124,9 @@ pip install unsloth #### Notes To run Unsloth directly on Windows: - Install Triton from this Windows fork and follow the instructions [here](https://github.com/woct0rdho/triton-windows) (be aware that the Windows fork requires PyTorch >= 2.4 and CUDA 12) -- In the SFTTrainer, set `dataset_num_proc=1` to avoid a crashing issue: +- In the `SFTConfig`, set `dataset_num_proc=1` to avoid a crashing issue: ```python -trainer = SFTTrainer( +SFTConfig( dataset_num_proc=1, ... )