Skip to content
This repository has been archived by the owner on Oct 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #44 from dmlc/dimension-fix
Browse files Browse the repository at this point in the history
[dimension-fix] dimension order (refer #43)
  • Loading branch information
sneakerkg committed Aug 4, 2015
2 parents f01426f + 151962a commit 7d21ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minerva/narray/convolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ ImageBatch Convolution::PoolingForward(ImageBatch src, PoolingInfo info) {
--pooled_width;
}
Scale new_size {
pooled_height,
pooled_width,
pooled_height,
src.GetNumFeatureMaps(),
src.GetNumImages()
};
Expand Down

0 comments on commit 7d21ed2

Please sign in to comment.