Inference yolov4-tiny and mnist model

Hi. i trained a yolov4-tiny with my custom data, and i run it succesfully with tensorrt on my jetson nano. so my question is : can i run also my mnist model with tensorrt alongside the yolov4-tiny? if the answer is yes do you have some good example to doing this?

Hi,

Yes.
You can just run the models with two different processes directly.

Thanks.

Thank you for your replay. how can i do it? can you just do a simple example for me? Thank you

Hi,

The simplest way is to create two apps for each model directly.
You can start from our MNIST sample below:

/usr/src/tensorrt/samples/sampleMNIST

Thanks.