0.1.2 • Published 2 years ago

mnist-react-tfjs v0.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

mnist-react-tfjs

Number recognition with MNIST data (React.js and TensorFlow.js)

npm version

Predict numbers using MNIST database with TensorFlow.js and React.js!

author: Aral Roca aral-rg@hotmail.com

DEMO

demo

Requirements

  • react - Recommended ^16.8.6
  • react-dom - Recommended 16.8.6
  • @tensorflow/tfjs - Recommended ^1.1.0"

Getting started

npm install --save mnist-react-tfjs

Then:

import NumberRecognition from 'mnist-react-tfjs';

Code

With RenderProps:

<NumberRecognition
    width={400}
    height={400}
>
{
    (predictedNumber, predictions) => (
        <h1>{predictedNumber}</h1>
    )
}
</NumberRecognition>

Without RenderProps:

<NumberRecognition
    width={400}
    height={400}
    onPredict={
        (number, predictions) => 
        console.log(number, predictions)
    }
    onClear={() => console.log('onClear')}
/>
0.1.2

2 years ago

0.1.1

5 years ago

0.1.0

5 years ago