Automatic Speech Recognition
Transformers
rotorquant
kv-cache-quantization
voxtral
mistral
audio
speech-understanding
quantized
Instructions to use majentik/Voxtral-Mini-3B-2507-RotorQuant with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use majentik/Voxtral-Mini-3B-2507-RotorQuant with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="majentik/Voxtral-Mini-3B-2507-RotorQuant")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("majentik/Voxtral-Mini-3B-2507-RotorQuant", dtype="auto") - Notebooks
- Google Colab
- Kaggle
chore(card): add hardware compatibility section
Browse files
README.md
CHANGED
|
@@ -2,18 +2,15 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
base_model: mistralai/Voxtral-Mini-3B-2507
|
| 4 |
tags:
|
| 5 |
-
- rotorquant
|
| 6 |
-
- kv-cache-quantization
|
| 7 |
-
- voxtral
|
| 8 |
-
- mistral
|
| 9 |
-
- audio
|
| 10 |
-
- speech-understanding
|
| 11 |
-
- quantized
|
| 12 |
library_name: transformers
|
| 13 |
pipeline_tag: automatic-speech-recognition
|
| 14 |
-
language:
|
| 15 |
-
- en
|
| 16 |
-
inference: false
|
| 17 |
---
|
| 18 |
|
| 19 |
# Voxtral-Mini-3B-2507-RotorQuant
|
|
@@ -22,6 +19,12 @@ inference: false
|
|
| 22 |
|
| 23 |
This is a **documentation repository** that explains how to combine Voxtral-Mini-3B-2507's weights with RotorQuant inference-time KV cache compression. No weights are stored here — use the base model directly and apply RotorQuant via the Python package or llama.cpp fork.
|
| 24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
## What is this?
|
| 26 |
|
| 27 |
KV cache compression reduces the memory used by the attention cache during inference. Unlike weight quantization (which is baked into the GGUF/MLX file), KV cache compression is applied at runtime — so the same base weights can be used with or without compression.
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
base_model: mistralai/Voxtral-Mini-3B-2507
|
| 4 |
tags:
|
| 5 |
+
- rotorquant
|
| 6 |
+
- kv-cache-quantization
|
| 7 |
+
- voxtral
|
| 8 |
+
- mistral
|
| 9 |
+
- audio
|
| 10 |
+
- speech-understanding
|
| 11 |
+
- quantized
|
| 12 |
library_name: transformers
|
| 13 |
pipeline_tag: automatic-speech-recognition
|
|
|
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# Voxtral-Mini-3B-2507-RotorQuant
|
|
|
|
| 19 |
|
| 20 |
This is a **documentation repository** that explains how to combine Voxtral-Mini-3B-2507's weights with RotorQuant inference-time KV cache compression. No weights are stored here — use the base model directly and apply RotorQuant via the Python package or llama.cpp fork.
|
| 21 |
|
| 22 |
+
## Hardware compatibility
|
| 23 |
+
|
| 24 |
+
| Device | VRAM / RAM | Recommendation |
|
| 25 |
+
| --- | --- | --- |
|
| 26 |
+
| Any host that runs the base model | baseline + runtime savings | RotorQuant/TurboQuant is a KV-cache runtime modifier; pair with any weight variant |
|
| 27 |
+
|
| 28 |
## What is this?
|
| 29 |
|
| 30 |
KV cache compression reduces the memory used by the attention cache during inference. Unlike weight quantization (which is baked into the GGUF/MLX file), KV cache compression is applied at runtime — so the same base weights can be used with or without compression.
|