├── .github └── FUNDING.yml ├── .gitignore ├── AnomalyDetection ├── AnomalyDetection.py ├── data1.mat └── data2.mat ├── K-Means ├── K-Means_scikit-learn.py ├── K-Menas.py ├── bird.mat ├── bird.png └── data.mat ├── LICENSE ├── LinearRegression ├── LinearRegression.py ├── LinearRegression_scikit-learn.py ├── data.csv ├── data.npy └── data.txt ├── LogisticRegression ├── LogisticRegression.py ├── LogisticRegression_OneVsAll.py ├── LogisticRegression_OneVsAll_scikit-learn.py ├── LogisticRegression_scikit-learn.py ├── class_y.csv ├── data1.npy ├── data1.txt ├── data2.txt ├── data_digits.mat └── predict.csv ├── NeuralNetwok ├── NeuralNetwork.py ├── data_digits.mat └── predict.csv ├── PCA ├── PCA.py ├── PCA_scikit-learn.py ├── data.mat └── data_faces.mat ├── SVM ├── SVM_scikit-learn.py ├── data.txt ├── data1.mat ├── data2.mat └── data3.mat ├── formula ├── AnomalyDetection.wmf ├── K-Means.wmf ├── LinearRegression_01.wmf ├── LogisticRegression_01.wmf ├── NeuralNetwork.wmf ├── PCA.wmf └── SVM.wmf ├── images ├── AnomalyDetection_01.png ├── AnomalyDetection_02.png ├── AnomalyDetection_03.png ├── AnomalyDetection_04.png ├── AnomalyDetection_05.png ├── AnomalyDetection_06.png ├── AnomalyDetection_07.png ├── AnomalyDetection_08.png ├── AnomalyDetection_09.png ├── AnomalyDetection_10.png ├── K-Means_01.png ├── K-Means_02.png ├── K-Means_03.png ├── K-Means_04.png ├── K-Means_05.png ├── K-Means_06.png ├── K-Means_07.png ├── LinearRegression_01.png ├── LogisticRegression_01.png ├── LogisticRegression_02.png ├── LogisticRegression_03.jpg ├── LogisticRegression_04.png ├── LogisticRegression_05.png ├── LogisticRegression_06.png ├── LogisticRegression_07.png ├── LogisticRegression_08.png ├── LogisticRegression_09.png ├── LogisticRegression_10.png ├── LogisticRegression_11.png ├── LogisticRegression_12.png ├── LogisticRegression_13.png ├── NeuralNetwork_01.png ├── NeuralNetwork_02.png ├── NeuralNetwork_03.jpg ├── NeuralNetwork_04.png ├── NeuralNetwork_05.png ├── NeuralNetwork_06.png ├── NeuralNetwork_07.png ├── NeuralNetwork_08.png ├── NeuralNetwork_09.png ├── PCA_01.png ├── PCA_02.png ├── PCA_03.png ├── PCA_04.png ├── PCA_05.png ├── PCA_06.png ├── PCA_07.png ├── PCA_08.png ├── SVM_01.png ├── SVM_02.png ├── SVM_03.png ├── SVM_04.png ├── SVM_05.png ├── SVM_06.png ├── SVM_07.png ├── SVM_08.png ├── SVM_09.png └── SVM_10.png └── readme.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | -------------------------------------------------------------------------------- /AnomalyDetection/AnomalyDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/AnomalyDetection/AnomalyDetection.py -------------------------------------------------------------------------------- /AnomalyDetection/data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/AnomalyDetection/data1.mat -------------------------------------------------------------------------------- /AnomalyDetection/data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/AnomalyDetection/data2.mat -------------------------------------------------------------------------------- /K-Means/K-Means_scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/K-Means/K-Means_scikit-learn.py -------------------------------------------------------------------------------- /K-Means/K-Menas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/K-Means/K-Menas.py -------------------------------------------------------------------------------- /K-Means/bird.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/K-Means/bird.mat -------------------------------------------------------------------------------- /K-Means/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/K-Means/bird.png -------------------------------------------------------------------------------- /K-Means/data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/K-Means/data.mat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LICENSE -------------------------------------------------------------------------------- /LinearRegression/LinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LinearRegression/LinearRegression.py -------------------------------------------------------------------------------- /LinearRegression/LinearRegression_scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LinearRegression/LinearRegression_scikit-learn.py -------------------------------------------------------------------------------- /LinearRegression/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LinearRegression/data.csv -------------------------------------------------------------------------------- /LinearRegression/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LinearRegression/data.npy -------------------------------------------------------------------------------- /LinearRegression/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LinearRegression/data.txt -------------------------------------------------------------------------------- /LogisticRegression/LogisticRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/LogisticRegression.py -------------------------------------------------------------------------------- /LogisticRegression/LogisticRegression_OneVsAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/LogisticRegression_OneVsAll.py -------------------------------------------------------------------------------- /LogisticRegression/LogisticRegression_OneVsAll_scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/LogisticRegression_OneVsAll_scikit-learn.py -------------------------------------------------------------------------------- /LogisticRegression/LogisticRegression_scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/LogisticRegression_scikit-learn.py -------------------------------------------------------------------------------- /LogisticRegression/class_y.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/class_y.csv -------------------------------------------------------------------------------- /LogisticRegression/data1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/data1.npy -------------------------------------------------------------------------------- /LogisticRegression/data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/data1.txt -------------------------------------------------------------------------------- /LogisticRegression/data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/data2.txt -------------------------------------------------------------------------------- /LogisticRegression/data_digits.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/data_digits.mat -------------------------------------------------------------------------------- /LogisticRegression/predict.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/LogisticRegression/predict.csv -------------------------------------------------------------------------------- /NeuralNetwok/NeuralNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/NeuralNetwok/NeuralNetwork.py -------------------------------------------------------------------------------- /NeuralNetwok/data_digits.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/NeuralNetwok/data_digits.mat -------------------------------------------------------------------------------- /NeuralNetwok/predict.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/NeuralNetwok/predict.csv -------------------------------------------------------------------------------- /PCA/PCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/PCA/PCA.py -------------------------------------------------------------------------------- /PCA/PCA_scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/PCA/PCA_scikit-learn.py -------------------------------------------------------------------------------- /PCA/data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/PCA/data.mat -------------------------------------------------------------------------------- /PCA/data_faces.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/PCA/data_faces.mat -------------------------------------------------------------------------------- /SVM/SVM_scikit-learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/SVM/SVM_scikit-learn.py -------------------------------------------------------------------------------- /SVM/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/SVM/data.txt -------------------------------------------------------------------------------- /SVM/data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/SVM/data1.mat -------------------------------------------------------------------------------- /SVM/data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/SVM/data2.mat -------------------------------------------------------------------------------- /SVM/data3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/SVM/data3.mat -------------------------------------------------------------------------------- /formula/AnomalyDetection.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/formula/AnomalyDetection.wmf -------------------------------------------------------------------------------- /formula/K-Means.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/formula/K-Means.wmf -------------------------------------------------------------------------------- /formula/LinearRegression_01.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/formula/LinearRegression_01.wmf -------------------------------------------------------------------------------- /formula/LogisticRegression_01.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/formula/LogisticRegression_01.wmf -------------------------------------------------------------------------------- /formula/NeuralNetwork.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/formula/NeuralNetwork.wmf -------------------------------------------------------------------------------- /formula/PCA.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/formula/PCA.wmf -------------------------------------------------------------------------------- /formula/SVM.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/formula/SVM.wmf -------------------------------------------------------------------------------- /images/AnomalyDetection_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_01.png -------------------------------------------------------------------------------- /images/AnomalyDetection_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_02.png -------------------------------------------------------------------------------- /images/AnomalyDetection_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_03.png -------------------------------------------------------------------------------- /images/AnomalyDetection_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_04.png -------------------------------------------------------------------------------- /images/AnomalyDetection_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_05.png -------------------------------------------------------------------------------- /images/AnomalyDetection_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_06.png -------------------------------------------------------------------------------- /images/AnomalyDetection_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_07.png -------------------------------------------------------------------------------- /images/AnomalyDetection_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_08.png -------------------------------------------------------------------------------- /images/AnomalyDetection_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_09.png -------------------------------------------------------------------------------- /images/AnomalyDetection_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/AnomalyDetection_10.png -------------------------------------------------------------------------------- /images/K-Means_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/K-Means_01.png -------------------------------------------------------------------------------- /images/K-Means_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/K-Means_02.png -------------------------------------------------------------------------------- /images/K-Means_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/K-Means_03.png -------------------------------------------------------------------------------- /images/K-Means_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/K-Means_04.png -------------------------------------------------------------------------------- /images/K-Means_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/K-Means_05.png -------------------------------------------------------------------------------- /images/K-Means_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/K-Means_06.png -------------------------------------------------------------------------------- /images/K-Means_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/K-Means_07.png -------------------------------------------------------------------------------- /images/LinearRegression_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LinearRegression_01.png -------------------------------------------------------------------------------- /images/LogisticRegression_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_01.png -------------------------------------------------------------------------------- /images/LogisticRegression_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_02.png -------------------------------------------------------------------------------- /images/LogisticRegression_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_03.jpg -------------------------------------------------------------------------------- /images/LogisticRegression_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_04.png -------------------------------------------------------------------------------- /images/LogisticRegression_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_05.png -------------------------------------------------------------------------------- /images/LogisticRegression_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_06.png -------------------------------------------------------------------------------- /images/LogisticRegression_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_07.png -------------------------------------------------------------------------------- /images/LogisticRegression_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_08.png -------------------------------------------------------------------------------- /images/LogisticRegression_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_09.png -------------------------------------------------------------------------------- /images/LogisticRegression_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_10.png -------------------------------------------------------------------------------- /images/LogisticRegression_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_11.png -------------------------------------------------------------------------------- /images/LogisticRegression_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_12.png -------------------------------------------------------------------------------- /images/LogisticRegression_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/LogisticRegression_13.png -------------------------------------------------------------------------------- /images/NeuralNetwork_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_01.png -------------------------------------------------------------------------------- /images/NeuralNetwork_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_02.png -------------------------------------------------------------------------------- /images/NeuralNetwork_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_03.jpg -------------------------------------------------------------------------------- /images/NeuralNetwork_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_04.png -------------------------------------------------------------------------------- /images/NeuralNetwork_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_05.png -------------------------------------------------------------------------------- /images/NeuralNetwork_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_06.png -------------------------------------------------------------------------------- /images/NeuralNetwork_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_07.png -------------------------------------------------------------------------------- /images/NeuralNetwork_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_08.png -------------------------------------------------------------------------------- /images/NeuralNetwork_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/NeuralNetwork_09.png -------------------------------------------------------------------------------- /images/PCA_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_01.png -------------------------------------------------------------------------------- /images/PCA_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_02.png -------------------------------------------------------------------------------- /images/PCA_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_03.png -------------------------------------------------------------------------------- /images/PCA_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_04.png -------------------------------------------------------------------------------- /images/PCA_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_05.png -------------------------------------------------------------------------------- /images/PCA_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_06.png -------------------------------------------------------------------------------- /images/PCA_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_07.png -------------------------------------------------------------------------------- /images/PCA_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/PCA_08.png -------------------------------------------------------------------------------- /images/SVM_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_01.png -------------------------------------------------------------------------------- /images/SVM_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_02.png -------------------------------------------------------------------------------- /images/SVM_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_03.png -------------------------------------------------------------------------------- /images/SVM_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_04.png -------------------------------------------------------------------------------- /images/SVM_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_05.png -------------------------------------------------------------------------------- /images/SVM_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_06.png -------------------------------------------------------------------------------- /images/SVM_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_07.png -------------------------------------------------------------------------------- /images/SVM_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_08.png -------------------------------------------------------------------------------- /images/SVM_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_09.png -------------------------------------------------------------------------------- /images/SVM_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/images/SVM_10.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawlite19/MachineLearning_Python/HEAD/readme.md --------------------------------------------------------------------------------