Closed koizora223 closed 8 years ago
Hi @koizora223,
What do you mean by "found [that] the output of fully connected layer fc6 [is] incorrect"? How did you find it out?
Cheers, Martin
Hi @martinkersner I have showed the output of 'pool5a' and ' fc6' layer using the code below in segmenter.py. feat = self.blobs['pool5a'].data[0, :21] vis_square(feat) feat = self.blobs['fc6'].data[0, :21] vis_square(feat) And I got the following results:The coarse plane output from pooling layer(row2,col1) is at the right position,but wrong after fc6 layer(row1,col 1). The final prediction result is at the wrong position as the second image. What cause this?
Thanks, Chen
@koizora223 I am sorry, but I don't know.
Hi @martinkersner It is resovled by just compiling without cuDNN enabled.Thanks all the same! And I have another question .Do you use cuDNN for training?
Cheers!
@koizora223 Great! I haven't used cuDNN for either training or testing.
Hi @martinkersner I run deeplab.py using the downloaded official caffemodel(train2_iter_8000.caffemodel). But I get wrong results.The object seems to locate in the wrong position. I have checked the output of each layer and found the output of fully connected layer fc6 incorrect. There are my results.Please give me some advices.Thanks!!
Chen