MLAlgorithms
1.0.0
机器学习算法的最小且干净的实现的集合。
该项目针对的是那些想要学习机器学习算法内部原理或从头开始实现它们的人。
该代码比优化的库更容易理解,也更容易使用。
所有算法均使用 Python、numpy、scipy 和 autograd 实现。
git clone https://github.com/rushter/MLAlgorithms
cd MLAlgorithms
pip install scipy numpy
python setup.py develop
cd MLAlgorithms
python -m examples.linear_models
cd MLAlgorithms
docker build -t mlalgorithms .
docker run --rm -it mlalgorithms bash
python -m examples.linear_models
随时欢迎您的贡献!
请随意改进现有代码、文档或实施新算法。
如果更改足够大,请打开一个问题来提出您的更改。