tfjs-examples/addition-rnn-webworker
gaikwadrahul8 0521725666
Update Broken Link In README.md For Keras Python Code In Addition RNN in Webworker Example (#1260)
Co-authored-by: Matthew Soulanille <msoulanille@google.com>
2025-02-04 21:37:03 +00:00
..
README.md Update Broken Link In README.md For Keras Python Code In Addition RNN in Webworker Example (#1260) 2025-02-04 21:37:03 +00:00
index.html
index.js
package.json
worker.js
yarn.lock

README.md

TensorFlow.js Example: Addition RNN in Webworker

This example uses an RNN to compute (in a worker thread) the addition of two integers by doing string => string translation. Obviously it's not the best way to add two numbers, but it makes a fun example. In this way, we can do long-running computation without blocking the UI thread.

Note: This example is based on the addition-rnn example in this repo, which is based on the original Keras python code here

See this example live!