- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello everyone
I run the following command for compiling a graph:
The .prototxt can be fonud here:
The .caffemodel can be downloaded using this link:
output is the following:
Traceback (most recent call last):
File "/usr/local/bin/mvNCCompile", line 208, in
args.old_parser, args.cpp, args)
File "/usr/local/bin/mvNCCompile", line 186, in create_graph
load_ret = load_network(args, parser, myriad_config)
File "/usr/local/bin/ncsdk/Controllers/Scheduler.py", line 83, in load_network
input_data, expected_result = p.calculateReference(arguments)
File "/usr/local/bin/ncsdk/Controllers/Parsers/Caffe.py", line 209, in calculateReference
output = self.net.forward(start=first_layer, end=out_label)
File "/opt/movidius/caffe/python/caffe/pycaffe.py", line 105, in _Net_forward
end_ind = list(self._layer_names).index(end)
ValueError: 'net_output' is not in list
- When looking in the .prototxt file, the last described node looks like this:
so, a "net_output" exists.
Any idea on how to solve this issue is very much appreciated.
All the best,
Bastian
- Tags:
- Caffe
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @bastiank
Could you try to set the top parameter to the same name of the layer (See below)?
layer {
name: "concat_stage7"
type: "Concat"
bottom: "Mconv7_stage4_L2"
bottom: "Mconv7_stage4_L1"
top: "concat_stage7"
concat_param {
axis: 1
}
}
Regards,
Jesus
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page