How can I extract the values of weights and biases after each training epoch?

조회 수: 21 (최근 30일)
Mehran Aminian
Mehran Aminian 2015년 7월 19일
댓글: Andrea Daou 2020년 8월 18일
I need to extract the values of weights and biases after each training epoch. I can easily extract these values after the training is finished, but not during the training.
  댓글 수: 1
Image Analyst
Image Analyst 2015년 7월 19일
Depends on where the data is, like in a file, or coming in from an instrument on a serial line, or wherever. Where is it and in what form or format is it in?

댓글을 달려면 로그인하십시오.

답변 (3개)

Nick Hobbs
Nick Hobbs 2015년 7월 21일
I am going to assume you are referring to the Neural Network Toolbox due to your reference to weights, biases, and epochs. One way to see the weights after every epoch is to set the network to only train one epoch at a time, and then to use the 'getwb' command. The following code is an example on how to do this with a sample dataset and a feedforward network.
[x,t] = simplefit_dataset;
net = feedforwardnet(20);
net.trainParam.epochs = 1;
weights = []
for i = 1:10
net = train(net,x,t);
weights = [weights getwb(net)]
end
You can also save this matrix instead of printing it out. Do note, however, if you use this method your performance plot, and others, will only appear for the last epoch. So you may need to create your own function to monitor the validation and test data. You will also need to determine when to stop training using a function of your own design.
  댓글 수: 2
Greg Heath
Greg Heath 2015년 7월 23일
Another problem is that every time train is called, certain internal parameters (mu?) are reinitialized. Therefore, you will not get the same final set of weights as if you just used one call of train.
I recall saving the aforementioned parameters at the end of every epoch and using them to reinitialize train so that the training was equivalent to not stopping every epoch. Unfortunately I don't remember the name or date of the post.
Salman Habib
Salman Habib 2017년 4월 7일
Hi Greg, I am trying to train a neural network using for loop, 1 epoch at at time, and I want matlab to continue training with the weights and biases from the previous training. Is there any way to save the weights during the current iteration of the loop, and use them to initialize the neural network weights and biases in the next loop iteration ? That is, I want the number of epochs to be the same as the number of iterations of the for loop (say N), and call the training function N times.
Thank you in advance.

댓글을 달려면 로그인하십시오.


Mark Hudson Beale
Mark Hudson Beale 2015년 7월 24일
Greg is right, the function to get weights outside of a training function is getwb.
Within a training function it is slightly different. In recent versions of the Neural Network Toolbox, each training function has a trainingIteration helper function. (I.e. edit trainlm for an example.) And within a training function the most reliable way to get weights is calcLib.getwb(calcNet). (Also, see trainlm code for example of this being used.)
So you might insert the following code snippet at the end of trainingIteration in trainlm to get and save a record of the weights in a workspace variable "weightRecord".
try
wr = evalin('base','weightRecord');
catch
wr = {};
end
wr{end+1} = calcLib.getwb(calcNet);
assignin('base','weightRecord',wr);
If you then train with TRAINLM you can get the weight record in the base workspace:
>> [x,t] = house_dataset;
>> net = feedforwardnet(10,'trainlm'); % Has 151 weights and biases
>> net = train(net,x,t);
>> weightRecord
weightRecord =
Columns 1 through 4
[151x1 double] [151x1 double] [151x1 double] ...
  댓글 수: 1
Zheng Chai
Zheng Chai 2017년 12월 18일
Hi Mark, I have the same question: how to record the weights within training. I saw calcLib.getwb but could not find the trainingIteration in trainlm. I am using Matlab R2103b. Could you please help me with where to past your code? Many thanks.

댓글을 달려면 로그인하십시오.


Salma Hassan
Salma Hassan 2018년 1월 23일
편집: Salma Hassan 2018년 1월 23일
this option 'CheckpointPath' in trainoptions function save the parameters value after each epoch
  댓글 수: 1
Andrea Daou
Andrea Daou 2020년 8월 18일
Hello,
After using 'CheckpointPath', many .mat files will be saved. How can I visualize the parameters ?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Parallel and Cloud에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by