How to create an updatable CoreML model?

903 Views Asked by At

I have created an Image Classifier model using CreateML. Now I am trying to update that model using CoreML but I am unable to do so. I am getting this error "Pipeline is not marked as updatable to perform update."

1

There are 1 best solutions below

2
On

You need to mark the model inside the pipeline as being updatable, and also the pipeline itself. Plus, the model will need some settings, such as the type of optimizer to use etc.

More details here: https://machinethink.net/blog/coreml-training-part4/