Skip to content

Commit 29720ca

Browse files
authored
Update 1-devenv-and-model.md
1 parent 147ea60 commit 29720ca

File tree

1 file changed

+2
-2
lines changed
  • content/learning-paths/mobile-graphics-and-gaming/vision-llm-inference-on-android-with-kleidiai-and-mnn

1 file changed

+2
-2
lines changed

content/learning-paths/mobile-graphics-and-gaming/vision-llm-inference-on-android-with-kleidiai-and-mnn/1-devenv-and-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ pip install -U huggingface_hub
9191
hf download Qwen/Qwen2.5-VL-3B-Instruct --local-dir ./Qwen2.5-VL-3B-Instruct/
9292
pip install llmexport
9393
```
94-
Use the `llmexport` to quantize the model with these options:
94+
Use `llmexport` to quantize the model with these options:
9595

9696
```bash
9797
llmexport --path ../Qwen2.5-VL-3B-Instruct/ --export mnn --quant_bit 4 \
9898
--quant_block 64 --dst_path Qwen2.5-VL-3B-Instruct-convert-4bit-64qblock
9999
```
100100

101101
{{% notice Note %}}
102-
if you run into issues where llmexport is not able to access utils, try the following
102+
If you run into issues where llmexport is not able to access utils, try the following
103103
```bash
104104
# From your project dir (inside the venv)
105105
cat > llmexport_fixed.py <<'PY'

0 commit comments

Comments
 (0)