You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to calculate the pooled conv5 features for images 480x320. But the prototxt file seems always have the same width and height. I'm not sure in prototxt file which is the width.
Is the following prototxt file right?
I use the model trained in ImageNet2012 so the image mean is 256x256, how to get a reasonable mean?
And one more question, if I use this prototxt I get 14x9x256 features, does the pooled conv5 features map preserves spatial layout of the images?
I want to calculate the pooled conv5 features for images 480x320. But the
prototxt file seems always have the same width and height. I'm not sure in
prototxt file which is the width.
Is the following prototxt file right?
And one more question, if I use this prototxt I get 14x9x256 features,
does the pooled conv5 features map preserves spatial layout of the images?
Thanks a lot.
The mex function caffe() in matlab returns a 14x9x256 features map, do I need to switch
dimensions W and H? How to do it?
I use the model trained in ImageNet2012 so the image mean is 256x256, how to get a reasonable mean?
For the mean the simplest approach is to reduce it to channels only i.e. average over height and width. That essentially works just as well and is simple.
Please ask usage questions on caffe-users. Issues are for development discussion. Thanks!
I want to calculate the pooled conv5 features for images 480x320. But the prototxt file seems always have the same width and height. I'm not sure in prototxt file which is the width.
Is the following prototxt file right?
I use the model trained in ImageNet2012 so the image mean is 256x256, how to get a reasonable mean?
And one more question, if I use this prototxt I get 14x9x256 features, does the pooled conv5 features map preserves spatial layout of the images?
input: "data"
input_dim: 1 //batch size
input_dim: 3 //channel
input_dim: 320 //height?
input_dim:480 //width?
layers{
...
The text was updated successfully, but these errors were encountered: