A Viam provided ML Model service backed by NVIDIA's Triton Inference Server. Configure this ML Model service as a modular resource on your machine with a Jetson board to deploy TensorFlow or PyTorch ML models to your machine faster while consuming less computer power.
Note
For more information, see the ML Model service documentation.
A NVIDIA Jetson Orin board with the following installed:
- Jetpack 5
- NVIDIA Container Runtime
Run the following to install nvidia-jetpack
and nvidia-container
on your robot's computer:
sudo apt-get install nvidia-jetpack nvidia-container
Pull the triton module docker container:
docker pull ghcr.io/viam-modules/viam-mlmodelservice-triton:latest
Examine the output to find the exact tag associated with latest.
Use this as "version"
in configuration.
Then, if you haven't done so already, create a new robot in the Viam app.
Install viam-server
on the board and connect to the robot.
To use this module on your machine, follow these instructions:
Note
Before configuring your ML Model service module, you must create a robot.
Navigate to the Config tab of your robot’s page in the Viam app.
Click on the Services subtab and click Create service.
Select ML Model, then search for the mlmodelservice:triton
model.
Click Add module.
Give your resource a name of your choice and click Create.
First, make sure your module version is correct.
Select Raw JSON mode.
Your "modules"
array should appear like the following:
{
"type": "registry",
"name": "viam_mlmodelservice-triton-jetpack",
"module_id": "viam:mlmodelservice-triton-jetpack",
"version": "0.4.0"
}
Replace the value of the "version" field with the value you determined above with the docker pull command. Save your config.
Note
For more information, see Configure a Robot.
Now, to configure your machine's Attributes, you have two options. You can use a TensorFlow or PyTorch model from the Registry, or you can load an existing TensorFlow or PyTorch model on your machine. To deploy a model from the Registry, navigate back to the Config tab of your machine in the Viam app and switch back to Builder mode. Click on the Select ML model field and select a model from the dropdown that appears. Your ML model service will automatically be configured with this model. You can explore the available models in the Registry.
To deploy an existing model on your machine, you must first create a model repository on your machine:
Currently, you must manually create a Triton model repository.
On your robot's Jetson computer, create a structured repository under the ~/.viam
directory.
The exact subpath under ~/.viam
does not matter.
Note
Where you should place your model repository depends on the .viam
directory where the cloud config file is located.
You may need to place the model repository in the /root/.viam
directory for it to work properly, depending on the .viam
directory you are running from. If you encounter any issues, consider trying the /root/.viam
directory as an alternative location.
For example, after unpacking the module, to add the EfficientDet-Lite4 Object Detection model, place the model repository under ~/.viam/triton/repository
:
$ tree ~/.viam
~/.viam
├── cached_cloud_config_05536cf6-f8a6-464f-b05c-bf1e57e9d1d9.json
└── triton
└── repository
└── efficientdet-lite4-detection
├── 1
│ └── model.savedmodel
│ ├── saved_model.pb
│ └── variables
│ ├── variables.data-00000-of-00001
│ └── variables.index
└── config.pbext
The config.pbext
file must exist, but at least for TensorFlow models it can be empty.
For other types of models, please consult the Triton Server model repository documentation for details on the correct contents of the config.pbext
file.
The version here is 1
but it can be any positive integer.
Newer versions will be preferred by default.
After creating your model repository, configure the required attributes to deploy your model on your robot. Navigate back to the Config tab of your machine in the Viam app. Fill in the required Attributes to deploy the model:
The following attributes are available for the MLModel service viam:mlmodelservice:triton
:
Name | Type | Inclusion | Description |
---|---|---|---|
model_name |
string | Required | The model to be loaded from the model repository. |
model_repository_path |
string | Required | The container-side path to a model repository. Note that this must be a subdirectory of the $HOME/.viam directory of the user running viam-server . |
backend_directory |
string | Optional | A container side path to the TritonServer "backend" directory. You normally do not need to override this; the build will set it to the backend directory of the Triton Server installation in the container. You may set it if you wish to use a different set of backends. |
model_version |
int | Optional | The version of the model to be loaded. If not specified, the module will use the newest version of the model named by model_name. Default: -1 (newest) |
preferred_input_memory_type |
string | Optional | One of cpu , cpu-pinned , or gpu . This controlls the type of memory that will be allocated by the module for input tensors. If not specified, this will default to cpu if no CUDA-capable devices are detected at runtime, or to gpu if CUDA-capable devices are found. |
preferred_input_memory_type_id |
int | Optional | CUDA identifier on which to allocate gpu or cpu-pinned input tensors. You probably don't need to change this unless you have multiple GPUs Default: 0 (first device) |
tensor_name_remappings |
obj | Optional | Provides two dictionaries under the inputs and outputs keys that rename the models' tensors. Other Viam services, like the vision service may expect to work with tensors with particular names. Use this map to rename the tensors from the loaded model to what the vision service expects as needed to meet those requirements.Default: {} |
An example minimal configuration would look like this, within your robot’s "services" array:
{
"type": "mlmodel",
"attributes": {
"model_name": "efficientdet-lite4-detection",
"model_repository_path": "/path/to/.viam/triton/repository"
},
"model": "viam:mlmodelservice:triton",
"name": "mlmodel-effdet-triton"
}
An example detailed configuration with optional parameters specified would look like this:
{
"type": "mlmodel",
"attributes": {
"backend_directory": "/opt/tritonserver/backends",
"model_name": "efficientdet-lite4-detection",
"model_version": 1,
"model_repository_path": "/path/to/.viam/triton/repository",
"preferred_input_memory_type_id": 0,
"preferred_input_memory_type": "gpu",
"tensor_name_remappings": {
"outputs": {
"output_3": "n_detections",
"output_0": "location",
"output_1": "score",
"output_2": "category"
},
"inputs": {
"images": "image"
}
}
},
"model": "viam:mlmodelservice:triton",
"name": "mlmodel-effdet-triton"
}
-
Use the
jtop
utility on the Jetson line to monitor GPU usage to validate that Triton is accelerating inference through the GPU. -
Use the
viam:mlmodelservice:triton
modular service to perform inference with the machine learning models available in the Triton service's model repository on your robot. -
Create a vision service with a configuration in your
"services"
array like the following:{ "attributes": { "mlmodel_name": "mlmodel-effdet-triton" }, "model": "mlmodel", "name": "vision-effdet-triton", "type": "vision" }
You can now connect this vision service to a transform camera, or get detections programmatically through one of Viam's client SDKs.