├── .gitattributes ├── AI_Lecture1.pdf ├── AI_Lecture10.pdf ├── AI_Lecture11.pdf ├── AI_Lecture12.pdf ├── AI_Lecture13.pdf ├── AI_Lecture14.pdf ├── AI_Lecture2.pdf ├── AI_Lecture3.pdf ├── AI_Lecture4.pdf ├── AI_Lecture5.pdf ├── AI_Lecture6.pdf ├── AI_Lecture7.pdf ├── AI_Lecture8.pdf ├── AI_Lecture9.pdf ├── README.md ├── homework ├── ex1 │ ├── .idea │ │ ├── dictionaries │ │ │ └── .xml │ │ ├── ex1.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── __pycache__ │ │ └── linear_regression.cpython-37.pyc │ ├── ex1.pdf │ ├── ex1data1.txt │ ├── ex1data2.txt │ ├── explanation.jpg │ ├── linear_regression.py │ ├── linear_regression_with_multiple_variables.py │ └── test.py ├── ex2 │ ├── .idea │ │ ├── dictionaries │ │ │ └── .xml │ │ ├── ex2.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── Logistic_Regression.py │ ├── Logistic_Regression_Regularized.py │ ├── Logistic_Regression_Regularlized_Correct.py │ ├── __pycache__ │ │ └── Logistic_Regression.cpython-37.pyc │ ├── ex2.pdf │ ├── ex2data1.txt │ ├── ex2data2.txt │ └── test.py ├── ex3 │ ├── .idea │ │ ├── GrepConsole.xml │ │ ├── dictionaries │ │ │ └── .xml │ │ ├── ex3.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Multi-class Classification and Neural Networks.py │ ├── ex3.pdf │ ├── ex3data1.mat │ └── ex3weights.mat ├── ex4 │ ├── .idea │ │ ├── .gitignore │ │ ├── dictionaries │ │ │ └── .xml │ │ ├── ex4.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── ex4.pdf │ ├── ex4.py │ ├── ex4data1.mat │ ├── ex4weights.mat │ ├── gradient_check.png │ └── part1.png ├── ex5 │ ├── .idea │ │ ├── .gitignore │ │ ├── dictionaries │ │ │ └── .xml │ │ ├── ex5.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── ex5.pdf │ ├── ex5.py │ └── ex5data1.mat ├── ex6 │ ├── .idea │ │ ├── .gitignore │ │ ├── dictionaries │ │ │ └── .xml │ │ ├── ex6.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── SpamClassification.py │ ├── emailSample1.txt │ ├── emailSample2.txt │ ├── ex6.pdf │ ├── ex6.py │ ├── ex6data1.mat │ ├── ex6data2.mat │ ├── ex6data3.mat │ ├── spamSample1.txt │ ├── spamSample2.txt │ ├── spamTest.mat │ ├── spamTrain.mat │ ├── test.py │ └── vocab.txt └── ex7 │ ├── .idea │ ├── .gitignore │ ├── ex7.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ ├── Kmeans.py │ ├── bird_small.mat │ ├── bird_small.png │ ├── ex7.pdf │ ├── ex7data1.mat │ ├── ex7data2.mat │ └── ex7faces.mat └── 算法.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/.gitattributes -------------------------------------------------------------------------------- /AI_Lecture1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture1.pdf -------------------------------------------------------------------------------- /AI_Lecture10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture10.pdf -------------------------------------------------------------------------------- /AI_Lecture11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture11.pdf -------------------------------------------------------------------------------- /AI_Lecture12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture12.pdf -------------------------------------------------------------------------------- /AI_Lecture13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture13.pdf -------------------------------------------------------------------------------- /AI_Lecture14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture14.pdf -------------------------------------------------------------------------------- /AI_Lecture2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture2.pdf -------------------------------------------------------------------------------- /AI_Lecture3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture3.pdf -------------------------------------------------------------------------------- /AI_Lecture4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture4.pdf -------------------------------------------------------------------------------- /AI_Lecture5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture5.pdf -------------------------------------------------------------------------------- /AI_Lecture6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture6.pdf -------------------------------------------------------------------------------- /AI_Lecture7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture7.pdf -------------------------------------------------------------------------------- /AI_Lecture8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture8.pdf -------------------------------------------------------------------------------- /AI_Lecture9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/AI_Lecture9.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Machine Learning WuEnda 2 | 3 | 主页AI_LectureX是对应章节的pdf笔记 4 | 子文件夹homework下是对应的练习题以及python代码实现,欢迎pull request 5 | -------------------------------------------------------------------------------- /homework/ex1/.idea/dictionaries/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/.idea/dictionaries/.xml -------------------------------------------------------------------------------- /homework/ex1/.idea/ex1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/.idea/ex1.iml -------------------------------------------------------------------------------- /homework/ex1/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /homework/ex1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/.idea/misc.xml -------------------------------------------------------------------------------- /homework/ex1/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/.idea/modules.xml -------------------------------------------------------------------------------- /homework/ex1/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/.idea/workspace.xml -------------------------------------------------------------------------------- /homework/ex1/__pycache__/linear_regression.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/__pycache__/linear_regression.cpython-37.pyc -------------------------------------------------------------------------------- /homework/ex1/ex1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/ex1.pdf -------------------------------------------------------------------------------- /homework/ex1/ex1data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/ex1data1.txt -------------------------------------------------------------------------------- /homework/ex1/ex1data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/ex1data2.txt -------------------------------------------------------------------------------- /homework/ex1/explanation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/explanation.jpg -------------------------------------------------------------------------------- /homework/ex1/linear_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/linear_regression.py -------------------------------------------------------------------------------- /homework/ex1/linear_regression_with_multiple_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/linear_regression_with_multiple_variables.py -------------------------------------------------------------------------------- /homework/ex1/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex1/test.py -------------------------------------------------------------------------------- /homework/ex2/.idea/dictionaries/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/.idea/dictionaries/.xml -------------------------------------------------------------------------------- /homework/ex2/.idea/ex2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/.idea/ex2.iml -------------------------------------------------------------------------------- /homework/ex2/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /homework/ex2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/.idea/misc.xml -------------------------------------------------------------------------------- /homework/ex2/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/.idea/modules.xml -------------------------------------------------------------------------------- /homework/ex2/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/.idea/workspace.xml -------------------------------------------------------------------------------- /homework/ex2/Logistic_Regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/Logistic_Regression.py -------------------------------------------------------------------------------- /homework/ex2/Logistic_Regression_Regularized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/Logistic_Regression_Regularized.py -------------------------------------------------------------------------------- /homework/ex2/Logistic_Regression_Regularlized_Correct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/Logistic_Regression_Regularlized_Correct.py -------------------------------------------------------------------------------- /homework/ex2/__pycache__/Logistic_Regression.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/__pycache__/Logistic_Regression.cpython-37.pyc -------------------------------------------------------------------------------- /homework/ex2/ex2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/ex2.pdf -------------------------------------------------------------------------------- /homework/ex2/ex2data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/ex2data1.txt -------------------------------------------------------------------------------- /homework/ex2/ex2data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/ex2data2.txt -------------------------------------------------------------------------------- /homework/ex2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex2/test.py -------------------------------------------------------------------------------- /homework/ex3/.idea/GrepConsole.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/GrepConsole.xml -------------------------------------------------------------------------------- /homework/ex3/.idea/dictionaries/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/dictionaries/.xml -------------------------------------------------------------------------------- /homework/ex3/.idea/ex3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/ex3.iml -------------------------------------------------------------------------------- /homework/ex3/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /homework/ex3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/misc.xml -------------------------------------------------------------------------------- /homework/ex3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/modules.xml -------------------------------------------------------------------------------- /homework/ex3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/ex3/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/.idea/workspace.xml -------------------------------------------------------------------------------- /homework/ex3/Multi-class Classification and Neural Networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/Multi-class Classification and Neural Networks.py -------------------------------------------------------------------------------- /homework/ex3/ex3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/ex3.pdf -------------------------------------------------------------------------------- /homework/ex3/ex3data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/ex3data1.mat -------------------------------------------------------------------------------- /homework/ex3/ex3weights.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex3/ex3weights.mat -------------------------------------------------------------------------------- /homework/ex4/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /homework/ex4/.idea/dictionaries/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/.idea/dictionaries/.xml -------------------------------------------------------------------------------- /homework/ex4/.idea/ex4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/.idea/ex4.iml -------------------------------------------------------------------------------- /homework/ex4/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /homework/ex4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/.idea/misc.xml -------------------------------------------------------------------------------- /homework/ex4/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/.idea/modules.xml -------------------------------------------------------------------------------- /homework/ex4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/ex4/ex4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/ex4.pdf -------------------------------------------------------------------------------- /homework/ex4/ex4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/ex4.py -------------------------------------------------------------------------------- /homework/ex4/ex4data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/ex4data1.mat -------------------------------------------------------------------------------- /homework/ex4/ex4weights.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/ex4weights.mat -------------------------------------------------------------------------------- /homework/ex4/gradient_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/gradient_check.png -------------------------------------------------------------------------------- /homework/ex4/part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex4/part1.png -------------------------------------------------------------------------------- /homework/ex5/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /homework/ex5/.idea/dictionaries/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/.idea/dictionaries/.xml -------------------------------------------------------------------------------- /homework/ex5/.idea/ex5.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/.idea/ex5.iml -------------------------------------------------------------------------------- /homework/ex5/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /homework/ex5/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/.idea/misc.xml -------------------------------------------------------------------------------- /homework/ex5/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/.idea/modules.xml -------------------------------------------------------------------------------- /homework/ex5/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/ex5/ex5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/ex5.pdf -------------------------------------------------------------------------------- /homework/ex5/ex5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/ex5.py -------------------------------------------------------------------------------- /homework/ex5/ex5data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex5/ex5data1.mat -------------------------------------------------------------------------------- /homework/ex6/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /homework/ex6/.idea/dictionaries/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/.idea/dictionaries/.xml -------------------------------------------------------------------------------- /homework/ex6/.idea/ex6.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/.idea/ex6.iml -------------------------------------------------------------------------------- /homework/ex6/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /homework/ex6/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/.idea/misc.xml -------------------------------------------------------------------------------- /homework/ex6/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/.idea/modules.xml -------------------------------------------------------------------------------- /homework/ex6/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/ex6/SpamClassification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/SpamClassification.py -------------------------------------------------------------------------------- /homework/ex6/emailSample1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homework/ex6/emailSample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/emailSample2.txt -------------------------------------------------------------------------------- /homework/ex6/ex6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/ex6.pdf -------------------------------------------------------------------------------- /homework/ex6/ex6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/ex6.py -------------------------------------------------------------------------------- /homework/ex6/ex6data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/ex6data1.mat -------------------------------------------------------------------------------- /homework/ex6/ex6data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/ex6data2.mat -------------------------------------------------------------------------------- /homework/ex6/ex6data3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/ex6data3.mat -------------------------------------------------------------------------------- /homework/ex6/spamSample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/spamSample1.txt -------------------------------------------------------------------------------- /homework/ex6/spamSample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/spamSample2.txt -------------------------------------------------------------------------------- /homework/ex6/spamTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/spamTest.mat -------------------------------------------------------------------------------- /homework/ex6/spamTrain.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/spamTrain.mat -------------------------------------------------------------------------------- /homework/ex6/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/test.py -------------------------------------------------------------------------------- /homework/ex6/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex6/vocab.txt -------------------------------------------------------------------------------- /homework/ex7/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /homework/ex7/.idea/ex7.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/.idea/ex7.iml -------------------------------------------------------------------------------- /homework/ex7/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /homework/ex7/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/.idea/misc.xml -------------------------------------------------------------------------------- /homework/ex7/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/.idea/modules.xml -------------------------------------------------------------------------------- /homework/ex7/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/ex7/Kmeans.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homework/ex7/bird_small.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/bird_small.mat -------------------------------------------------------------------------------- /homework/ex7/bird_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/bird_small.png -------------------------------------------------------------------------------- /homework/ex7/ex7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/ex7.pdf -------------------------------------------------------------------------------- /homework/ex7/ex7data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/ex7data1.mat -------------------------------------------------------------------------------- /homework/ex7/ex7data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/ex7data2.mat -------------------------------------------------------------------------------- /homework/ex7/ex7faces.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Currycomb/Machine-Learning-WuEnda/HEAD/homework/ex7/ex7faces.mat -------------------------------------------------------------------------------- /算法.txt: -------------------------------------------------------------------------------- 1 | 1.梯度下降算法 2 | 2.正规方程算法 --------------------------------------------------------------------------------