Skip to main content

← All model recipe tasks

whisper model family

Tasks

Supported architectures and task heads

The Hugging Face values below are copied from checkpoint metadata at the recorded revision. The TRTMC task contract comes from the exact E2E recipe. Architecture identity selects or describes a source graph; it does not imply that TRTMC reproduces every Hugging Face head with the same model_type. For example, an encoder recipe may consume the base model and intentionally return hidden states instead of the checkpoint's pretraining or classification logits.

HF model_typeHF architecture / pipeline classTRTMC task contractExact recipe profiles
whisperWhisperForConditionalGeneration
Source: config.architectures
Metadata: config.json at 41f01f3fe87f
speech_to_text
whisper-large-v3-turbo
whisper-large-v3-turbo-tp4
whisper-tiny-fp16
whisper-tiny-fp16-tp2

Declared recipes

Each row comes from a model-owned E2E manifest. It declares a test recipe; it is not a live pass receipt for every hardware target.

RecipeExact Hugging Face checkpointTaskBuild configurationDeclared E2E casesManifest
whisper-large-v3-turboopenai/whisper-large-v3-turbofp32; single devicewhisper-large-v3-turbo, whisper-large-v3-turbo-asr-probe01, whisper-large-v3-turbo-asr-probe02, whisper-large-v3-turbo-asr-probe03, whisper-large-v3-turbo-asr-probe04, whisper-large-v3-turbo-asr-probe05, whisper-large-v3-turbo-asr-probe06, whisper-large-v3-turbo-asr-probe08tests/e2e/models/whisper/manifests/whisper-large-v3-turbo.json
whisper-large-v3-turbo-tp4openai/whisper-large-v3-turbofamily default; TP4whisper-large-v3-turbo-tp4tests/e2e/models/whisper/manifests/whisper-large-v3-turbo-tp4.json
whisper-tiny-fp16openai/whisper-tinyfp16; single device
FP32 layers: 0
whisper-tiny-fp16, whisper-tiny-fp16-asr-probe01, whisper-tiny-fp16-asr-probe02, whisper-tiny-fp16-asr-probe03, whisper-tiny-fp16-asr-probe04, whisper-tiny-fp16-asr-probe05, whisper-tiny-fp16-asr-probe06, whisper-tiny-fp16-asr-probe08tests/e2e/models/whisper/manifests/whisper-tiny-fp16.json
whisper-tiny-fp16-tp2openai/whisper-tinyfp16; TP2
FP32 layers: 0
whisper-tiny-fp16-tp2tests/e2e/models/whisper/manifests/whisper-tiny-fp16-tp2.json

Family-owned configuration

This family does not declare a family-owned --set namespace. Use the explicit CLI options shown below and the shared configuration namespaces documented in Configure Runtime Behavior.

Family-specific CLI contracts

Inputs and options below are filtered by the declared E2E task and the methods and configuration fields used by that family's native runtime implementation. The global CLI parser accepts a wider union of flags; flags absent here are not declared for this family.

trtmc transcribe

Transcribe an audio file.

Declared recipes: whisper-large-v3-turbo, whisper-large-v3-turbo-tp4, whisper-tiny-fp16, whisper-tiny-fp16-tp2

trtmc transcribe <bundle.bundle> --audio <input.wav>
Supported input or optionRequirementRuntime behavior
--audio <PATH>RequiredInput WAV file; repeat for supported offline batches.
--max-new-tokens <N>OptionalMaximum output tokens.
Code basis

Runtime provider: whisper

  • include/trtmc/pipeline.h
  • src/cli/main.cpp
  • tests/e2e/models/whisper/manifests/whisper-large-v3-turbo-tp4.json
  • tests/e2e/models/whisper/manifests/whisper-large-v3-turbo.json
  • tests/e2e/models/whisper/manifests/whisper-tiny-fp16-tp2.json
  • tests/e2e/models/whisper/manifests/whisper-tiny-fp16.json

Bundle lifecycle commands

These commands apply to every declared recipe in this family; they do not add task inputs or model capabilities.

trtmc build

Build one exact checkpoint into a TensorRT-Model-Connect bundle.

trtmc build <hf-id> --output <bundle.bundle>

trtmc inspect

Inspect bundle metadata, runtime identity, and packaged sections.

trtmc inspect <bundle.bundle>

See the CLI Reference for all options and limitations.