Abdul Rehman
Abdul Rehman

Reputation: 199

How to create an updatable CoreML model?

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."

Upvotes: 1

Views: 1127

Answers (1)

Matthijs Hollemans
Matthijs Hollemans

Reputation: 7902

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/

Upvotes: 1

Related Questions