back to home

tensorflow / tfjs-examples

Examples built with TensorFlow.js

6,787 stars
2,353 forks
154 issues
JavaScriptSCSSCSS

AI Architecture Analysis

This repository is indexed by RepoMind. By analyzing tensorflow/tfjs-examples in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.

Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/tensorflow/tfjs-examples)
Preview:Analyzed by RepoMind

Repository Summary (README)

Preview

TensorFlow.js Examples

This repository contains a set of examples implemented in TensorFlow.js.

Each example directory is standalone so the directory can be copied to another project.

Overview of Examples

Example nameDemo linkInput data typeTask typeModel typeTrainingInferenceAPI typeSave-load operations
abalone-nodeNumericLoading data from local file and training in Node.jsMultilayer perceptronNode.jsNode.jsLayersSaving to filesystem and loading in Node.js
addition-rnn🔗TextSequence-to-sequenceRNN: SimpleRNN, GRU and LSTMBrowserBrowserLayers
addition-rnn-webworkerTextSequence-to-sequenceRNN: SimpleRNN, GRU and LSTMBrowser: Web WorkerBrowser: Web WorkerLayers
angular-predictive-prefetchingNumericMulticlass predictorDNNBrowser: Service WorkerLayers
baseball-nodeNumericMulticlass classificationMultilayer perceptronNode.jsNode.jsLayers
boston-housing🔗NumericRegressionMultilayer perceptronBrowserBrowserLayers
cart-pole🔗Reinforcement learningPolicy gradientBrowserBrowserLayersIndexedDB
chrome-extensionImage(Deploying TF.js in Chrome extension)ConvnetBrowser
custom-layer🔗(Defining a custom Layer subtype)BrowserLayers
data-csv🔗Building a tf.data.Dataset from a remote CSV
data-generator🔗Building a tf.data.Dataset using a generatorRegressionBrowserBrowserLayers
date-conversion-attention🔗TextText-to-text conversionAttention mechanism, RNNNode.jsBrowser and Node.jsLayersSaving to filesystem and loading in browser
electronImage(Deploying TF.js in Electron-based desktop apps)ConvnetNode.js
fashion-mnist-vaeImageGenerativeVariational autoencoder (VAE)Node.jsBrowserLayersExport trained model from tfjs-node and load it in browser
interactive-visualizersImageMulticlass classification, object detection, segmentationBrowser
iris🔗NumericMulticlass classificationMultilayer perceptronBrowserBrowserLayers
iris-fitDataset🔗NumericMulticlass classificationMultilayer perceptronBrowserBrowserLayers
jena-weather🔗SequenceSequence-to-predictionMLP and RNNsBrowser and NodeBrowserLayers
lstm-text-generation🔗TextSequence predictionRNN: LSTMBrowserBrowserLayersIndexedDB
mnist🔗ImageMulticlass classificationConvolutional neural networkBrowserBrowserLayers
mnist-acgan🔗ImageGenerative Adversarial Network (GAN)Convolutional neural network; GANNode.jsBrowserLayersSaving to filesystem from Node.js and loading it in the browser
mnist-core🔗ImageMulticlass classificationConvolutional neural networkBrowserBrowserCore (Ops)
mnist-nodeImageMulticlass classificationConvolutional neural networkNode.jsNode.jsLayersSaving to filesystem
mnist-transfer-cnn🔗ImageMulticlass classification (transfer learning)Convolutional neural networkBrowserBrowserLayersLoading pretrained model
mobilenet🔗ImageMulticlass classificationConvolutional neural networkBrowserLayersLoading pretrained model
polynomial-regression🔗NumericRegressionShallow neural networkBrowserBrowserLayers
polynomial-regression-core🔗NumericRegressionShallow neural networkBrowserBrowserCore (Ops)
quantizationVariousDemonstrates the effect of post-training weight quantizationVariousNode.jsNode.jsLayers
sentiment🔗TextSequence-to-binary-predictionLSTM, 1D convnetNode.js or PythonBrowserLayersLoad model from Keras and tfjs-node
simple-object-detection🔗ImageObject detectionConvolutional neural network (transfer learning)Node.jsBrowserLayersExport trained model from tfjs-node and load it in browser
snake-dqn🔗Reinforcement learningDeep Q-Network (DQN)Node.jsBrowserLayersExport trained model from tfjs-node and load it in browser
translation🔗TextSequence-to-sequenceLSTM encoder and decoderNode.js or PythonBrowserLayersLoad model converted from Keras
tsne-mnist-canvasDimension reduction and data visualizationtSNEBrowserBrowserCore (Ops)
webcam-transfer-learning🔗ImageMulticlass classification (transfer learning)Convolutional neural networkBrowserBrowserLayersLoading pretrained model
website-phishing🔗NumericBinary classificationMultilayer perceptronBrowserBrowserLayers

Dependencies

Except for getting_started, all the examples require the following dependencies to be installed.

How to build an example

cd into the directory

If you are using yarn:

cd mnist-core
yarn
yarn watch

If you are using npm:

cd mnist-core
npm install
npm run watch

Details

The convention is that each example contains two scripts:

  • yarn watch or npm run watch: starts a local development HTTP server which watches the filesystem for changes so you can edit the code (JS or HTML) and see changes when you refresh the page immediately.

  • yarn build or npm run build: generates a dist/ folder which contains the build artifacts and can be used for deployment.

Contributing

If you want to contribute an example, please reach out to us on Github issues before sending us a pull request as we are trying to keep this set of examples small and highly curated.

Running Presubmit Tests

Before you send a pull request, it is a good idea to run the presubmit tests and make sure they all pass. To do that, execute the following commands in the root directory of tfjs-examples:

yarn
yarn presubmit

The yarn presubmit command executes the unit tests and lint checks of all the exapmles that contain the yarn test and/or yarn lint scripts. You may also run the tests for individual exampls by cd'ing into their respective subdirectory and executing yarn, followed by yarn test and/or yarn lint.