Is there a difference between incremental training using ADAPT

Technical Source
2 min readJul 26, 2021

--

Is there a difference between incremental training using ADAPT and TRAIN in Neural Network Toolbox 6.0 (R2008a)?

I have found that ADAPT (using “trains” as trainFcn) can be used to perform incremental training. Furthermore the documentation (under “Training Styles — Batch Training”) states:

“.Incremental training can only be done with adapt; train can only perform batch training.”

The documentation also mentions that the TRAIN function with the trainFcn “trainc” also performs incremental training. From what I understood from the description it works identically to ADAPT with the advantage that it has additional stop-conditions (performance goal reached, max numer of epochs, max time).

I would like to know if TRAIN using “trainc” as trainFcn really performs incremental training although it was mentioned in the documentation that TRAIN can only perform batch training.

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

Adaption and training of networks have different purposes.

Training is the problem where there are a fixed set of known input and target vectors and the solution is a network that properly maps inputs to targets. The solution network does not continue learning once it has been trained.

Adaption is the problem where there is a sequence of input and target vectors which is unlimited. The solution is a network with initial conditions and an adaptive algorithm. The network is to continue learning as it is used because it is assumed that the nature of the input/target signals will change over time or that their nature will be different in unknown ways in different contexts where the network will be used.

Incremental learning can be used either for training or adaption. For training it is rarely the most efficient method. Batch learning is almost always more efficient as at each training step the whole dataset is used to determine changes. However, incremental training can be done (often less efficiently) by repeatedly updating the network to vectors in some order, over and over. Examples of incremental training are TRAINC (cycles over vectors) and TRAINR (presents vectors in random order).

Note that if TRAINC or TRAINR are called with data defining multiple time-series, they will update the network for one whole time-series at a time, cycling or randomly picking another time-series for each training step. So in this case incremental does not mean just one input/target vector is being applied.

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet