minimax_h3 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 |
|---|---|---|---|
| — | MiniMaxH3ModularPipelineSource: model_index._class_nameMetadata: model_index.json at 48d93ede7327 | diffusion_media_generation | minimax-h3-768p |
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 |
|---|---|---|---|---|---|
minimax-h3-768p | MiniMaxAI/MiniMax-H3Revision: 48d93ede732756e404a3b1b2f3b3a9b5a22f6cfc | bf16; CP1 | minimax-h3-768p | tests/e2e/models/minimax_h3/manifests/minimax-h3-768p.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.
minimax_h3
Schema sources: python/tensorrt_model_connect/families/minimax_h3/runtime_config_schema.pysrc/runtime/models/minimax_h3/config_schema.cpp
--set key | Type | Default | CLI surface | Allowed configuration layers |
|---|---|---|---|---|
minimax_h3.first_block_cache | bool | false | build | Build Time, Bundle Default, Session Request |
minimax_h3.first_block_cache_threshold | double | 0.025 | build, runtime | Build Time, Bundle Default, Platform Profile, Session Request |
trtmc build <hf-id> --output <bundle.bundle> --set minimax_h3.first_block_cache=<value>trtmc generate-video <bundle.bundle> <task-inputs> --set minimax_h3.first_block_cache_threshold=<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-video
Generate video frames from a text prompt.
Declared recipes: minimax-h3-768p
trtmc generate-video <bundle.bundle> --prompt "<text>" --output <output-dir> [generation options]| Supported input or option | Requirement | Runtime behavior |
|---|---|---|
--prompt <TEXT> | Required | Text conditioning input. |
--output <DIR> | Optional | Directory for generated PNG frames. |
--seed <N> | Optional | Set the sampling or diffusion seed. |
--num-steps <N> | Optional | Set the number of diffusion or flow-matching steps. |
--height <N> | Optional | Override the generated image or video height. |
--width <N> | Optional | Override the generated image or video width. |
Code basis
Runtime provider: minimax_h3
src/cli/main.cppinclude/trtmc/pipeline.htests/e2e/models/minimax_h3/manifests/minimax-h3-768p.jsonsrc/runtime/models/minimax_h3/pipeline.cppsrc/runtime/models/minimax_h3/pipeline.h
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.