File size: 569 Bytes
403217e 7f00c99 403217e 52eb973 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
---
license: apache-2.0
base_model:
- Qwen/Qwen3-0.6B
tags:
- openvino
- npu
- qwen
- NPU
- intel
---
Model converted specifically for NPU on Intel devices.
```
pip install --pre openvino==2025.2.0rc2 openvino-tokenizers==2025.2.0.0rc2 openvino-genai==2025.2.0.0rc2 --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
```
NPU driver Version required : 32.0.100.4023
```
import openvino_genai as ov_genai
pipe = ov_genai.LLMPipeline("qwen3-0.6b-int4-ov-npu", device="NPU")
pipe.generate("The Sun is yellow because", max_new_tokens=500)
``` |