Skip to content

Commit 3db27cd

Browse files
authored
Add missing backslashes in example run section (#13603)
## Summary Missing backslashes in Qwen 3 README.
1 parent 45e7810 commit 3db27cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/models/qwen3/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ python -m extension.llm.export.export_llm \
4545
### Example run
4646
With ExecuTorch pybindings:
4747
```
48-
python -m examples.models.llama.runner.native
48+
python -m examples.models.llama.runner.native \
4949
--model qwen3_0_6b \
5050
--pte qwen3_0_6b.pte \
5151
--tokenizer ~/.cache/huggingface/hub/models--Qwen--Qwen3-0.6B/snapshots/a9c98e602b9d36d2a2f7ba1eb0f5f31e4e8e5143/tokenizer.json \
@@ -59,9 +59,9 @@ python -m examples.models.llama.runner.native
5959

6060
With ExecuTorch's sample c++ runner (see the Llama README's [Step 3: Run on your computer to validate](../llama/README.md#step-3-run-on-your-computer-to-validate) to build the runner):
6161
```
62-
cmake-out/examples/models/llama/llama_main
63-
--model_path qwen3_0_6b.pte
64-
--tokenizer_path ~/.cache/huggingface/hub/models--Qwen--Qwen3-0.6B/snapshots/a9c98e602b9d36d2a2f7ba1eb0f5f31e4e8e5143/tokenizer.json
62+
cmake-out/examples/models/llama/llama_main \
63+
--model_path qwen3_0_6b.pte \
64+
--tokenizer_path ~/.cache/huggingface/hub/models--Qwen--Qwen3-0.6B/snapshots/a9c98e602b9d36d2a2f7ba1eb0f5f31e4e8e5143/tokenizer.json \
6565
--prompt="Who is the president of the US?"
6666
```
6767

0 commit comments

Comments
 (0)