-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is AutoCrop layer only used in training or also in inference ? can i remove Autocrop layer in prototxt file while doing Inference? #24
Comments
@athiselvam AutoCrop layer is used in both the training and the inference. You can not remove the Autocrop layer directly, because it is used to align the upsampling maps obtained by Deconvolution layer. But you can replace it with the standard Crop layer in Caffe by setting the offset to 1, 2, 4, and 0 for conv2, conv3, conv4, and conv5, respectively. |
Thank You so much for your reply. Can you please send me the above change Prototxt file. Since I'm new to caffe, help me do so. |
|
@yun-liu Thanks a lot, man. It's working perfectly. |
@yun-liu 224*224的图像的crop这样配置 还是任意图像的都这样配置? |
@piaobuliao 任意的 |
Is AutoCrop layer only used in training or also in inference ? can i remove Autocrop layer in prototxt file while doing Inference?
The text was updated successfully, but these errors were encountered: