Views
No views yet
exllamav3-compatible quantization of Qwen/Qwen3.5-9B; the underlying weights are unchanged Qwen3.5-9B weights at reduced precision.Text only.Qwen/Qwen3.5-9Bis a multimodal model; this checkpoint contains only the language model (text input -> text output). The vision/video input encoders and the MTP draft head are not included.
Qwen/Qwen3.5-9B (Apache-2.0, Alibaba Cloud) - this is an EXL3 quantization of itexllamav3).LICENSE (Custom Model License Agreement).| File | What it is | Size |
|---|---|---|
model.safetensors | Language model, OraQuant EXL3 (mixed 2-4 bit trellis) | ~4.7 GB |
config.json, generation_config.json | Model / generation configuration | - |
tokenizer.json, vocab.json, merges.txt, tokenizer_config.json, chat_template.jinja | Tokenizer and chat template | - |
LICENSE | Custom Model License Agreement | - |
exllamav3 (no patch required; tested with v1.2.0):1from exllamav3 import Cache, Config, Generator, Model, Tokenizer
2
3config = Config.from_directory("/path/to/Qwen3.5-9B-OQ-EXL3")
4model = Model.from_config(config)
5cache = Cache(model, max_num_tokens=8192)
6model.load()
7tokenizer = Tokenizer.from_config(config)
8generator = Generator(model=model, cache=cache, tokenizer=tokenizer)
9
10prompt = "<|im_start|>user\nWhat is 17 * 23?<|im_end|>\n<|im_start|>assistant\n"
11print(generator.generate(prompt=prompt, max_new_tokens=400, completion_only=True,
12 add_bos=False,
13 stop_conditions=[tokenizer.eos_token_id,
14 tokenizer.single_id("<|im_end|>")]))exllamav3-based frontends (e.g. an OpenAI-compatible server such as TabbyAPI) configured to point at the model directory.chat_template.jinja.Qwen/Qwen3.5-9B weights; no additional training was performed."Copyright 2025 Alibaba Cloud. Licensed under the Apache License, Version 2.0."