How do I access individual weight matrices in a custom training loop?
7 次查看(过去 30 天)
显示 更早的评论
Suppose I have a basic feedforward network of the type , minimising a loss function with respect to targets .
I would like to add a penalty term that regularises an intermediate signal, such as .
Could I define a custom loss function to do this? How can I access individual weight matrices in a custom training loop?
0 个评论
回答(1 个)
Abhijit Bhattacharjee
2022-5-19
I assume by custom training loops, you are referring to custom training loops in the Deep Learning Toolbox. If so, here is a good resource to start with: Define Model Loss Function for Custom Training Loop.
There are two different methods to access the weight arrays, depending on how you defined the neural network in the custom training loop. If you used a dlnetwork, then you can access the weights of any layer that has learnable parameters.
Example for dlnetwork:
% Create feedforward neural network
layers = [
featureInputLayer(1,"Name","featureinput")
fullyConnectedLayer(10,"Name","fc_1")
sigmoidLayer("Name","sigmoid_1")
fullyConnectedLayer(10,"Name","fc_2")
sigmoidLayer("Name","sigmoid_2")
fullyConnectedLayer(10,"Name","fc_3")
sigmoidLayer("Name","sigmoid_3")];
dlnet = dlnetwork(layers);
% Access weights of the first FC layer
dlnet.Layers(2).Weights
If you used a model function in the custom training loop instead, then you would need to define a parameters array that contains the weights and biases of the model upfront. You can access these parameters at any time using the names you already defined.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!