Merge pull request #11 from huyouare/minor-typo

Fix minor typo in README
This commit is contained in:
Leon Chen
2016-10-15 00:01:37 -04:00
committed by GitHub
+1 -1
View File
@@ -147,7 +147,7 @@ See `demos/src/` for source code of real examples.
**WebWorkers and their limitations**
Kera.js can be run in a WebWorker separate from the main thread. Because Keras.js performs a lot of synchronous computations, this can prevent the UI from being affected. However, one of the biggest limitations of WebWorkers is the lack of `<canvas>` (and thus WebGL) access. So the benefits gained by running Keras.js in a separate thread are offset by the necessity of running it in CPU-mode only. In other words, one can run Keras.js in GPU mode only on the main thread.
Keras.js can be run in a WebWorker separate from the main thread. Because Keras.js performs a lot of synchronous computations, this can prevent the UI from being affected. However, one of the biggest limitations of WebWorkers is the lack of `<canvas>` (and thus WebGL) access. So the benefits gained by running Keras.js in a separate thread are offset by the necessity of running it in CPU-mode only. In other words, one can run Keras.js in GPU mode only on the main thread.
**WebGL MAX_TEXTURE_SIZE**