All Projects β†’ Somnibyte β†’ Mlkit

Somnibyte / Mlkit

Licence: mit
A simple machine learning framework written in Swift πŸ€–

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Mlkit

Machine learning
Estudo e implementação dos principais algoritmos de Machine Learning em Jupyter Notebooks.
Stars: ✭ 161 (+11.81%)
Mutual labels:  machine-learning-algorithms, linear-regression, kmeans, regression
Machine Learning Concepts
Machine Learning Concepts with Concepts
Stars: ✭ 134 (-6.94%)
Mutual labels:  machine-learning-algorithms, linear-regression, machine-learning-library, regression
Php Ml
PHP-ML - Machine Learning library for PHP
Stars: ✭ 7,900 (+5386.11%)
Mutual labels:  artificial-intelligence, machine-learning-algorithms, machine-learning-library, regression
Awesome Quantum Machine Learning
Here you can get all the Quantum Machine learning Basics, Algorithms ,Study Materials ,Projects and the descriptions of the projects around the web
Stars: ✭ 1,940 (+1247.22%)
Mutual labels:  artificial-intelligence, machine-learning-algorithms, kmeans
Machine Learning Models
Decision Trees, Random Forest, Dynamic Time Warping, Naive Bayes, KNN, Linear Regression, Logistic Regression, Mixture Of Gaussian, Neural Network, PCA, SVD, Gaussian Naive Bayes, Fitting Data to Gaussian, K-Means
Stars: ✭ 160 (+11.11%)
Mutual labels:  machine-learning-algorithms, linear-regression, kmeans
100daysofmlcode
My journey to learn and grow in the domain of Machine Learning and Artificial Intelligence by performing the #100DaysofMLCode Challenge.
Stars: ✭ 146 (+1.39%)
Mutual labels:  artificial-intelligence, linear-regression, regression
pycobra
python library implementing ensemble methods for regression, classification and visualisation tools including Voronoi tesselations.
Stars: ✭ 111 (-22.92%)
Mutual labels:  machine-learning-algorithms, regression, machine-learning-library
Java Deep Learning Cookbook
Code for Java Deep Learning Cookbook
Stars: ✭ 156 (+8.33%)
Mutual labels:  artificial-intelligence, linear-regression, regression
Ml
A high-level machine learning and deep learning library for the PHP language.
Stars: ✭ 1,270 (+781.94%)
Mutual labels:  artificial-intelligence, machine-learning-library, regression
Solid
🎯 A comprehensive gradient-free optimization framework written in Python
Stars: ✭ 546 (+279.17%)
Mutual labels:  artificial-intelligence, machine-learning-algorithms, genetic-algorithm
Machine learning basics
Plain python implementations of basic machine learning algorithms
Stars: ✭ 3,557 (+2370.14%)
Mutual labels:  machine-learning-algorithms, linear-regression, kmeans
Tensorflow cookbook
Code for Tensorflow Machine Learning Cookbook
Stars: ✭ 5,984 (+4055.56%)
Mutual labels:  genetic-algorithm, linear-regression, regression
Igel
a delightful machine learning tool that allows you to train, test, and use models without writing code
Stars: ✭ 2,956 (+1952.78%)
Mutual labels:  artificial-intelligence, machine-learning-algorithms, machine-learning-library
interactive-simple-linear-regression
A PureScript, browser-based implementation of simple linear regression.
Stars: ✭ 15 (-89.58%)
Mutual labels:  linear-regression, machine-learning-algorithms, regression
Machine Learning From Scratch
Succinct Machine Learning algorithm implementations from scratch in Python, solving real-world problems (Notebooks and Book). Examples of Logistic Regression, Linear Regression, Decision Trees, K-means clustering, Sentiment Analysis, Recommender Systems, Neural Networks and Reinforcement Learning.
Stars: ✭ 42 (-70.83%)
Mutual labels:  artificial-intelligence, machine-learning-algorithms, regression
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (-61.11%)
Mutual labels:  machine-learning-algorithms, linear-regression
Notebooks
Some notebooks
Stars: ✭ 53 (-63.19%)
Mutual labels:  artificial-intelligence, genetic-algorithm
Genann
simple neural network library in ANSI C
Stars: ✭ 1,088 (+655.56%)
Mutual labels:  genetic-algorithm, backpropagation
25daysinmachinelearning
I will update this repository to learn Machine learning with python with statistics content and materials
Stars: ✭ 53 (-63.19%)
Mutual labels:  machine-learning-algorithms, linear-regression
Radiate
Radiate is a parallel genetic programming engine capable of evolving solutions to many problems as well as training learning algorithms.
Stars: ✭ 65 (-54.86%)
Mutual labels:  artificial-intelligence, genetic-algorithm

