Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions articles/gpt-oss/run-colab.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
},
"outputs": [],
"source": [
"!pip install -q git+https://github.com/huggingface/transformers triton==3.4 kernels"
"!pip install -q transformers triton==3.4 kernels"
]
},
{
Expand Down Expand Up @@ -244,4 +244,4 @@
},
"nbformat": 4,
"nbformat_minor": 0
}
}
6 changes: 1 addition & 5 deletions articles/gpt-oss/run-transformers.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@ If you use `bfloat16` instead of MXFP4, memory consumption will be larger (\~48
It’s recommended to create a fresh Python environment. Install transformers, accelerate, as well as the Triton kernels for MXFP4 compatibility:

```bash
pip install -U transformers accelerate torch triton kernels
```

```bash
pip install git+https://github.com/triton-lang/triton.git@main#subdirectory=python/triton_kernels
pip install -U transformers accelerate torch triton==3.4 kernels
```

2. **(Optional) Enable multi-GPU**
Expand Down