Text-to-Speech
Transformers
rotorquant
kv-cache-quantization
voxtral
mistral
tts
voice-cloning
zero-shot
quantized
Instructions to use majentik/Voxtral-4B-TTS-2603-RotorQuant with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use majentik/Voxtral-4B-TTS-2603-RotorQuant with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="majentik/Voxtral-4B-TTS-2603-RotorQuant")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("majentik/Voxtral-4B-TTS-2603-RotorQuant", dtype="auto") - Notebooks
- Google Colab
- Kaggle
chore(card): add hardware compatibility section
Browse files
README.md
CHANGED
|
@@ -2,19 +2,16 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
base_model: mistralai/Voxtral-4B-TTS-2603
|
| 4 |
tags:
|
| 5 |
-
- rotorquant
|
| 6 |
-
- kv-cache-quantization
|
| 7 |
-
- voxtral
|
| 8 |
-
- mistral
|
| 9 |
-
- tts
|
| 10 |
-
- voice-cloning
|
| 11 |
-
- zero-shot
|
| 12 |
-
- quantized
|
| 13 |
library_name: transformers
|
| 14 |
pipeline_tag: text-to-speech
|
| 15 |
-
language:
|
| 16 |
-
- en
|
| 17 |
-
inference: false
|
| 18 |
---
|
| 19 |
|
| 20 |
# Voxtral-4B-TTS-2603-RotorQuant
|
|
@@ -23,6 +20,12 @@ inference: false
|
|
| 23 |
|
| 24 |
This is a **documentation repository** that explains how to combine Voxtral-4B-TTS-2603'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.
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
## What is this?
|
| 27 |
|
| 28 |
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-4B-TTS-2603
|
| 4 |
tags:
|
| 5 |
+
- rotorquant
|
| 6 |
+
- kv-cache-quantization
|
| 7 |
+
- voxtral
|
| 8 |
+
- mistral
|
| 9 |
+
- tts
|
| 10 |
+
- voice-cloning
|
| 11 |
+
- zero-shot
|
| 12 |
+
- quantized
|
| 13 |
library_name: transformers
|
| 14 |
pipeline_tag: text-to-speech
|
|
|
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# Voxtral-4B-TTS-2603-RotorQuant
|
|
|
|
| 20 |
|
| 21 |
This is a **documentation repository** that explains how to combine Voxtral-4B-TTS-2603'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.
|
| 22 |
|
| 23 |
+
## Hardware compatibility
|
| 24 |
+
|
| 25 |
+
| Device | VRAM / RAM | Recommendation |
|
| 26 |
+
| --- | --- | --- |
|
| 27 |
+
| Any host that runs the base model | baseline + runtime savings | RotorQuant/TurboQuant is a KV-cache runtime modifier; pair with any weight variant |
|
| 28 |
+
|
| 29 |
## What is this?
|
| 30 |
|
| 31 |
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.
|