lisajamhoury / body_classifier_posenet

8 stars 2 forks source link

Live training question #3

Open shiffman opened 6 years ago

shiffman commented 6 years ago

Train from live data. I believe I just need to call model.fit() each time a user adds data to live train it. Is this correct?

The nice thing about using KNN is that the "model" is just the training data itself, there is no additional training step. With the neural network classifier, however, you have to explicitly run fit() after collecting the training data. Ideally you would collect all the data from the user before running fit() you might run into some weird issues running it over and over again for each new data point. But I'd be curious to hear about what happens a variety of different ways!

lisajamhoury commented 6 years ago

Aha. Great. Thank you. Will test and lyk how it goes.