Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 387 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 387 Bytes

MechineLearning_code

手动实现ML算法代码

该代码实现一些机器学习算法时为了验证算法效果,使用了python的sklearn库中的一些数据集

算法列表:

DecisionTree.py 决策树

K-NearestNeighbor KNN分类算法

LinerRegression_GradientDescent.py 线性回归:梯度下降

LinerRegression_LeastSquare.py 线性回归:最小二乘法