apple / turicreate

Turi Create simplifies the development of custom machine learning models.
BSD 3-Clause "New" or "Revised" License
11.2k stars 1.14k forks source link

Retrain an Image Classifier with updated data #1100

Open dhgokul opened 6 years ago

dhgokul commented 6 years ago

@srikris I have trained 1000 image data-set and created coreML model. Again i added 200 images to previous data-set Any possible ways to train previous coreML model with new data-set instead of train 1200 images from scratch ?

TobyRoseman commented 6 years ago

@dhgokul - there is currently no way of doing this. I'll leave this open for now as a feature request.

Are you adding any new classes with these new images? Or are all images for classes that were already present in the data when the model was trained the first time?

dhgokul commented 6 years ago

@TobyRoseman Thanks for your response . I have add new images with same classes and also add images with different classes. Is there any possible ways to retain existing model with new dataset for object detection ?

TobyRoseman commented 6 years ago

Sorry, no. This is not something we currently support for any of our models.

srikris commented 6 years ago

@dhgokul The most reliable way to do this is to train models with all the data as you collect more data. It gives you reliable, reproducible, and debuggable. You will also have more control over what data to use and in what capacity.

dhgokul commented 6 years ago

@srikris Thanks ! Is there is checkpoint option for object detection ? When I check turicreate API, it's available for regression create function .

dhgokul commented 5 years ago

@srikris Any updates on this request?