MLKit (a.k.a Machine Learning Kit) πŸ€–

MLKit is a simple machine learning framework written in Swift. Currently MLKit features machine learning algorithms that deal with the topic of regression, but the framework will expand over time with topics such as classification, clustering, recommender systems, and deep learning. The vision and goal of this framework is to provide developers with a toolkit to create products that can learn from data. MLKit is a side project of mine in order to make it easier for developers to implement machine learning algorithms on the go, and to familiarlize myself with machine learning concepts.

This project is under active development and is not ready for use in commercial or personal projects.

Awesome Version License Platform

MachineLearningKit Reference

Requirements

Installation

Cocoapods

Add pod 'MachineLearningKit to your PodFile and then run pod install.

Without Cocoapods

  1. Download the repository.
  2. cd [Project_Path_Goes_Here]/Example
  3. pod install

Contributing

The mission of this project is to give developers the ability to incorporate Machine Learning algorithms into their projects with ease and to enable the creation of advanced projects using the Swift programing language. With this being said, I encourage all developers interested in making Machine Learning accessible to the anyone who works with iOS apps and TVOS apps to contribute to this project.

To contribute an algorithm not currently available within the framework, please create an issue and state what algorithm you have implemented. Make sure that there are unit tests involved where applicable. Also, provide a brief overview of how to use your algorithm. You are also welcome to impelment algorithms within the Roadmap section (below).

To contribute to an already existant algorithm within the framework, please create an issue and state any changes or additions you have made.


Wiki

Example Project

⚠️️ The Flappy Bird Example Project is located in the Example folder. When you run the example you will see the fitness and the decisions that each Flappy Bird is making. The example project has comments to help with understanding how it was made.


Roadmap:

  • [ ] KMeans++ Implementation
  • [ ] KMeans Clustering Documentation
  • [ ] Neural Network Documentation
  • [ ] Logistic Regression
  • [ ] Decision Trees

Future Releases:

  • [ ] Convolutional Neural Network
  • [ ] Recurrent Neural Network
  • [ ] Artificial Neural Network using Metal
  • [ ] Game Playing AI (MiniMax, Alpha-Beta Pruning)
  • [ ] Self Organizing Maps

Features (So Far)

  • [x] Matrix and Vector Operations (uses Upsurge framework)
  • [x] Simple Linear Regression (Allows for 1 feature set)
  • [x] Polynomial Regression (Allows for multiple features)
  • [x] Ridge Regression
  • [x] Multi-Layer Feed Forward Neural Network
  • [x] K-Means Clustering
  • [x] Genetic Algorithms
  • [x] Allows for splitting your data into training, validation, and test sets.
  • [x] K-Fold Cross Validation & Ability to test various L2 penalties for Ridge Regression
  • [x] Single Layer Perceptron, Multi-Layer Perceptron, & Adaline ANN Architectures

Frameworks that MLKit uses

  • πŸ™Œ Upsurge (Matrix and Vector Operations)
  • πŸ™Œ CSVReader (CSV Reading) (Used in Unit Testing)

Development Schedule

Week of August 28th

TBD

License

MIT License

Copyright (c) 2017 Guled Ahmed

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].