I am working on neural networks and having matlab 2021a and 2023a, but i face invalid solver name option while using optimization techniques.

조회 수: 3 (최근 30일)
I am working on neural networks and having matlab 2021a and 2023a versions, but i face invalid solver name option while using optimization techniques like adadelta, adagrad, trainbr,trainlm,traingdx, trainscg, trainbfg with LSTM. how i solve this problem?
options = trainingOptions('trainbr', ...
'MaxEpochs', 10, ...
'MiniBatchSize', 10, ...
'GradientThreshold', 1, ...
'Verbose', 1, ...
'Plots', 'training-progress');
it gives invalid solver name.

채택된 답변

Ayush
Ayush 2024년 1월 1일
편집: Ayush 2024년 1월 1일
I understand that you are getting invalid solver name option while using optimization techniques like adadelta, adagrad, trainbr, trainlm, traingdx, trainscg, trainbfg. Till R2023b release solver name supported for training Deep learning Neural Networks are:
  1. sdgm
  2. rmsprop
  3. adam
  4. lbfgs
Training function supported for shallow neural networks are given here: https://www.mathworks.com/help/deeplearning/ref/fitnet.html#bu2w2vc-1-trainFcn
Also, you may refer to file exchange for other optimization techniques from here: https://www.mathworks.com/matlabcentral/fileexchange/71069-gradient-descent-optimization
Thanks,
Ayush
  댓글 수: 2
Muhammad Shoaib
Muhammad Shoaib 2024년 1월 1일
@Ayush thanks
but can you tell me how to add these given function in matlab library or how to file exchange for the given optimization techniques?.
Also, you may refer to file exchange for other optimization technniques from here: https://www.mathworks.com/matlabcentral/fileexchange/71069-gradient-descent-optimization
Ayush
Ayush 2024년 1월 1일
편집: Ayush 2024년 1월 1일
Hi @Muhammad Shoaib MATLAB built-in function trainingOptions will only expect the type of inputs specified in the documentation. However, if you want to define the custom network you may refer to the link: https://www.mathworks.com/help/deeplearning/ug/train-network-using-custom-training-loop.html

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by