Machine Learning From Zero#
An educational machine learning library.
Hi there! mlfz is my attempt to provide reference implementations of machine learning algorithms for educational purposes. The goal is not performance, but simplicity: you won’t just use this library; you’ll dig through the source code to understand how machine learning works on the inside.
This documentation works more like an interactive textbook instead of a feature reference. You can run it interactively via Binder.
If you find value in this project, support me by grabbing a copy of my Mathematics of Machine Learning book!
Quickstart#
You can install the package directly from pip:
pip install mlfz
However, I encourage you to clone the repository and install via
pip install -e .
from the directory. This way, any local change is reflected immediately, so you can play around with the code in, say, a Jupyter Notebook.
Contributions#
Contributions are welcome! If you could make this project better, feel free to submit a PR. To make the process smooth, here are the steps you should take.
Open an issue to discuss your suggestions. If we are on the same page, you can start working on the PR. (If we are not, you have saved yourself a ton of work.)
Fork the repository and create a feature branch where you’ll prepare the proposed changes.
Open a PR to the
mainbranch and tag me (@cosmic-cortex) as a reviewer.I’ll either leave comments and suggestions or merge the PR.