Update README.md (#2991)

* Update README.md

* Update README.md
This commit is contained in:
Quentin Gallouédec 2025-07-18 15:43:59 -07:00 committed by GitHub
commit 7b4ea96c08

View file

@ -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,
...
)