Image-Text-to-Text
Transformers
Safetensors
kimi_k3
feature-extraction
vLLM
cubic-quantization
W2A8
W3A8
W4A8
W2A16
W3A16
W4A16
multimodal
custom_code
8-bit precision
Instructions to use QuantTrio/Kimi-K3-Cubic-2.5Bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuantTrio/Kimi-K3-Cubic-2.5Bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="QuantTrio/Kimi-K3-Cubic-2.5Bit", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("QuantTrio/Kimi-K3-Cubic-2.5Bit", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use QuantTrio/Kimi-K3-Cubic-2.5Bit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "QuantTrio/Kimi-K3-Cubic-2.5Bit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuantTrio/Kimi-K3-Cubic-2.5Bit", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/QuantTrio/Kimi-K3-Cubic-2.5Bit
- SGLang
How to use QuantTrio/Kimi-K3-Cubic-2.5Bit 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 "QuantTrio/Kimi-K3-Cubic-2.5Bit" \ --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": "QuantTrio/Kimi-K3-Cubic-2.5Bit", "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 "QuantTrio/Kimi-K3-Cubic-2.5Bit" \ --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": "QuantTrio/Kimi-K3-Cubic-2.5Bit", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use QuantTrio/Kimi-K3-Cubic-2.5Bit with Docker Model Runner:
docker model run hf.co/QuantTrio/Kimi-K3-Cubic-2.5Bit
Upload README.md
Browse files
README.md
CHANGED
|
@@ -25,12 +25,16 @@ Base model: [moonshotai/Kimi-K3](https://huggingface.co/moonshotai/Kimi-K3)
|
|
| 25 |
**2.8T parameters 路 2.5-bit experts 路 one 8 脳 H200 node 路 ~700K context**
|
| 26 |
|
| 27 |
<div align="center">
|
| 28 |
-
<h3>
|
| 29 |
<p>
|
| 30 |
-
|
| 31 |
</p>
|
| 32 |
<p>
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
</p>
|
| 35 |
<p>
|
| 36 |
<a href="https://ko-fi.com/quanttrio">
|
|
|
|
| 25 |
**2.8T parameters 路 2.5-bit experts 路 one 8 脳 H200 node 路 ~700K context**
|
| 26 |
|
| 27 |
<div align="center">
|
| 28 |
+
<h3>Keep Open Quantized Models Accessible</h3>
|
| 29 |
<p>
|
| 30 |
+
Large model checkpoints are expensive to host, and Hugging Face storage is becoming the main bottleneck.
|
| 31 |
</p>
|
| 32 |
<p>
|
| 33 |
+
Your support helps keep quantized models free and easy to download for researchers, developers, students,
|
| 34 |
+
and small teams without large GPU budgets.
|
| 35 |
+
</p>
|
| 36 |
+
<p>
|
| 37 |
+
Every contribution goes toward storage costs, helping more people experiment, evaluate, and build with open models.
|
| 38 |
</p>
|
| 39 |
<p>
|
| 40 |
<a href="https://ko-fi.com/quanttrio">
|