Tensorflow.js tasks API
npm install @tensorflow-models/tasks_WORK IN PROGRESS_
TFJS Task API provides an unified experience for running task-specific models
on the Web. It is designed with ease-of-use in mind, aiming to improve usability
for JS developers without ML knowledge. It has the following features:
- Easy-to-discover models
Models from different runtime systems (e.g. [TFJS][tfjs], [TFLite][tflite],
[MediaPipe][mediapipe], etc) are grouped by popular ML tasks, such as
sentiment detection, image classification, pose detection, etc.
- Clean and powerful APIs
Different tasks come with different API interfaces that are the most intuitive
to use for that particular task. Models under the same task share the same
API, making it easy to explore. Inference can be done within just 3 lines of
code.
- Simple installation
You only need to import this package (<20K in size) to start using the API
without needing to worry about other dependencies, such as model packages,
runtimes, backends, etc. They will be dynamically loaded on demand without
duplication.
The following table summarizes all the supported tasks and their models:
| Task | Model | Supported runtimes · Docs · Resources |
|---|---|---|
Image Classification Identify images into predefined classes. Demo | Mobilenet | |
| Custom model | ||
Object Detection Localize and identify multiple objects in a single image. Demo | COCO-SSD | |
| Custom model | ||
Image Segmentation Predict associated class for each pixel of an image. Demo | Deeplab | |
| Custom model | ||
Sentiment Detection Detect pre-defined sentiments in a given paragraph of text. Demo | Toxicity | |
| Movie review | ||
NL Classification Identify texts into predefined classes. Demo | Custom model | |
Question & Answer Answer questions based on the content of a given passage. Demo | BertQA |
(The initial version only supports the web browser environment. NodeJS support is
coming soon)
This package is all you need. The packages required by different models will be
loaded on demand automatically.
``js`
// Import @tensorflow-models/tasks.
import * as tfTask from '@tensorflow-models/tasks';
`html`
The code snippet below shows how to load various models for the
Image Classification task:
`js
import * as tfTask from '@tensorflow-models/tasks';
// Load the TFJS mobilenet model.
const model1 = await tfTask.ImageClassification.MobileNet.TFJS.load({
backend: 'wasm'});
// Load the TFLite mobilenet model.
const model2 = await tfTask.ImageClassification.MobileNet.TFLite.load();
// Load a custom image classification TFLite model.
const model3 = await tfTask.ImageClassification.CustomModel.TFLite.load({
model: 'url/to/your/bird_classifier.tflite'});
`
Since all these models are for the Image Classification task, they will haveImageClassifier
the same task model type: [][image classifier interface] inpredict
this case. Each task model's inference method has an unique andImageClassifier
easy-to-use API interface. For example, in , the method takes an
image-like element and returns the predicted classes:
`js`
const result = model1.predict(document.querySelector(img)!);
console.log(result.classes);
TFLite is supported by the [@tensorflow/tfjs-tflite][tfjs-tflite] package thatImageClassifier
is built on top of the [TFLite Task Library][tflite task library] and
WebAssembly. As a result, all TFLite custom models should comply with the
metadata requirements of the corresonding task in the TFLite task library.
Check out the "model compatibility requirements" section of the official task
library page. For example, the requirements of can be found
[here][req].
See an example of how to use TFLite custom model in the Load model and run
inference section above.
For TFJS models, the choice of backend affects the performance the most.
For most cases, the WebGL backend (default) is usually the fastest.
For TFLite models, we use WebAssembly under the hood. It uses [XNNPACK][xnnpack]
to accelerate model inference. To achieve the best performance, use a browser
that supports "WebAssembly SIMD" and "WebAssembly threads". In Chrome, these can
be enabled in chrome://flags/. The task API will automatically choose the best
WASM module to load and set the number of threads for best performance based on
the current browser environment.
As of March 2021, XNNPACK works best for non-quantized TFLite models. Quantized
models can still be used, but XNNPACK only supports ADD, CONV_2D,
DEPTHWISE_CONV_2D, and FULLY_CONNECTED ops for models with quantization-aware
training using [TF MOT][mot].
`sh`
$ yarn
$ yarn build
`sh`
$ yarn test
sh
$ yarn build-npm
(TODO): publish
``[tfjs]: https://github.com/tensorflow/tfjs
[tflite]: https://www.tensorflow.org/lite
[mediapipe]: https://github.com/google/mediapipe
[req]: https://www.tensorflow.org/lite/inference_with_metadata/task_library/image_classifier#model_compatibility_requirements
[tfjs-tflite]: https://github.com/tensorflow/tfjs/tree/master/tfjs-tflite
[tflite task library]: https://www.tensorflow.org/lite/inference_with_metadata/task_library/overview
[xnnpack]: https://github.com/google/XNNPACK
[mot]: https://www.tensorflow.org/model_optimization/api_docs/python/tfmot
[image classifier interface]: https://github.com/tensorflow/tfjs-models/blob/master/tasks/src/tasks/image_classification/common.ts