This is
Qwen 3.5 VL 4B — a 4B parameter dense hybrid SSM/Attention model with built-in vision capabilities. The smallest model in the Qwen 3.5 family that still delivers solid performance.
1from jang_tools.loader import load_jang_model
2from mlx_lm import generate
3
4model, tokenizer = load_jang_model("dealignai/Qwen3.5-VL-4B-JANG_4S-CRACK")
5
6messages = [{"role": "user", "content": "Your prompt here"}]
7prompt = tokenizer.apply_chat_template(
8 messages, add_generation_prompt=True, tokenize=False)
9
10response = generate(model, tokenizer, prompt=prompt, max_tokens=2000)
11print(response)
1prompt = tokenizer.apply_chat_template(
2 messages, add_generation_prompt=True,
3 enable_thinking=False, tokenize=False)
This model is provided for research and educational purposes. The creators are not responsible for any misuse. By downloading this model, you agree to use it responsibly and in compliance with applicable laws.