mnist-react-tfjs

0.1.2 • Public • Published

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')}
/>

Dependencies (0)

    Dev Dependencies (10)

    Package Sidebar

    Install

    npm i mnist-react-tfjs

    Weekly Downloads

    20

    Version

    0.1.2

    License

    MIT

    Unpacked Size

    25.2 MB

    Total Files

    31

    Last publish

    Collaborators

    • aralroca