How to retrain a CNN/LSTM using new recorded data?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
CHRISTOPHER MILLAR
am 7 Okt. 2021
Beantwortet: CHRISTOPHER MILLAR
am 18 Okt. 2021
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
0 Kommentare
Akzeptierte Antwort
Mahesh Taparia
am 15 Okt. 2021
Hello,
You can refer this documentation of training from pretrained weights. You can save the trained network from the old data and load it while adding the new data.
Hope it will help!
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Image Data Workflows finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!