Extend pre-trained model without load old trainedData #720
-
For checked example at https://scrimba.com/learn/neuralnetworks/neural-networks-example-simple-reinforcement-learning-cpkKyHd and it can be acceptable idea for small datasets to call them again and push new rows to trainingArray but if you have very bir pre-trained model with huge dataset (and goes to bigger with new rows), it is not usable with them. There must be a solution to add new data and train with it without call old trained datasets. Are there? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
It seems that brain js do not have evolve function. |
Beta Was this translation helpful? Give feedback.
-
Call |
Beta Was this translation helpful? Give feedback.
-
No it does not so long as it was either trained or hydrated from
`net.fromJSON()`>
…On Mon, Apr 25, 2022, 8:05 PM ahmaddie1378 ***@***.***> wrote:
ty for the amazing lib
so if we call train() on a trained network it removes all old trains and
retrains the network again?
—
Reply to this email directly, view it on GitHub
<#720 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFFZOZD34JWDWNRUV5VH53VG4XMBANCNFSM47KXI7QQ>
.
You are receiving this because you commented.Message ID: <BrainJS/brain.
***@***.***>
|
Beta Was this translation helpful? Give feedback.
Call
.train
on a network that has been previously trained, or that has been instantiated from jSON will allow it to train again. Note that it would be important to include both old training data and new, so long as it fits the criteria for previously trained data.