Skip to content

Files

Latest commit

50d35b8 · Jul 6, 2020

History

History
This branch is 3 commits ahead of, 538 commits behind tensorflow/tfjs-models:master.

demo

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 28, 2019
Oct 11, 2018
Nov 15, 2018
Sep 11, 2018
Sep 11, 2018
Jul 3, 2020
Jul 3, 2020
Jul 6, 2020
Nov 15, 2018
Jul 3, 2020

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.