Instructions to use majentik/DeepSeek-V3.2-RotorQuant with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use majentik/DeepSeek-V3.2-RotorQuant with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="majentik/DeepSeek-V3.2-RotorQuant")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("majentik/DeepSeek-V3.2-RotorQuant", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use majentik/DeepSeek-V3.2-RotorQuant with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "majentik/DeepSeek-V3.2-RotorQuant" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "majentik/DeepSeek-V3.2-RotorQuant", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/majentik/DeepSeek-V3.2-RotorQuant
- SGLang
How to use majentik/DeepSeek-V3.2-RotorQuant 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 "majentik/DeepSeek-V3.2-RotorQuant" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "majentik/DeepSeek-V3.2-RotorQuant", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "majentik/DeepSeek-V3.2-RotorQuant" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "majentik/DeepSeek-V3.2-RotorQuant", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use majentik/DeepSeek-V3.2-RotorQuant with Docker Model Runner:
docker model run hf.co/majentik/DeepSeek-V3.2-RotorQuant
docs: Tier 2 polish — variant matrix + quant trade-off
Browse files
README.md
CHANGED
|
@@ -139,3 +139,18 @@ If you want combined weight + KV cache compression, majentik hosts pre-quantized
|
|
| 139 |
- [TurboQuant paper (arXiv 2504.19874)](https://arxiv.org/abs/2504.19874)
|
| 140 |
- [llama-cpp-turboquant fork](https://github.com/johndpope/llama-cpp-turboquant/tree/feature/planarquant-kv-cache)
|
| 141 |
- [Base model: deepseek-ai/DeepSeek-V3.2](https://huggingface.co/deepseek-ai/DeepSeek-V3.2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
- [TurboQuant paper (arXiv 2504.19874)](https://arxiv.org/abs/2504.19874)
|
| 140 |
- [llama-cpp-turboquant fork](https://github.com/johndpope/llama-cpp-turboquant/tree/feature/planarquant-kv-cache)
|
| 141 |
- [Base model: deepseek-ai/DeepSeek-V3.2](https://huggingface.co/deepseek-ai/DeepSeek-V3.2)
|
| 142 |
+
|
| 143 |
+
## Variants in this family
|
| 144 |
+
|
| 145 |
+
(Showing 8 sibling variants under `majentik/deepseek-v3.2-*`. The current variant — `RotorQuant` — is **bolded**.)
|
| 146 |
+
|
| 147 |
+
| Variant | Runtime | Approx size | Use case |
|
| 148 |
+
|---|---|---|---|
|
| 149 |
+
| **RotorQuant** | runtime modifier | n/a | KV-cache root (weight-agnostic) |
|
| 150 |
+
| [RotorQuant-MLX-2bit](https://huggingface.co/majentik/deepseek-v3.2-rotorquant-mlx-2bit) | mlx-lm | card-only | Apple Silicon, smallest |
|
| 151 |
+
| [RotorQuant-MLX-4bit](https://huggingface.co/majentik/deepseek-v3.2-rotorquant-mlx-4bit) | mlx-lm | card-only | Apple Silicon balanced |
|
| 152 |
+
| [RotorQuant-MLX-8bit](https://huggingface.co/majentik/deepseek-v3.2-rotorquant-mlx-8bit) | mlx-lm | card-only | Apple Silicon reference |
|
| 153 |
+
| [TurboQuant](https://huggingface.co/majentik/deepseek-v3.2-turboquant) | runtime modifier | n/a | KV-cache root (weight-agnostic) |
|
| 154 |
+
| [TurboQuant-MLX-2bit](https://huggingface.co/majentik/deepseek-v3.2-turboquant-mlx-2bit) | mlx-lm | card-only | Apple Silicon, smallest |
|
| 155 |
+
| [TurboQuant-MLX-4bit](https://huggingface.co/majentik/deepseek-v3.2-turboquant-mlx-4bit) | mlx-lm | card-only | Apple Silicon balanced |
|
| 156 |
+
| [TurboQuant-MLX-8bit](https://huggingface.co/majentik/deepseek-v3.2-turboquant-mlx-8bit) | mlx-lm | card-only | Apple Silicon reference |
|