skafos / ImageClassifier

Example app that uses the Skafos platform for CoreML model integration and delivery.

Home Page:https://skafos.ai

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ImageClassification by Skafos

DEPRECATION WARNING

This code example was intended for use by the legacy Skafos platform and is no longer being maintained. On 05/29/2019, a new version of Skafos was released, streamlining model delivery to the edge.

Sign-up for an account, join our Slack community, and explore some example models to get started.


ImageClassification is an example app that uses the Skafos platform for CoreML model integration and delivery. It's a good starting point for diving in, or a good reference for integrating Skafos in to your own app. Skafos is a platform that streamlines CoreML model updates without needing to submit a new version to the app store everytime a new model is ready for use.

This ImageClassification example app specifically integrates and deploys an Image Classification machine learning model. Image Classification is a type of machine learning model that enables you to categorize images into groups, and identify new images as a member of one (or more) of these groups. The example model that is provided in this app will categorize any image as either a cat or a dog. For more details about how to use and customize this model please navigate to the Skafos Turi Image Classifier repo on github.


Getting Started

Before diving in to this example application, make sure you have setup an account at Skafos and run through the quickstart

Project Setup

  1. Clone or fork this repository.
  2. In the project directory, run pod install
  3. Open the project workspace (.xcworkspace)
  4. In your project's settings under General change the following:
    • Display Name
    • Bundle Identifier
    • Team
    • Any other settings specific to your app.

Skafos Framework Setup

  1. Make sure the following capabilites are enabled:
    • Background modes: Background fetch and Remote notifications
    • Push notifications
  2. Inside AppDelegate.swift make sure to use your Skafos publishable key in: Skafos.initialize

Now What?

Now take a moment to click on ImageClassification.mlmodel and under the Model Class section click the arrow next to ImageClassification and have a peek at the class that Xcode generates from the CoreML Model. Now, inside of MainViewController.swift (around line 95) take a look at the reloadModel function to see an example of how to load a model using the Skafos framework. While in MainViewController.swift also look (around line 86) for how to setup NSNotificationCenter to listen for Skafos notifications that the model has been updated.

License

Skafos swift framework uses the Apache2 license, located in the LICENSE file.

Questions? Need Help?

Signup for our Slack Channel

Find us on Reddit

Contact us by email dev@metismachine.com

About

Example app that uses the Skafos platform for CoreML model integration and delivery.

https://skafos.ai

License:Apache License 2.0


Languages

Language:Swift 98.5%Language:Ruby 1.5%