Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1013 Bytes

README.md

File metadata and controls

62 lines (43 loc) · 1013 Bytes

KNN Image Classifier Demo

Contents

Demo: Camera

The camera demo shows how to create a custom classifier with 3 classes that can be trained in realtime using a webcamera. Hold down the train button to add samples to the classifier, and then let it predict which of the 3 classes that is closest.

Setup

cd into the demos folder:

cd knn-classifier/demos

Install dependencies and prepare the build directory:

yarn

To watch files for changes, and launch a dev server:

yarn watch

If you are developing the classifier locally, and want to test the changes in the demos

cd into the knn-classifier/ folder:

cd knn-classifier

Install dependencies:

yarn

Publish knn-classifier locally:

yarn publish-local

cd into this directory, knn-classifier/demos and install dependencies:

cd demos
yarn

Link the package published from the publish step above:

yarn link-local

Start the dev demo server:

yarn watch