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
隨時歡迎您的貢獻!
請隨意改進現有程式碼、文件或實作新演算法。
如果更改足夠大,請打開一個問題來提出您的更改。