Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.
6392 Discussions

Can I output the value of Movidius' middle layers?

idata
Employee
499 Views

How can I output the value of Movidius' middle layers? Thanks.

0 Kudos
1 Reply
idata
Employee
289 Views

@miily If you are talking about seeing the intermediate results from your model, you can use this using the -on option for mvNCCheck.

 

Let’s assume your network architecture is as follows:

 

Input - Data

 

conv1 - Convolution Layer

 

pooling1 - Pooling Layer

 

conv2 - Convolution Layer

 

pooling2 - Pooling Layer

 

Softmax - Softmax

 

You can use the following command: mvNCCheck user_network -w user_weights -in input -on conv1 to check the output from the conv1 layer.

 

For more information on mvNCCheck, please refer to this blog.

0 Kudos
Reply