October 2018
Intermediate to advanced
246 pages
6h 26m
English
Integrating Core ML on an iOS app is pretty straightforward. Go and download pre-trained models from the Apple developer page. Download MobileNet model from there.
After you download MobileNet.mlmodel, add it to the Resources group in your project. The vision framework eases our problems by converting our existing image formats into acceptable input types. You can see the details of your model as shown in the following screenshot. In the upcoming chapters, we will start creating our own models on top of existing models.
Let's look at how to load the model into our application:

Open ViewController.swift in your recently ...
Read now
Unlock full access