Neural Network initialization?

조회 수: 14 (최근 30일)
Ameni JOUILA
Ameni JOUILA 2018년 2월 3일
답변: Greg Heath 2018년 2월 4일
Hi, for the ones familiar with Neural Network , does this code initialize weights and biaises, or should I initialize them ? thank you ! n=5; net=feedforwardnet(n); net=configure(net,inputs,targets);

답변 (1개)

Greg Heath
Greg Heath 2018년 2월 4일
MATLAB will automatically initialize unweighted nets before training.
MATLAB will continue to train a preweighted net
Therefore, if you are training a net multiple times in a for loop, you should use INIT or CONFIGURE at the top of the loop to initialize a new design.
I have posted zillions of examples of double for loop designs in both the NEWSGROUP (comp.soft-sys.matlab) and ANSWERS. Search
greg for i=1:Ntrials
Hope this helps
Thank you for formally accepting my answer
Greg

카테고리

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