RedHatAI / whisper-large-v3-FP8-dynamic

huggingface.co
Total runs: 11.8K
24-hour runs: 3.0K
7-day runs: 9.1K
30-day runs: 9.2K
Model's Last Updated: April 22 2025
automatic-speech-recognition

Introduction of whisper-large-v3-FP8-dynamic

Model Details of whisper-large-v3-FP8-dynamic

whisper-large-v3-FP8-Dynamic

Model Overview
  • Model Architecture: whisper-large-v3
    • Input: Audio-Text
    • Output: Text
  • Model Optimizations:
    • Weight quantization: FP8
    • Activation quantization: FP8
  • Release Date: 04/16/2025
  • Version: 1.0
  • Model Developers: Neural Magic

Quantized version of openai/whisper-large-v3 .

Model Optimizations

This model was obtained by quantizing the weights of openai/whisper-large-v3 to FP8 data type, ready for inference with vLLM >= 0.5.2.

Deployment
Use with vLLM

This model can be deployed efficiently using the vLLM backend, as shown in the example below.

from vllm.assets.audio import AudioAsset
from vllm import LLM, SamplingParams

# prepare model
llm = LLM(
    model="neuralmagic/whisper-large-v3-FP8-Dynamic",
    max_model_len=448,
    max_num_seqs=400,
    limit_mm_per_prompt={"audio": 1},
)

# prepare inputs
inputs = {  # Test explicit encoder/decoder prompt
    "encoder_prompt": {
        "prompt": "",
        "multi_modal_data": {
            "audio": AudioAsset("winning_call").audio_and_sample_rate,
        },
    },
    "decoder_prompt": "<|startoftranscript|>",
}

# generate response
print("========== SAMPLE GENERATION ==============")
outputs = llm.generate(inputs, SamplingParams(temperature=0.0, max_tokens=64))
print(f"PROMPT  : {outputs[0].prompt}")
print(f"RESPONSE: {outputs[0].outputs[0].text}")
print("==========================================")

vLLM also supports OpenAI-compatible serving. See the documentation for more details.

Creation

This model was created with llm-compressor by running the code snippet below.

Model Creation Code
python quantize.py \
    --model_path openai/whisper-large-v3 \
    --quant_path output_dir/whisper-large-v3-FP8-Dynamic
import argparse
import torch
import os
from datasets import load_dataset
from transformers import WhisperProcessor
from llmcompressor import oneshot
from llmcompressor.modifiers.quantization import QuantizationModifier
from llmcompressor.transformers.tracing import TraceableWhisperForConditionalGeneration
from compressed_tensors.quantization import QuantizationType

# --- Args ---
parser = argparse.ArgumentParser()
parser.add_argument('--model_path', type=str, required=True)
parser.add_argument('--quant_path', type=str, required=True)
parser.add_argument('--observer', type=str, default="minmax")
args = parser.parse_args()

# --- Load Model ---
model = TraceableWhisperForConditionalGeneration.from_pretrained(
    args.model_path,
    device_map="auto",
    torch_dtype="auto",
)
model.config.forced_decoder_ids = None
processor = WhisperProcessor.from_pretrained(args.model_path)

# --- Recipe (FP8 Dynamic) ---
recipe = [
    QuantizationModifier(
        targets="Linear",
        scheme="FP8_DYNAMIC",
        sequential_targets=["WhisperEncoderLayer", "WhisperDecoderLayer"],
        ignore=["re:.*lm_head"],
    )
]

# --- Run oneshot ---
oneshot(
    model=model,
    recipe=recipe,
    trust_remote_code_model=True,
)

# --- Save ---
os.makedirs(args.quant_path, exist_ok=True)
model.save_pretrained(args.quant_path, save_compressed=True)
processor.save_pretrained(args.quant_path)

Evaluation

The model was evaluated on LibriSpeech and Fleurs datasets using lmms-eval , via the following commands:

Evaluation Commands

Librispeech:

lmms-eval \
    --model=whisper_vllm \
    --model_args="pretrained=neuralmagic-ent/whisper-large-v3-FP8-Dynamic" \
    --batch_size 64 \
    --output_path <output_file_path> \
    --tasks librispeech

Fleurs:

lmms-eval \
    --model=whisper_vllm \
    --model_args="pretrained=neuralmagic-ent/whisper-large-v3-FP8-Dynamic" \
    --batch_size 64 \
    --output_path <output_file_path> \
    --tasks fleurs
Benchmark Split BF16 w8a8 Recovery (%)
LibriSpeech (WER) test-clean 2.1725 2.097 103.60%
test-other 3.903 3.9617 98.52%
Fleurs (X→en, WER) cmn_hans_cn 7.7935 7.6676 101.64%
en 4.0168 4.0236 99.83%
yue_hant_hk 9.4383 9.4038 100.37%

Runs of RedHatAI whisper-large-v3-FP8-dynamic on huggingface.co

11.8K
Total runs
3.0K
24-hour runs
9.0K
3-day runs
9.1K
7-day runs
9.2K
30-day runs

More Information About whisper-large-v3-FP8-dynamic huggingface.co Model

More whisper-large-v3-FP8-dynamic license Visit here:

https://choosealicense.com/licenses/apache-2.0

whisper-large-v3-FP8-dynamic huggingface.co

whisper-large-v3-FP8-dynamic huggingface.co is an AI model on huggingface.co that provides whisper-large-v3-FP8-dynamic's model effect (), which can be used instantly with this RedHatAI whisper-large-v3-FP8-dynamic model. huggingface.co supports a free trial of the whisper-large-v3-FP8-dynamic model, and also provides paid use of the whisper-large-v3-FP8-dynamic. Support call whisper-large-v3-FP8-dynamic model through api, including Node.js, Python, http.

whisper-large-v3-FP8-dynamic huggingface.co Url

https://huggingface.co/RedHatAI/whisper-large-v3-FP8-dynamic

RedHatAI whisper-large-v3-FP8-dynamic online free

whisper-large-v3-FP8-dynamic huggingface.co is an online trial and call api platform, which integrates whisper-large-v3-FP8-dynamic's modeling effects, including api services, and provides a free online trial of whisper-large-v3-FP8-dynamic, you can try whisper-large-v3-FP8-dynamic online for free by clicking the link below.

RedHatAI whisper-large-v3-FP8-dynamic online free url in huggingface.co:

https://huggingface.co/RedHatAI/whisper-large-v3-FP8-dynamic

whisper-large-v3-FP8-dynamic install

whisper-large-v3-FP8-dynamic is an open source model from GitHub that offers a free installation service, and any user can find whisper-large-v3-FP8-dynamic on GitHub to install. At the same time, huggingface.co provides the effect of whisper-large-v3-FP8-dynamic install, users can directly use whisper-large-v3-FP8-dynamic installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

whisper-large-v3-FP8-dynamic install url in huggingface.co:

https://huggingface.co/RedHatAI/whisper-large-v3-FP8-dynamic

Url of whisper-large-v3-FP8-dynamic

whisper-large-v3-FP8-dynamic huggingface.co Url

Provider of whisper-large-v3-FP8-dynamic huggingface.co

RedHatAI
ORGANIZATIONS

Other API from RedHatAI

huggingface.co

Total runs: 26.2K
Run Growth: -15.7K
Growth Rate: -59.90%
Updated:May 18 2026
huggingface.co

Total runs: 20.9K
Run Growth: -11.8K
Growth Rate: -56.48%
Updated:April 29 2026