hipsternet icon indicating copy to clipboard operation
hipsternet copied to clipboard

Pool layer problem

Open ZFTurbo opened this issue 8 years ago • 0 comments

I think you have error in _pool_backward function at this place:

dX = dpool_fun(dX_col, dout_col, pool_cache)

You set dX which is not used later.

UPD: IT actually not critical since dX_col is changed internally. So this line can be changed on:

dpool_fun(dX_col, dout_col, pool_cache)

or

dX_col= dpool_fun(dX_col, dout_col, pool_cache)

ZFTurbo avatar Oct 23 '17 09:10 ZFTurbo