The hybrid quant employs different quantization levels on a per layer basis to increased
flexibility of trading off performance vs file size. Less parameter bits are used at deep layers
and more bits at cortex layers to simultaneously optimize quantized size and model performance.
The quants are all K to increase processing efficiency on old GPUs or CPUs.
The quant was optimized for reasoning performance across a curated set of test prompts and
then checked for performance on BBA eval. This model does not perform well on the curated test prompts
and will also hallucinate most knowledge based prompts.
Comparison:
Quant
size
PPL
Comment
Q6_K
3.3e9
6.9
-
Q6_K_H
3.2e9
6.9
Hybrid quant with Q6_K embed Q6_K output
Usage:
This is a audio capable model. It can be used together with its multimedia projector layers to process audio and text inputs
and generate text outputs. The mmproj file is made available in this repository. To test audio mode follow the docs in the mtmd
readme in the tools directory of the source tree https://github.com/ggml-org/llama.cpp/blob/master/tools/mtmd/README.md .
The unique feature this audio model offers is a built in transcribe mode, which instructs the model to just transcribe a given
audio stream with no other prompting.
To trigger the transcribe mode the text "lang:en[TRANSCRIBE] is concatenated to the assistant prompt [/INST]:"
This prompt can be achieved through the use of prompt injection of "lang:en[TRANSCRIBE] for the beginning of the assistant
response, or with a prompt template dedicated to transcription if the inference platform can configure it. Note the [TRANSCRIBE]
is a special token in the model vocab and must be tokenized as such to make it work correctly. For other
target languages change en to the appropriate language code.
Note that the mtmd in llama.cpp currently does not add the [BEGIN_AUDIO] special token for any Voxtral audio prompt, so the
file mtmd.cpp must currently be manually patched as described in https://github.com/ggml-org/llama.cpp/issues/17868 .