Hi, could you show you net.proto file?
As I understand, you want to run ImageNet network, which input is 256x256 at 32x32 images.
It is impossible to do it in such way.
To do this, you have to:
- change input size (you do this)
- remove all fully connected layers and replace them by yours layers (see fine-tune example, which will show you exactly how to do that)
- learn this new layers using 32x32 images
- use them to classify images
or learn all net from begginig.
Why you try does not work? Because of dimension issue. Fully connected layer always need same features vector at input. As you downsize image to 32x32, features vector has lower dimension. So you need replace FC layer that they match your image dimensions==features vector at conv5.