Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can I update an already trained machine learning model with only the new examples, without training the model over the whole dataset again?is it possible? #51

Open
CaoThien96 opened this issue Mar 17, 2019 · 1 comment

Comments

@CaoThien96
Copy link

First :
I train with var xor = [
[[0, 0], 0],
[[0, 1], 1],];
Then i save model
When have new data
I load and restore model
And train it with new data
var xor2=[
[[1, 0], 1],
[[1, 1], 0] ]
When i test with
var test = [
[[0, 0], 0],
[[0, 1], 1],
[[1, 0], 1],
[[1, 1], 0]
];
when result:
0 XOR 0 => 1 false
0 XOR 1 => 0 false
1 XOR 0 => 1 true
1 XOR 1 => 0 true

@CaoThien96
Copy link
Author

Sorry for my bad English

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant