Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 978 Bytes

README.md

File metadata and controls

62 lines (44 loc) · 978 Bytes

Object Detection (COCO-SSD) Demo

This demo allows you to try out object detection on a couple of preset images using different base models.

Setup

cd into the demo/ folder:

cd coco-ssd/demo

Install dependencies:

yarn

Launch a development server, and watch files for changes. This command will also automatically open the demo app in your browser.

yarn watch

If you are developing the model locally and want to test the changes in the demo

cd into the coco-ssd/ folder:

cd coco-ssd

Install dependencies:

yarn

Publish coco-ssd locally:

yarn publish-local

cd into this directory (coco-ssd/demo) and install dependencies:

cd demo
yarn

Link the package published from the publish step above:

yarn link-local

Start the dev demo server:

yarn watch

To get future updates from the coco-ssd source code, just run yarn publish-local in the coco-ssd/ folder again.