What is the derivative of multiplyLayer in convolutional networks?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!