├── Books ├── 《机器学习》西瓜书训练营作业(第十期).docx ├── 《机器学习》西瓜书训练营作业(第十期).pdf └── 机器学习-西瓜书笔记汇总.pdf ├── Note ├── images │ ├── 10-1-KNN.png │ ├── 10-2-The-Range-of-Coefficient-K.png │ ├── 10-3-Isomap.png │ ├── 10-4-LLE.png │ ├── 11-1-The-Decline-Speed-of-L1-and-L2.png │ ├── 11-2-Spatial-Constraints-of-L1-and-L2.png │ ├── 12-1-Linear-Partition-on-Two-Dimensional-Real-Plane.png │ ├── 13-1-Semi-Supervised-Learning.png │ ├── 13-2-Active-Learning-Pure-Semi-Supervised-Learning-and-Direct-Learning.png │ ├── 13-3-Combined-Training.png │ ├── 14-1-State-Variables-and-Observation-Variables.png │ ├── 14-2-Separating-Set.png │ ├── 14-3-Chain-CRF.png │ ├── 14-4-Variable-Elimination-Method-and-Message-Passing-Process.png │ ├── 14-5-Belief-Propagation-Algorithm.png │ ├── 14-6-LDA.png │ ├── 15-1-Reinforcement-Learning.png │ ├── 15-2-Monte-Carlo-Search-Tree.png │ ├── 15-3-Adjustment-of-Valuation-Function.png │ ├── 2-1-Over-Fit-and-Under-Fit.png │ ├── 2-10-Common-Critical-Values-of-Bilateral-T-Test.png │ ├── 2-11-Two-Learner-Classification-Difference.png │ ├── 2-12-Algorithmic-Comparison-Ordinal-Table.png │ ├── 2-13-Common-Critical-Values-of-F-Test.png │ ├── 2-14-Common-Q-A-Values-of-Nemenyi-Test.png │ ├── 2-15-Generalization-Error-and-Bias-and-Variance.png │ ├── 2-2-10-Fold-Ccross-Validation.png │ ├── 2-3-Classification-Result-Obfuscation-Matrix.png │ ├── 2-4-Confusion-Matrix-Form-of-Binary-Classification.png │ ├── 2-5-P-R-Curve-and-Balance-Point.png │ ├── 2-6-ROC-and-AUC.png │ ├── 2-7-Bicategorized-Cost-Matrix.png │ ├── 2-8-Cost-Curve-and-Expected-Total-Cost.png │ ├── 2-9-T-Distribution.png │ ├── 3-1-Log-Linear-Regression.png │ ├── 3-2-Unit-Step-Function-and-Logistic-Function.png │ ├── 3-3-LDA.png │ ├── 3-4-OvO-and-OvR.png │ ├── 3-5-ECOC-Coding.png │ ├── 4-1-Girls'picking-Process.png │ ├── 4-2-Unpruned-Decision-Tree.png │ ├── 4-3-Prepruning-Decision-Tree.png │ ├── 4-4-Post-Pruning-Decision-Tree.png │ ├── 5-1-Neuron.png │ ├── 5-2-M-P-Neuron-Model.png │ ├── 5-3-Typical-Neuron-Activation-Function.png │ ├── 5-4-Simple-Perceptron.png │ ├── 5-5-Multi-Layer-Neural-Network.png │ ├── 5-6-Multi-Layer-Feed-Forward-Neural-Network.png │ ├── 5-7-BP-Network.png │ ├── 5-8-Global-Minimum-and-Local-Minimum.png │ ├── 5-9-CNN-for-Handwritten-Number-Recognition.png │ ├── 6-1-Hyperplane.png │ ├── 6-2-Gap.png │ ├── 6-3-Support-Vector-and-Margin.png │ ├── 6-4-Common-Kernel-Functions.png │ ├── 6-5-Noise-Data.png │ ├── 7-1-Jensen's-Inequality-for-Convex-Function.png │ ├── 7-2-Coordinate-Descent.png │ ├── 8-1-Ensemble-Learning.png │ ├── 8-2-Ensembled-Individuals.png │ ├── 8-3-Impact-of-Integration-Scale-on-Random-Forest-and-Bagging.png │ └── 9-1-DBSCAN-Definition.png ├── markdown │ ├── 01-绪论.md │ ├── 02-模型的评估与选择.md │ ├── 03-线性模型.md │ ├── 04-决策树.md │ ├── 05-神经网络.md │ ├── 06-支持向量机.md │ ├── 07-贝叶斯分类器.md │ ├── 08-集成学习.md │ ├── 09-聚类.md │ ├── 10-降维与度量学习.md │ ├── 11-特征选择与稀疏学习.md │ ├── 12-计算学习理论.md │ ├── 13-半监督学习.md │ ├── 14-概率图模型.md │ └── 15-强化学习.md └── notebook │ ├── 00-机器学习-西瓜书笔记汇总.ipynb │ ├── 01-绪论.ipynb │ ├── 02-模型的评估与选择.ipynb │ ├── 03-线性模型.ipynb │ ├── 04-决策树.ipynb │ ├── 05-神经网络.ipynb │ ├── 06-支持向量机.ipynb │ ├── 07-贝叶斯分类器.ipynb │ ├── 08-集成学习.ipynb │ ├── 09-聚类.ipynb │ ├── 10-降维与度量学习.ipynb │ ├── 11-特征选择与稀疏学习.ipynb │ ├── 12-计算学习理论.ipynb │ ├── 13-半监督学习.ipynb │ ├── 14-概率图模型.ipynb │ └── 15-强化学习.ipynb ├── README.md ├── Week1 ├── MyHomeWork │ ├── homework_1.md │ ├── homework_2.py │ ├── homework_3.md │ └── result.csv └── Reference-Material │ ├── plot_logistic_l1_l2_sparsity.ipynb │ ├── plot_logistic_multinomial.ipynb │ ├── plot_logistic_path.ipynb │ ├── plot_sparse_logistic_regression_20newsgroups.ipynb │ └── plot_sparse_logistic_regression_mnist.ipynb ├── Week10 └── MyHomeWork │ ├── plot_kmeans_assumptions.ipynb │ └── plot_kmeans_assumptions.py ├── Week2 └── MyHomeWork │ ├── plot_sparse_logistic_regression_mnist.ipynb │ └── plot_sparse_logistic_regression_mnist.py ├── Week3 └── MyHomeWork │ ├── plot_iris_dtc.ipynb │ └── plot_iris_dtc.py ├── Week4 └── MyHomeWork │ ├── plot_iris_svc.ipynb │ └── plot_iris_svc.py ├── Week5 └── MyHomeWork │ ├── iris_gaussian_naive_bayes.ipynb │ └── iris_gaussian_naive_bayes.py ├── Week6 └── MyHomeWork │ ├── plot_mnist_filters.ipynb │ └── plot_mnist_filters.py ├── Week7 └── MyHomeWork │ ├── plot_roc_crossval.ipynb │ └── plot_roc_crossval.py ├── Week8 └── MyHomeWork │ ├── plot_feature_selection.ipynb │ └── plot_feature_selection.py └── Week9 └── MyHomeWork ├── lightGBM-Example.ipynb ├── lightGBM-Example.py ├── model.txt ├── regression.test └── regression.train /Books/《机器学习》西瓜书训练营作业(第十期).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Books/《机器学习》西瓜书训练营作业(第十期).docx -------------------------------------------------------------------------------- /Books/《机器学习》西瓜书训练营作业(第十期).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Books/《机器学习》西瓜书训练营作业(第十期).pdf -------------------------------------------------------------------------------- /Books/机器学习-西瓜书笔记汇总.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Books/机器学习-西瓜书笔记汇总.pdf -------------------------------------------------------------------------------- /Note/images/10-1-KNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/10-1-KNN.png -------------------------------------------------------------------------------- /Note/images/10-2-The-Range-of-Coefficient-K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/10-2-The-Range-of-Coefficient-K.png -------------------------------------------------------------------------------- /Note/images/10-3-Isomap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/10-3-Isomap.png -------------------------------------------------------------------------------- /Note/images/10-4-LLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/10-4-LLE.png -------------------------------------------------------------------------------- /Note/images/11-1-The-Decline-Speed-of-L1-and-L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/11-1-The-Decline-Speed-of-L1-and-L2.png -------------------------------------------------------------------------------- /Note/images/11-2-Spatial-Constraints-of-L1-and-L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/11-2-Spatial-Constraints-of-L1-and-L2.png -------------------------------------------------------------------------------- /Note/images/12-1-Linear-Partition-on-Two-Dimensional-Real-Plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/12-1-Linear-Partition-on-Two-Dimensional-Real-Plane.png -------------------------------------------------------------------------------- /Note/images/13-1-Semi-Supervised-Learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/13-1-Semi-Supervised-Learning.png -------------------------------------------------------------------------------- /Note/images/13-2-Active-Learning-Pure-Semi-Supervised-Learning-and-Direct-Learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/13-2-Active-Learning-Pure-Semi-Supervised-Learning-and-Direct-Learning.png -------------------------------------------------------------------------------- /Note/images/13-3-Combined-Training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/13-3-Combined-Training.png -------------------------------------------------------------------------------- /Note/images/14-1-State-Variables-and-Observation-Variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/14-1-State-Variables-and-Observation-Variables.png -------------------------------------------------------------------------------- /Note/images/14-2-Separating-Set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/14-2-Separating-Set.png -------------------------------------------------------------------------------- /Note/images/14-3-Chain-CRF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/14-3-Chain-CRF.png -------------------------------------------------------------------------------- /Note/images/14-4-Variable-Elimination-Method-and-Message-Passing-Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/14-4-Variable-Elimination-Method-and-Message-Passing-Process.png -------------------------------------------------------------------------------- /Note/images/14-5-Belief-Propagation-Algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/14-5-Belief-Propagation-Algorithm.png -------------------------------------------------------------------------------- /Note/images/14-6-LDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/14-6-LDA.png -------------------------------------------------------------------------------- /Note/images/15-1-Reinforcement-Learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/15-1-Reinforcement-Learning.png -------------------------------------------------------------------------------- /Note/images/15-2-Monte-Carlo-Search-Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/15-2-Monte-Carlo-Search-Tree.png -------------------------------------------------------------------------------- /Note/images/15-3-Adjustment-of-Valuation-Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/15-3-Adjustment-of-Valuation-Function.png -------------------------------------------------------------------------------- /Note/images/2-1-Over-Fit-and-Under-Fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-1-Over-Fit-and-Under-Fit.png -------------------------------------------------------------------------------- /Note/images/2-10-Common-Critical-Values-of-Bilateral-T-Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-10-Common-Critical-Values-of-Bilateral-T-Test.png -------------------------------------------------------------------------------- /Note/images/2-11-Two-Learner-Classification-Difference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-11-Two-Learner-Classification-Difference.png -------------------------------------------------------------------------------- /Note/images/2-12-Algorithmic-Comparison-Ordinal-Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-12-Algorithmic-Comparison-Ordinal-Table.png -------------------------------------------------------------------------------- /Note/images/2-13-Common-Critical-Values-of-F-Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-13-Common-Critical-Values-of-F-Test.png -------------------------------------------------------------------------------- /Note/images/2-14-Common-Q-A-Values-of-Nemenyi-Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-14-Common-Q-A-Values-of-Nemenyi-Test.png -------------------------------------------------------------------------------- /Note/images/2-15-Generalization-Error-and-Bias-and-Variance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-15-Generalization-Error-and-Bias-and-Variance.png -------------------------------------------------------------------------------- /Note/images/2-2-10-Fold-Ccross-Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-2-10-Fold-Ccross-Validation.png -------------------------------------------------------------------------------- /Note/images/2-3-Classification-Result-Obfuscation-Matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-3-Classification-Result-Obfuscation-Matrix.png -------------------------------------------------------------------------------- /Note/images/2-4-Confusion-Matrix-Form-of-Binary-Classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-4-Confusion-Matrix-Form-of-Binary-Classification.png -------------------------------------------------------------------------------- /Note/images/2-5-P-R-Curve-and-Balance-Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-5-P-R-Curve-and-Balance-Point.png -------------------------------------------------------------------------------- /Note/images/2-6-ROC-and-AUC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-6-ROC-and-AUC.png -------------------------------------------------------------------------------- /Note/images/2-7-Bicategorized-Cost-Matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-7-Bicategorized-Cost-Matrix.png -------------------------------------------------------------------------------- /Note/images/2-8-Cost-Curve-and-Expected-Total-Cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-8-Cost-Curve-and-Expected-Total-Cost.png -------------------------------------------------------------------------------- /Note/images/2-9-T-Distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/2-9-T-Distribution.png -------------------------------------------------------------------------------- /Note/images/3-1-Log-Linear-Regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/3-1-Log-Linear-Regression.png -------------------------------------------------------------------------------- /Note/images/3-2-Unit-Step-Function-and-Logistic-Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/3-2-Unit-Step-Function-and-Logistic-Function.png -------------------------------------------------------------------------------- /Note/images/3-3-LDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/3-3-LDA.png -------------------------------------------------------------------------------- /Note/images/3-4-OvO-and-OvR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/3-4-OvO-and-OvR.png -------------------------------------------------------------------------------- /Note/images/3-5-ECOC-Coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/3-5-ECOC-Coding.png -------------------------------------------------------------------------------- /Note/images/4-1-Girls'picking-Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/4-1-Girls'picking-Process.png -------------------------------------------------------------------------------- /Note/images/4-2-Unpruned-Decision-Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/4-2-Unpruned-Decision-Tree.png -------------------------------------------------------------------------------- /Note/images/4-3-Prepruning-Decision-Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/4-3-Prepruning-Decision-Tree.png -------------------------------------------------------------------------------- /Note/images/4-4-Post-Pruning-Decision-Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/4-4-Post-Pruning-Decision-Tree.png -------------------------------------------------------------------------------- /Note/images/5-1-Neuron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-1-Neuron.png -------------------------------------------------------------------------------- /Note/images/5-2-M-P-Neuron-Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-2-M-P-Neuron-Model.png -------------------------------------------------------------------------------- /Note/images/5-3-Typical-Neuron-Activation-Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-3-Typical-Neuron-Activation-Function.png -------------------------------------------------------------------------------- /Note/images/5-4-Simple-Perceptron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-4-Simple-Perceptron.png -------------------------------------------------------------------------------- /Note/images/5-5-Multi-Layer-Neural-Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-5-Multi-Layer-Neural-Network.png -------------------------------------------------------------------------------- /Note/images/5-6-Multi-Layer-Feed-Forward-Neural-Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-6-Multi-Layer-Feed-Forward-Neural-Network.png -------------------------------------------------------------------------------- /Note/images/5-7-BP-Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-7-BP-Network.png -------------------------------------------------------------------------------- /Note/images/5-8-Global-Minimum-and-Local-Minimum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-8-Global-Minimum-and-Local-Minimum.png -------------------------------------------------------------------------------- /Note/images/5-9-CNN-for-Handwritten-Number-Recognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/5-9-CNN-for-Handwritten-Number-Recognition.png -------------------------------------------------------------------------------- /Note/images/6-1-Hyperplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/6-1-Hyperplane.png -------------------------------------------------------------------------------- /Note/images/6-2-Gap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/6-2-Gap.png -------------------------------------------------------------------------------- /Note/images/6-3-Support-Vector-and-Margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/6-3-Support-Vector-and-Margin.png -------------------------------------------------------------------------------- /Note/images/6-4-Common-Kernel-Functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/6-4-Common-Kernel-Functions.png -------------------------------------------------------------------------------- /Note/images/6-5-Noise-Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/6-5-Noise-Data.png -------------------------------------------------------------------------------- /Note/images/7-1-Jensen's-Inequality-for-Convex-Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/7-1-Jensen's-Inequality-for-Convex-Function.png -------------------------------------------------------------------------------- /Note/images/7-2-Coordinate-Descent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/7-2-Coordinate-Descent.png -------------------------------------------------------------------------------- /Note/images/8-1-Ensemble-Learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/8-1-Ensemble-Learning.png -------------------------------------------------------------------------------- /Note/images/8-2-Ensembled-Individuals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/8-2-Ensembled-Individuals.png -------------------------------------------------------------------------------- /Note/images/8-3-Impact-of-Integration-Scale-on-Random-Forest-and-Bagging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/8-3-Impact-of-Integration-Scale-on-Random-Forest-and-Bagging.png -------------------------------------------------------------------------------- /Note/images/9-1-DBSCAN-Definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/images/9-1-DBSCAN-Definition.png -------------------------------------------------------------------------------- /Note/markdown/01-绪论.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/01-绪论.md -------------------------------------------------------------------------------- /Note/markdown/02-模型的评估与选择.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/02-模型的评估与选择.md -------------------------------------------------------------------------------- /Note/markdown/03-线性模型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/03-线性模型.md -------------------------------------------------------------------------------- /Note/markdown/04-决策树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/04-决策树.md -------------------------------------------------------------------------------- /Note/markdown/05-神经网络.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/05-神经网络.md -------------------------------------------------------------------------------- /Note/markdown/06-支持向量机.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/06-支持向量机.md -------------------------------------------------------------------------------- /Note/markdown/07-贝叶斯分类器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/07-贝叶斯分类器.md -------------------------------------------------------------------------------- /Note/markdown/08-集成学习.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/08-集成学习.md -------------------------------------------------------------------------------- /Note/markdown/09-聚类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/09-聚类.md -------------------------------------------------------------------------------- /Note/markdown/10-降维与度量学习.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/10-降维与度量学习.md -------------------------------------------------------------------------------- /Note/markdown/11-特征选择与稀疏学习.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/11-特征选择与稀疏学习.md -------------------------------------------------------------------------------- /Note/markdown/12-计算学习理论.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/12-计算学习理论.md -------------------------------------------------------------------------------- /Note/markdown/13-半监督学习.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/13-半监督学习.md -------------------------------------------------------------------------------- /Note/markdown/14-概率图模型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/14-概率图模型.md -------------------------------------------------------------------------------- /Note/markdown/15-强化学习.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/markdown/15-强化学习.md -------------------------------------------------------------------------------- /Note/notebook/00-机器学习-西瓜书笔记汇总.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/00-机器学习-西瓜书笔记汇总.ipynb -------------------------------------------------------------------------------- /Note/notebook/01-绪论.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/01-绪论.ipynb -------------------------------------------------------------------------------- /Note/notebook/02-模型的评估与选择.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/02-模型的评估与选择.ipynb -------------------------------------------------------------------------------- /Note/notebook/03-线性模型.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/03-线性模型.ipynb -------------------------------------------------------------------------------- /Note/notebook/04-决策树.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/04-决策树.ipynb -------------------------------------------------------------------------------- /Note/notebook/05-神经网络.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/05-神经网络.ipynb -------------------------------------------------------------------------------- /Note/notebook/06-支持向量机.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/06-支持向量机.ipynb -------------------------------------------------------------------------------- /Note/notebook/07-贝叶斯分类器.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/07-贝叶斯分类器.ipynb -------------------------------------------------------------------------------- /Note/notebook/08-集成学习.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/08-集成学习.ipynb -------------------------------------------------------------------------------- /Note/notebook/09-聚类.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/09-聚类.ipynb -------------------------------------------------------------------------------- /Note/notebook/10-降维与度量学习.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/10-降维与度量学习.ipynb -------------------------------------------------------------------------------- /Note/notebook/11-特征选择与稀疏学习.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/11-特征选择与稀疏学习.ipynb -------------------------------------------------------------------------------- /Note/notebook/12-计算学习理论.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/12-计算学习理论.ipynb -------------------------------------------------------------------------------- /Note/notebook/13-半监督学习.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/13-半监督学习.ipynb -------------------------------------------------------------------------------- /Note/notebook/14-概率图模型.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/14-概率图模型.ipynb -------------------------------------------------------------------------------- /Note/notebook/15-强化学习.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Note/notebook/15-强化学习.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/README.md -------------------------------------------------------------------------------- /Week1/MyHomeWork/homework_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/MyHomeWork/homework_1.md -------------------------------------------------------------------------------- /Week1/MyHomeWork/homework_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/MyHomeWork/homework_2.py -------------------------------------------------------------------------------- /Week1/MyHomeWork/homework_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/MyHomeWork/homework_3.md -------------------------------------------------------------------------------- /Week1/MyHomeWork/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/MyHomeWork/result.csv -------------------------------------------------------------------------------- /Week1/Reference-Material/plot_logistic_l1_l2_sparsity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/Reference-Material/plot_logistic_l1_l2_sparsity.ipynb -------------------------------------------------------------------------------- /Week1/Reference-Material/plot_logistic_multinomial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/Reference-Material/plot_logistic_multinomial.ipynb -------------------------------------------------------------------------------- /Week1/Reference-Material/plot_logistic_path.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/Reference-Material/plot_logistic_path.ipynb -------------------------------------------------------------------------------- /Week1/Reference-Material/plot_sparse_logistic_regression_20newsgroups.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/Reference-Material/plot_sparse_logistic_regression_20newsgroups.ipynb -------------------------------------------------------------------------------- /Week1/Reference-Material/plot_sparse_logistic_regression_mnist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week1/Reference-Material/plot_sparse_logistic_regression_mnist.ipynb -------------------------------------------------------------------------------- /Week10/MyHomeWork/plot_kmeans_assumptions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week10/MyHomeWork/plot_kmeans_assumptions.ipynb -------------------------------------------------------------------------------- /Week10/MyHomeWork/plot_kmeans_assumptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week10/MyHomeWork/plot_kmeans_assumptions.py -------------------------------------------------------------------------------- /Week2/MyHomeWork/plot_sparse_logistic_regression_mnist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week2/MyHomeWork/plot_sparse_logistic_regression_mnist.ipynb -------------------------------------------------------------------------------- /Week2/MyHomeWork/plot_sparse_logistic_regression_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week2/MyHomeWork/plot_sparse_logistic_regression_mnist.py -------------------------------------------------------------------------------- /Week3/MyHomeWork/plot_iris_dtc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week3/MyHomeWork/plot_iris_dtc.ipynb -------------------------------------------------------------------------------- /Week3/MyHomeWork/plot_iris_dtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week3/MyHomeWork/plot_iris_dtc.py -------------------------------------------------------------------------------- /Week4/MyHomeWork/plot_iris_svc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week4/MyHomeWork/plot_iris_svc.ipynb -------------------------------------------------------------------------------- /Week4/MyHomeWork/plot_iris_svc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week4/MyHomeWork/plot_iris_svc.py -------------------------------------------------------------------------------- /Week5/MyHomeWork/iris_gaussian_naive_bayes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week5/MyHomeWork/iris_gaussian_naive_bayes.ipynb -------------------------------------------------------------------------------- /Week5/MyHomeWork/iris_gaussian_naive_bayes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week5/MyHomeWork/iris_gaussian_naive_bayes.py -------------------------------------------------------------------------------- /Week6/MyHomeWork/plot_mnist_filters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week6/MyHomeWork/plot_mnist_filters.ipynb -------------------------------------------------------------------------------- /Week6/MyHomeWork/plot_mnist_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week6/MyHomeWork/plot_mnist_filters.py -------------------------------------------------------------------------------- /Week7/MyHomeWork/plot_roc_crossval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week7/MyHomeWork/plot_roc_crossval.ipynb -------------------------------------------------------------------------------- /Week7/MyHomeWork/plot_roc_crossval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week7/MyHomeWork/plot_roc_crossval.py -------------------------------------------------------------------------------- /Week8/MyHomeWork/plot_feature_selection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week8/MyHomeWork/plot_feature_selection.ipynb -------------------------------------------------------------------------------- /Week8/MyHomeWork/plot_feature_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week8/MyHomeWork/plot_feature_selection.py -------------------------------------------------------------------------------- /Week9/MyHomeWork/lightGBM-Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week9/MyHomeWork/lightGBM-Example.ipynb -------------------------------------------------------------------------------- /Week9/MyHomeWork/lightGBM-Example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week9/MyHomeWork/lightGBM-Example.py -------------------------------------------------------------------------------- /Week9/MyHomeWork/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week9/MyHomeWork/model.txt -------------------------------------------------------------------------------- /Week9/MyHomeWork/regression.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week9/MyHomeWork/regression.test -------------------------------------------------------------------------------- /Week9/MyHomeWork/regression.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relph1119/MachineLearning-WatermelonBook/HEAD/Week9/MyHomeWork/regression.train --------------------------------------------------------------------------------