Difference between revisions of "JavaScript"
| Line 15: | Line 15: | ||
* [http://wagenaartje.github.io/neataptic/ Neataptic] neuro-evolution & backpropagation for the browser | * [http://wagenaartje.github.io/neataptic/ Neataptic] neuro-evolution & backpropagation for the browser | ||
* [http://compromise.cool/ Compromise] modest natural-language processing (NLP) interprets and pre-parses English and makes some reasonable decisions | * [http://compromise.cool/ Compromise] modest natural-language processing (NLP) interprets and pre-parses English and makes some reasonable decisions | ||
| − | * [http://stevenmiller888.github.io/mindjs.net/ Mind] make predictions, using a matrix implementation to process training data and enabling configurable network topology. | + | * [http://stevenmiller888.github.io/mindjs.net/ Mind] make predictions, using a matrix implementation to process training data and enabling configurable network topology. |
| + | * [http://github.com/NaturalNode/natural Natural] provides tokenizing, stemming (reducing a word to a not-necessarily morphological root), classification, phonetics, tf-idf, WordNet, string similarity, and more. | ||
| + | |||
| + | |||
________________________________ | ________________________________ | ||
* [[Git - GitHub and GitLab]] | * [[Git - GitHub and GitLab]] | ||
Revision as of 15:48, 5 August 2018
- TensorFlow.js for training and deploying ML models in the browser and on Node.js (was called Deeplearnjs)
- TensorFlow Playground written in Javascript (TypeScript) using d3.js
A sampling of available Javascript Machine Learning libraries:
- Neuro.js Learning to Drive project a deep learning and reinforcement learning Javascript library framework for the browser. Implementing a full stack neural-network based machine learning framework with extended reinforcement-learning support
- Conventjs (not maintained)] neural networks supporting common modules, classification, regression, an experimental Reinforcement Learning module, able to train convolutional networks that process images
- mxnet.js deep learning in browser (without server)
- brain.js several types of networks
- mljs includes supervised and unsupervised learning, artificial neural networks, regression algorithms and supporting libraries for statistics, math etc.
- Synaptic multilayer perceptrons, multilayer long-short term memory networks, liquid state machines and a trainer capable of training a verity of networks
- Webdnn this framework optimizes the DNN model to compress the model data and accelerate execution through JavaScript APIs such as WebAssembly and WebGPU
- Neataptic neuro-evolution & backpropagation for the browser
- Compromise modest natural-language processing (NLP) interprets and pre-parses English and makes some reasonable decisions
- Mind make predictions, using a matrix implementation to process training data and enabling configurable network topology.
- Natural provides tokenizing, stemming (reducing a word to a not-necessarily morphological root), classification, phonetics, tf-idf, WordNet, string similarity, and more.
________________________________
Node.js