magpie_tts 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_type | HF architecture / pipeline class | TRTMC task contract | Exact recipe profiles |
|---|---|---|---|
decoder_ce | nemo.collections.tts.models.magpietts.MagpieTTSModelSource: model_config.targetMetadata: magpie_tts_multilingual_357m.nemo:model_config.yaml at 34d7e40da85c | text_to_audio | magpie-tts-357mmagpie-tts-357m-tp4 |
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.
| Recipe | Exact Hugging Face checkpoint | Task | Build configuration | Declared E2E cases | Manifest |
|---|---|---|---|---|---|
magpie-tts-357m | nvidia/magpie_tts_multilingual_357mRevision: 34d7e40da85cabc97f92198889b65cea27bc7fd1 | fp32; single device | magpie-tts-357m, magpie-tts-357m-tts-probe01, magpie-tts-357m-tts-probe02, magpie-tts-357m-tts-probe03, magpie-tts-357m-tts-probe04 | tests/e2e/models/magpie_tts/manifests/magpie-tts-357m.json | |
magpie-tts-357m-tp4 | nvidia/magpie_tts_multilingual_357m | family default; TP4 | magpie-tts-357m-tp4 | tests/e2e/models/magpie_tts/manifests/magpie-tts-357m-tp4.json |
Family-owned configuration
These keys are extracted from the family's registered config schema. Pass one key per repeatable --set namespace.field=value argument. Build-time keys belong on trtmc build; session keys belong on the family's inference command.
audio_magpie
Schema sources: python/tensorrt_model_connect/families/magpie_tts/runtime_config_schema.pysrc/runtime/models/magpie/config_schema.cpp
--set key | Type | Default | CLI surface | Allowed configuration layers |
|---|---|---|---|---|
audio_magpie.cfg_scale | float | 0.0 | runtime | Platform Profile, Session Request |
audio_magpie.finished_limit | int32 | -1 | runtime | Platform Profile, Session Request |
audio_magpie.greedy | bool | false | runtime | Platform Profile, Session Request |
audio_magpie.max_source_positions | int32 | 0 | build, runtime | Build Time, Bundle Default |
audio_magpie.seed | int64 | -1 | runtime | Platform Profile, Session Request |
audio_magpie.temperature | float | 0.0 | runtime | Platform Profile, Session Request |
trtmc build <hf-id> --output <bundle.bundle> --set audio_magpie.max_source_positions=<value>trtmc generate-audio <bundle.bundle> <task-inputs> --set audio_magpie.cfg_scale=<value>The registry rejects unknown namespaces and fields. A --config file can set the same keys in JSON or YAML form.
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 generate-audio
Generate audio from a text prompt.
Declared recipes: magpie-tts-357m, magpie-tts-357m-tp4
trtmc generate-audio <bundle.bundle> --prompt "<text>" --output <output.wav>| Supported input or option | Requirement | Runtime behavior |
|---|---|---|
--prompt <TEXT> | Required | Text input for audio generation. |
--output <PATH> | Optional | Output WAV path. |
--max-new-tokens <N> | Optional | Limit the number of generated tokens or audio frames. |
Code basis
Runtime provider: magpie
include/trtmc/pipeline.hsrc/cli/main.cppsrc/runtime/models/magpie/pipeline.cpptests/e2e/models/magpie_tts/manifests/magpie-tts-357m-tp4.jsontests/e2e/models/magpie_tts/manifests/magpie-tts-357m.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.