Error in helperModC​lassTraini​ngOptions (line 29) 'Checkpoin​tPath',che​ckpointPat​h,...

조회 수: 3 (최근 30일)
I want to train the model using following link
I want to save every epochs but when i run the following section
checkpointPath = pwd;
maxEpochs = 20;
miniBatchSize = 128;
options = helperModClassTrainingOptions(maxEpochs,miniBatchSize,...
numel(rxTrainLabels),rxValidFrames,rxValidLabels);
trainedNettime = trainNetwork(rxTrainFrames,rxTrainLabels,lgraph_1 ,options);
save trainedNettime
I got the error
Unrecognized function or variable 'checkpointPath'.
Error in helperModClassTrainingOptions (line 29)
'CheckpointPath',checkpointPath,...
my helperModClassTrainingOptions function is
function options = helperModClassTrainingOptions(maxEpochs,miniBatchSize,...
trainingSize,rxValidFrames,rxValidLabels)
%helperModClassTrainingOptions Modulation classification training options
% OPT = helperModClassTrainingOptions(MAXE,MINIBATCH,NTRAIN,Y,YLABEL)
% returns the training options, OPT, for the modulation classification
% CNN, where MAXE is the maximum number of epochs, MINIBATCH is the mini
% batch size, NTRAIN is the number of training frames, Y is the
% validation frames and YLABEL is the labels.
%
% This function configures the training options to use an SGDM solver.
% By default, the 'ExecutionEnvironment' property is set to 'auto', where
% the trainNetwork function uses a GPU if one is available or uses the
% CPU, if not. To use the GPU, you must have a Parallel Computing Toolbox
% license. Set the initial learning rate to 2e-2. Reduce the learning
% rate by a factor of 10 every 9 epochs. Set 'Plots' to
% 'training-progress' to plot the training progress.
%
% See also ModulationClassificationWithDeepLearningExample.
% Copyright 2019 The MathWorks, Inc.
validationFrequency = floor(trainingSize/miniBatchSize);
options = trainingOptions('sgdm', ...
'InitialLearnRate',1e-3, ...
'MaxEpochs',maxEpochs, ...
'MiniBatchSize',miniBatchSize, ...
'Shuffle','every-epoch', ...
'Plots','training-progress', ...
'CheckpointPath',checkpointPath,...
'ValidationData',{rxValidFrames,rxValidLabels}, ...
'ValidationFrequency',validationFrequency, ...
'Verbose',false, ...
'LearnRateSchedule', 'piecewise', ...
'LearnRateDropPeriod', 9, ...
'LearnRateDropFactor', 0.1);

채택된 답변

Joss Knight
Joss Knight 2022년 2월 16일
You need to pass the checkpointPath variable to your function.
  댓글 수: 5
john karli
john karli 2022년 2월 18일
why my validation get sudden rise in last epochs. I have attached the image.
Joss Knight
Joss Knight 2022년 2월 18일
The final validation is computed after a final epoch to compute the batch normalization statistics. Some networks are particularly sensitive to the difference between the mini-batch statistics and those of the whole dataset. Make sure your dataset is shuffled and your minibatch size is as large as possible. To avoid this (at a small additional performance cost), using moving averages (see BatchNormalizationStatistics training option).
I can't explain why it's not checkpointing the network every epoch.

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

추가 답변 (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