What is the derivative of multiplyLayer in convolutional networks?

조회 수: 4 (최근 30일)
Xiuyi Zhao
Xiuyi Zhao 2019년 3월 18일
I am defining a class "multiplyLayer" which can multiply (element-wise) a list of inputs. The forward function of this layer is
function Z = predict( this, X )
Z = X{1};
for i = 2:this.NumInputs
Z = Z.*X{i};
end
end
X is a matrix of inputs, and NumInputs is the number of inputs. My question is what is the derivative (or backward function) of this layer?

답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by