A support library for use with mobilenet-based models generated by Teachable Machine (https://g.co/teachablemachine)
npm install @teachablemachine/imageLibrary for using image models created with Teachable Machine.
There is one link related to your model that will be provided by Teachable Machine
https://teachablemachine.withgoogle.com/models/MODEL_ID/
Which you can use to access:
* The model topology: https://teachablemachine.withgoogle.com/models/MODEL_ID/model.json
* The model metadata: https://teachablemachine.withgoogle.com/models/MODEL_ID/metadata.json
There are two ways to easily use the model provided by Teachable Machine in your Javascript project: by using this library via script tags or by installing this library from NPM (and using a build tool ike Parcel, WebPack, or Rollup)
``js`
``
npm i @tensorflow/tfjs
npm i @teachablemachine/image
`js
import * as tf from '@tensorflow/tfjs';
import * as tmImage from '@teachablemachine/image';
`
`html`Teachable Machine Image Model
tmImage is the module name, which is automatically included when you use the