Hi, I am trying to follow the example of fully convolutional neural network in this url :
https://gist.github.com/shelhamer/80667189b218ad570e82#file-readme-md
When I try to make train and val dataset, is it correct to use the data in pascal context VOC2010's dataset available on the web?
When I used the following script in the link and tried to run solve.py, following error came out :
F0421 17:43:57.358407 25566 softmax_loss_layer.cpp:42] Check failed: outer_num_ * inner_num_ == bottom[1]->count() (140500 vs. 421500) Number of labels must match number of predictions; e.g., if softmax axis == 1 and prediction shape is (N, C, H, W), label count (number of labels) must be N*H*W, with integer values in {0, 1, ..., C-1}.
*** Check failure stack trace: ***
Aborted (core dumped)
Can anyone answer where the dataset this example is using came from or from what I need to build upon?
Thanks