Instructions to use FastFlowLM/Qwen3-VL-4B-Instruct-NPU2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FastFlowLM/Qwen3-VL-4B-Instruct-NPU2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="FastFlowLM/Qwen3-VL-4B-Instruct-NPU2") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("FastFlowLM/Qwen3-VL-4B-Instruct-NPU2") model = AutoModelForCausalLM.from_pretrained("FastFlowLM/Qwen3-VL-4B-Instruct-NPU2") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use FastFlowLM/Qwen3-VL-4B-Instruct-NPU2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FastFlowLM/Qwen3-VL-4B-Instruct-NPU2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FastFlowLM/Qwen3-VL-4B-Instruct-NPU2", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/FastFlowLM/Qwen3-VL-4B-Instruct-NPU2
- SGLang
How to use FastFlowLM/Qwen3-VL-4B-Instruct-NPU2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "FastFlowLM/Qwen3-VL-4B-Instruct-NPU2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FastFlowLM/Qwen3-VL-4B-Instruct-NPU2", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "FastFlowLM/Qwen3-VL-4B-Instruct-NPU2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FastFlowLM/Qwen3-VL-4B-Instruct-NPU2", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use FastFlowLM/Qwen3-VL-4B-Instruct-NPU2 with Docker Model Runner:
docker model run hf.co/FastFlowLM/Qwen3-VL-4B-Instruct-NPU2
feat: update mm & weights
#2
by FastFlowLM - opened
- config.json +1 -1
- model.q4nx +1 -1
- vision_mm.xclbin +2 -2
config.json
CHANGED
|
@@ -30,7 +30,7 @@
|
|
| 30 |
"addr_l_begin_mha": 54272,
|
| 31 |
"addr_l_end_mha": 25600,
|
| 32 |
"addr_kk": 45056,
|
| 33 |
-
"flm_version": "0.9.
|
| 34 |
"vision_model_weight": "vision_weight.q4nx",
|
| 35 |
"vision_mm_engine_xclbin_name": "vision_mm.xclbin",
|
| 36 |
"vision_mha_engine_xclbin_name":"vision_attn.xclbin"
|
|
|
|
| 30 |
"addr_l_begin_mha": 54272,
|
| 31 |
"addr_l_end_mha": 25600,
|
| 32 |
"addr_kk": 45056,
|
| 33 |
+
"flm_version": "0.9.17",
|
| 34 |
"vision_model_weight": "vision_weight.q4nx",
|
| 35 |
"vision_mm_engine_xclbin_name": "vision_mm.xclbin",
|
| 36 |
"vision_mha_engine_xclbin_name":"vision_attn.xclbin"
|
model.q4nx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3292269616
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69a92edb4d47572409954d4dd8e9951bda072f724e18b7493cd8d9fe148993fc
|
| 3 |
size 3292269616
|
vision_mm.xclbin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6610fe4912cfe065781879f2a896d981015d49ab98dac27a41a012f580c4f8a2
|
| 3 |
+
size 486939
|