Views
No views yet
open-thoughts/OpenThinker3-7B quantized to AWQ-W4A16 (4-bit weights).Caveat. Asymmetric; a few older vLLM kernels prefer symmetric W4A16.
| Source | open-thoughts/OpenThinker3-7B |
| Scheme | AWQ-W4A16 (4-bit) |
| Format | compressed-tensors |
| Parameters | 7.6B |
| Size on disk | 5.6 GB |
| Compression | 2.73x smaller than the 15.2 GB source |
| Calibration | HuggingFaceH4/ultrachat_200k, 256 samples |
| Left unquantized | lm_head |
| Quantized on | A40 |
| Quantized by | Sohailhosseini |
1vllm serve Sohailhosseini/OpenThinker3-7B-AWQ-W4A16 \
2 --max-model-len 327681from vllm import LLM, SamplingParams
2
3if __name__ == "__main__":
4 llm = LLM("Sohailhosseini/OpenThinker3-7B-AWQ-W4A16", max_model_len=32768)
5 out = llm.chat(
6 [{"role": "user", "content": "What is quantization? Answer in one sentence."}],
7 SamplingParams(temperature=0.6, max_tokens=512),
8 )
9 print(out[0].outputs[0].text)/v1/chat/completions endpoint - not merely loaded. Three prompts, greedy decoding, all three coherent.MarlinLinearKernel for CompressedTensorsWNA16, which is the path this checkpoint is meant to take.recipe.yaml in this repo is the exact modifier stack that was applied, and the scheme, ignored layers, calibration set and hardware are in the table above.