All Projects → mljs → Ml

mljs / Ml

Licence: mit
Machine learning tools in JavaScript

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ml

Ml
Machine Learning Projects and Learning Content
Stars: ✭ 134 (-93.93%)
Mutual labels:  ml
Djl
An Engine-Agnostic Deep Learning Framework in Java
Stars: ✭ 2,262 (+2.54%)
Mutual labels:  ml
Pzad
Курс "Прикладные задачи анализа данных" (ВМК, МГУ имени М.В. Ломоносова)
Stars: ✭ 160 (-92.75%)
Mutual labels:  ml
Nlpaug
Data augmentation for NLP
Stars: ✭ 2,761 (+25.16%)
Mutual labels:  ml
Ml Forex Prediction
Predicting Forex Future Price with Machine Learning
Stars: ✭ 142 (-93.56%)
Mutual labels:  ml
Audioowl
Fast and simple music and audio analysis using RNN in Python 🕵️‍♀️ 🥁
Stars: ✭ 151 (-93.16%)
Mutual labels:  ml
Mk Tfjs
Play MK.js with TensorFlow.js
Stars: ✭ 133 (-93.97%)
Mutual labels:  ml
Ee Outliers
Open-source framework to detect outliers in Elasticsearch events
Stars: ✭ 172 (-92.2%)
Mutual labels:  ml
Real Time Ml Project
A curated list of applied machine learning and data science notebooks and libraries across different industries.
Stars: ✭ 143 (-93.52%)
Mutual labels:  ml
Prophecis
Prophecis is a one-stop cloud native machine learning platform.
Stars: ✭ 156 (-92.93%)
Mutual labels:  ml
Ml Nlp Paper Discussions
📄 A repo containing notes and discussions for our weekly NLP/ML paper discussions.
Stars: ✭ 142 (-93.56%)
Mutual labels:  ml
Dl
Курс "Глубокое обучение (Deep Learning)" (ВМК, МГУ имени М.В. Ломоносова)
Stars: ✭ 141 (-93.61%)
Mutual labels:  ml
Ebooks
A repository for ebooks, including C, C plus plus, Linux Kernel, Compiler, OS, Algorithm, Security, Database, Network, ML and DL
Stars: ✭ 151 (-93.16%)
Mutual labels:  ml
Image classifier
CNN image classifier implemented in Keras Notebook 🖼️.
Stars: ✭ 139 (-93.7%)
Mutual labels:  ml
Sig Mlops
CDF SIG MLOps
Stars: ✭ 165 (-92.52%)
Mutual labels:  ml
Machine Learning Concepts
Machine Learning Concepts with Concepts
Stars: ✭ 134 (-93.93%)
Mutual labels:  ml
Jetson
Helmut Hoffer von Ankershoffen experimenting with arm64 based NVIDIA Jetson (Nano and AGX Xavier) edge devices running Kubernetes (K8s) for machine learning (ML) including Jupyter Notebooks, TensorFlow Training and TensorFlow Serving using CUDA for smart IoT.
Stars: ✭ 151 (-93.16%)
Mutual labels:  ml
Atari
AI research environment for the Atari 2600 games 🤖.
Stars: ✭ 174 (-92.11%)
Mutual labels:  ml
Transmogrifai
TransmogrifAI (pronounced trăns-mŏgˈrə-fī) is an AutoML library for building modular, reusable, strongly typed machine learning workflows on Apache Spark with minimal hand-tuning
Stars: ✭ 2,084 (-5.53%)
Mutual labels:  ml
Datasciencevm
Tools and Docs on the Azure Data Science Virtual Machine (http://aka.ms/dsvm)
Stars: ✭ 153 (-93.06%)
Mutual labels:  ml

ml.js - Machine learning tools in JavaScript

Introduction

This library is a compilation of the tools developed in the mljs organization.
It is mainly maintained for use in the browser. If you are working with Node.js, you might prefer to add to your dependencies only the libraries that you need, as they are usually published to npm more often.
We prefix all our npm package names with ml- (eg. ml-matrix) so they are easy to find.

To include the ml.js library in a web page:

<script src="https://www.lactame.com/lib/ml/6.0.0/ml.min.js"></script>

It will be available as the global ML variable. The package is in UMD format.

List of included libraries

Unsupervised learning

Supervised learning

Artificial neural networks (ANN)

  • Feedforward Neural Networks: ML.FNN
  • Self-organizing map / Kohonen networks: ML.SOM

Regression

Optimization

Math

ML.Array

ML.ArrayXY

Functions dealing with an object containing 2 properties x and y, both arrays.

Example:

let result = ML.ArrayXY.sortX({ x: [2, 3, 1], y: [4, 6, 2] });
// result = {x: [1,2,3], y: [2,4,6]}

Statistics

Data processing

Utility

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].