Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions mnist/README.md → mnist/docs/update-mnist-run-instructions
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,24 @@ sprited, and the code in `data.js` is responsible for converting it into
`Tensor`s. This will become much simpler in the near future.

[See this example live!](https://storage.googleapis.com/tfjs-examples/mnist/dist/index.html)

## Run locally

If you want to run this MNIST example on your computer:

1. Install dependencies:
```
npm install
```

2. Start the local development server:
```
npm run start
```

3. Open your browser and go to:
```
http://localhost:8080
```

This helps beginners quickly test the MNIST example on their own machine.