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
Based on previous code refactoring #2282, the file ExpandConvTransLayer has been removed. By further refactoring the convolution layer of im2col + gemm, we can remove the ExpandConvBaseLayer file.
The addSharedBias and bpropSharedBias implementation in the ExpandConvBaseLayer is less performance, we can use Matrix::addSharedBias and Matrix::collectSharedBias to replace.
After removing the four functions related to the bias operation, ExpandConvBaseLayer has only one init function, so we can further refactor to remove this class.
The text was updated successfully, but these errors were encountered:
Based on previous code refactoring #2282, the file
ExpandConvTransLayer
has been removed. By further refactoring the convolution layer ofim2col + gemm
, we can remove theExpandConvBaseLayer
file.addSharedBias
andbpropSharedBias
implementation in theExpandConvBaseLayer
is less performance, we can useMatrix::addSharedBias
andMatrix::collectSharedBias
to replace.bias operation
,ExpandConvBaseLayer
has only one init function, so we can further refactor to remove this class.The text was updated successfully, but these errors were encountered: