How can I use an algorithm for traning a NARX network and optimize another model in the same time ?

3 views (last 30 days)
Knowing that the training algorithm is an optimisation method, I want to optimize the parameters of NARX network and another model (hybridization), with one algorithm in the same time. is that possible ? if yes, can I use the algorithm generated with "neural network time series tool" ?

Accepted Answer

Greg Heath
Greg Heath on 20 Jun 2014
Just because I've never heard of it in my 3-decade experience with NNs doesn't mean it can't be done.
For regression and classification the easiest case would be if there were the same number of examples. Then inputs and targets could be vertically concatenated ( e.g., [input1 ; input2 ].
However in most cases, separate training would be faster if not more accurate.
It can also be done for timeseries. However, the delays have to be the same.
I see no advantage and do not recommend it.
Hope this helps.
Greg

More Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!