How to retrain a CNN/LSTM using new recorded data?
Show older comments
I have trainined a hybrid CNN/LSTM network to classification sequential data, in offline experiements it works very well.
In a live scenario it does not perform as well so i wanted to take the sequential sequences recorded during the live experiments and then combine this with the original dataset and retrain the model with the combined dataset.
Once I combined the old dataset with the new data i tried
newNet = trainNetwork(oldNet,XTrain,YTrain); & newNet = trainNetwork(oldNet,XTrain,YTrain,layers,options);
This gives me an error of too many input arguments
Is this possible?
Regards
Accepted Answer
More Answers (1)
CHRISTOPHER MILLAR
on 18 Oct 2021
0 votes
Categories
Find more on Lengths and Angles 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!