Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,19 @@ Join the [Triton and TensorRT community](https://www.nvidia.com/en-us/deep-learn
practices, and more. Need enterprise support? NVIDIA global support is available
for Triton Inference Server with the [NVIDIA AI Enterprise software suite](https://www.nvidia.com/en-us/data-center/products/ai-enterprise/).

See the [Latest Release Notes](https://docs.nvidia.com/deeplearning/triton-inference-server/release-notes/) for updates on the newest features and bug fixes.
See the [Latest Release Notes](https://docs.nvidia.com/deeplearning/triton-inference-server/release-notes/) for updates on the newest features and bug fixes.
## Validating a TensorRT Model Before Deployment

Model Navigator provides a simple workflow for validating TensorRT `.plan`
models before packaging them into a Triton model repository. This helps ensure
that exported models load correctly, run with the expected shapes, and match
runtime requirements.

Example:

```bash
model-navigator validate \
--model-path ./model.plan \
--model-format tensorrt \
--input-shapes "x:[1,3,224,224]" \
--verbose