Skip to content

Commit 6191433

Browse files
Merge pull request #2741 from AI-Hypercomputer:qwen3_colab_fix
PiperOrigin-RevId: 836502158
2 parents 77d3bbd + e0e4874 commit 6191433

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/MaxText/examples/sft_qwen3_demo.ipynb

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,13 @@
8989
"## Installation: MaxText & Other Dependencies"
9090
]
9191
},
92+
{
93+
"cell_type": "markdown",
94+
"metadata": {},
95+
"source": [
96+
"**⚠️ Note:** The installation process in following cell may take a few minutes to complete. Please be patient."
97+
]
98+
},
9299
{
93100
"cell_type": "code",
94101
"execution_count": null,
@@ -108,7 +115,8 @@
108115
"!python3 -m MaxText.install_maxtext_extra_deps\n",
109116
"\n",
110117
"# Install vLLM for Jax and TPUs\n",
111-
"!uv pip install vllm-tpu"
118+
"!uv pip install vllm-tpu\n",
119+
"!uv pip install --no-deps qwix==0.1.4"
112120
]
113121
},
114122
{
@@ -154,6 +162,8 @@
154162
"from MaxText.integration.tunix.tunix_adapter import TunixMaxTextAdapter\n",
155163
"from MaxText.sft import sft_trainer\n",
156164
"\n",
165+
"# Suppress vLLM logging with a severity level below ERROR\n",
166+
"os.environ[\"VLLM_LOGGING_LEVEL\"] = \"ERROR\"\n",
157167
"from tunix.rl.rollout.vllm_rollout import VllmRollout\n",
158168
"\n",
159169
"from datetime import datetime\n",

0 commit comments

Comments
 (0)