MLAlgorithms

Minimal and clean examples of machine learning algorithms

Pure Nim score 15/100 · last commit 2019-01-16 · 1 stars · tests present · no docs generated

Summary

Latest Version Unknown
License Unknown
CI Status Failing
Stars 1
Forks 0
Open Issues 0
Last Commit 2019-01-16
Downloads 0
Last Indexed 2026-08-01 04:45

Installation

nimble install MLAlgorithms
choosenim install MLAlgorithms
git clone https://gitlab.com/divyang44811/MLAlgorithms

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
MLAlgorithms - - - - - - -

README

Machine learning algorithms

A collection of minimal and clean implementations of machine learning algorithms.

Why?

This project is targeting people who want to learn internals of ml algorithms or implement them from scratch.
The code is much easier to follow than the optimized libraries and easier to play with.
All algorithms are implemented in Python, using numpy, scipy and autograd.

Implemented:

Installation

    git clone https://github.com/rushter/MLAlgorithms
    cd MLAlgorithms
    pip install scipy numpy
    pip install .

How to run examples without installation

    cd MLAlgorithms
    python -m examples.linear_models

How to run examples within Docker

    cd MLAlgorithms
    docker build -t mlalgorithms .
    docker run --rm -it mlalgorithms bash
    python -m examples.linear_models

Contributing

Your contributions are always welcome!
Feel free to improve existing code, documentation or implement new algorithm.
Please open an issue to propose your changes if they big are enough.