Difference between revisions of "Xavier/Deep Learning/TensorRT/Parsing Caffe"

From RidgeRun Developer Connection
Jump to: navigation, search
m
m
Line 7: Line 7:
 
-->
 
-->
  
=Parsing Caffe model for TensorRT=
+
==Parsing Caffe model for TensorRT==
  
 
The process for caffe models are fairly similar to Tensorflow models. The key difference is that you don't need to generate a uff model file. Caffe model file (.caffemodel) can be imported directly from tensorrt.
 
The process for caffe models are fairly similar to Tensorflow models. The key difference is that you don't need to generate a uff model file. Caffe model file (.caffemodel) can be imported directly from tensorrt.

Revision as of 02:12, 23 April 2020



Previous: Deep Learning‎/TensorRT/Parsing Tensorflow Index Next: Deep Learning/TensorRT/Building Examples



Nvidia-preferred-partner-badge-rgb-for-screen.png



Parsing Caffe model for TensorRT

The process for caffe models are fairly similar to Tensorflow models. The key difference is that you don't need to generate a uff model file. Caffe model file (.caffemodel) can be imported directly from tensorrt.

Loading a caffe model is an actual example provided by NVIDIA with TensorRT naned sample_mnist. For more details on this example please refer to the C++ API section.



Previous: Deep Learning‎/TensorRT/Parsing Tensorflow Index Next: Deep Learning/TensorRT/Building Examples