How to set validation for LSTM Model

24 ビュー (過去 30 日間)
MBUNYA NERVILLE ANYANG
MBUNYA NERVILLE ANYANG 2023 年 6 月 6 日
Hello
I have LSTM network with database created. I have configure the network to use 70% of data for trainig and 30% for testing. Please how do I setup validation in the training option? I am stuck at this point...
for i= 1:rt-7012 %% this gets 70% of database content
GHITrain{i,1}= Database{i,1};
end
restTrain= resultDatabase(1:rt-7012);
options= trainingOptions('adam',...
ExecutionEnvironment = 'auto',...
MaxEpochs = Epoch,...
MiniBatchSize = miniBatchSize,...
InitialLearnRate= 1e-4,...
Plots = 'training-progress');

回答 (1 件)

KSSV
KSSV 2023 年 6 月 6 日
options= trainingOptions('adam',...
ExecutionEnvironment = 'auto',...
MaxEpochs = Epoch,...
MiniBatchSize = miniBatchSize,...
InitialLearnRate= 1e-4,...
'ValidationData',{inputVal, targetVal}, ... %<----- specify here
Plots = 'training-progress');
  3 件のコメント
KSSV
KSSV 2023 年 6 月 6 日
The provided ValidationData is not consistent with the training data.
MBUNYA NERVILLE ANYANG
MBUNYA NERVILLE ANYANG 2023 年 6 月 17 日
Hello KSSV
I get this error when I set inputVal and targetVal. Please How do I fix this

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by