4

I was exploring turicreate ObjectDetector API. The documentation mentions it is a trained model. I wanted to know if I can use this trained model & detect the 1000 labels which was used to originally train this turi model. All the examples mention to train with our dataset, I do not want to train but wanted to use pre-trained model which can classify. Any help is appreciated.

Kalava
  • 231
  • 2
  • 4
  • 18

1 Answers1

1

Is your question about how to load and use a pre-trained model? Turi create API docs mentions a load_model method:

model.save('my_model_file')
loaded_model = tc.load_model('my_model_file')

EDIT: Yep, ObjectDetector exposes a save method that works well with load_model.

Tomasz Bartkowiak
  • 12,154
  • 4
  • 57
  • 62
  • 1
    What I am asking is how to get the pre trained turi models . Apple only releases pre trained CoreMl model , I wanted to know how can we get the pre trained turi models: https://developer.apple.com/machine-learning/models/ – Kalava Aug 29 '19 at 16:33