I want to train a network and save the weights. Then use a new data set and resume training with the weights from the previous data set.
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ronald ogren
il 16 Mar 2018
Commentato: Moh. Saadat
il 29 Ago 2022
It seems train always randomizes the weights when called. I can't seem to maintain the weights from the first training set.
0 Commenti
Risposta accettata
Sonam Gupta
il 28 Mar 2018
You can continue the training from weights obtained by previous data set by extracting the layers from the network's "Layers" property, and then passing it to "trainNetwork", as follows:
if true
% Train a network
net = trainNetwork(XTrain, YTrain, layers, options);
% Extract layers from the trained network
newLayers = net.Layers;
% Retrain the network, but start from where we left off
newNet = trainNetwork(XTrain, YTrain, newLayers, options);
'trainNetwork' will always use the weights that are stored in the layers which you pass in for training.
3 Commenti
Moh. Saadat
il 29 Ago 2022
There is a small caveat to this: check that whether your output 'net' is a LayerGraph or a DAGNetwork. If it is not a LayerGraph, use layerGraph(net) instead of net.Layers.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Deep Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!