- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
How can I output the value of Movidius' middle layers? Thanks.
コピーされたリンク
1 返信
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
@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.
