フィルターのクリア

How to re-train a neural network

3 ビュー (過去 30 日間)
Israel Yaish
Israel Yaish 2021 年 4 月 29 日
回答済み: Aditya Patil 2021 年 5 月 10 日
How to re-train (continue training) a neural network using the following implementaion:
net = trainNetwork(XTrain,YTrain,layers,options);

回答 (1 件)

Aditya Patil
Aditya Patil 2021 年 5 月 10 日
Check the documentation on how to resume training from checkpoint.
In short, save the model to a mat file using the CheckpointPath option, and load the mat file later. Then you can resume the training my passing the layers of the checkpoint during training, as follows
trainNetwork(XTrain,YTrain,net.Layers,options)
Note that if you reuse the same options, you might see that the training diverges, as the training might have reduced the learning rate. Hence, use appropriate options as required.

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by