Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonchar/ml-python
Some machine learning algorithms implemented in python.
https://github.com/jonchar/ml-python
Last synced: 30 days ago
JSON representation
Some machine learning algorithms implemented in python.
- Host: GitHub
- URL: https://github.com/jonchar/ml-python
- Owner: jonchar
- License: mit
- Created: 2015-08-03T04:38:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-03-23T04:08:58.000Z (over 5 years ago)
- Last Synced: 2024-08-01T16:28:33.035Z (3 months ago)
- Language: Jupyter Notebook
- Size: 2.64 MB
- Stars: 11
- Watchers: 3
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Example python implementations of basic machine learning algorithms
The repository ml-python contains IPython notebooks outlining example implementations and
applications of machine learning algorithms using Python 3, numpy, and maybe pandas.## Motivation
The motivation for creating these notebooks came from taking Andrew Ng's machine
learning course on Coursera. The class implements the algorithms in GNU Octave /
MATLAB so I decided to try implementing them using Python as a challenge, to
reinforce the concepts, and also just for fun.These notebooks are intended to serve as examples and references for the
basic gist of the outlined machine learning algorithms.## Current examples:
* Linear regression
* Logistic regression
* *k*-means clustering
* Artificial neural networks (vanilla or using [Keras](http://keras.io))
* Support vector machines## Upcoming examples:
These are currently in progress at various stages of completion.
* Limitations of *k*-means clustering
* Cross-validation