How to do incremental training using 2 batches of dataset, where the tool is anything except neural network
Show older comments
I am a novice in this field. I have two training datasets. 1st I want to train the machine with Dataset X (from fisherirish) which has 150 entries, After that I want to train the already trained model with a new dataset T2 , which has also 50 entries. Using FITCNB what i did was
X=meas
Y=specieserrorcopy
Mdl = fitcnb(X,Y)
label = predict(Mdl,X)
L = loss(Mdl,X,Y)
accERR=1-L
Please help me how to use this Mdl to train again using T2.
Accepted Answer
More Answers (1)
debasmita bhoumik
on 17 Jan 2018
0 votes
1 Comment
Greg Heath
on 21 Jan 2018
See my above comment.
I was thinking of NNs, however, if you think about it, it has to be valid in general.
Hope this helps.
Greg
Categories
Find more on Deep Learning for Image Processing 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!