├── Exercise1 ├── ex1.py ├── ex1_multi.py ├── ex1data1.txt └── ex1data2.txt ├── Exercise2 ├── ex2.py ├── ex2_reg.py ├── ex2data1.txt └── ex2data2.txt ├── Exercise3 ├── ex3.py ├── ex3_nn.py ├── ex3data1.mat └── ex3weights.mat ├── Exercise4 ├── ex4.py ├── ex4data1.mat ├── ex4weights.mat └── test.py ├── Exercise5 ├── ex5.py └── ex5data1.mat ├── Exercise6 ├── ex6.py ├── ex6data1.mat ├── ex6data2.mat └── ex6data3.mat ├── Exercise7 ├── bird_small.png ├── ex7.py ├── ex7_pca.py ├── ex7data1.mat ├── ex7data2.mat └── ex7faces.mat ├── Exercise8 ├── ex8.py ├── ex8_cofi.py ├── ex8_movieParams.mat ├── ex8_movies.mat ├── ex8data1.mat ├── ex8data2.mat └── movie_ids.txt └── README.md /Exercise1/ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise1/ex1.py -------------------------------------------------------------------------------- /Exercise1/ex1_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise1/ex1_multi.py -------------------------------------------------------------------------------- /Exercise1/ex1data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise1/ex1data1.txt -------------------------------------------------------------------------------- /Exercise1/ex1data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise1/ex1data2.txt -------------------------------------------------------------------------------- /Exercise2/ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise2/ex2.py -------------------------------------------------------------------------------- /Exercise2/ex2_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise2/ex2_reg.py -------------------------------------------------------------------------------- /Exercise2/ex2data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise2/ex2data1.txt -------------------------------------------------------------------------------- /Exercise2/ex2data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise2/ex2data2.txt -------------------------------------------------------------------------------- /Exercise3/ex3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise3/ex3.py -------------------------------------------------------------------------------- /Exercise3/ex3_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise3/ex3_nn.py -------------------------------------------------------------------------------- /Exercise3/ex3data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise3/ex3data1.mat -------------------------------------------------------------------------------- /Exercise3/ex3weights.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise3/ex3weights.mat -------------------------------------------------------------------------------- /Exercise4/ex4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise4/ex4.py -------------------------------------------------------------------------------- /Exercise4/ex4data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise4/ex4data1.mat -------------------------------------------------------------------------------- /Exercise4/ex4weights.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise4/ex4weights.mat -------------------------------------------------------------------------------- /Exercise4/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise4/test.py -------------------------------------------------------------------------------- /Exercise5/ex5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise5/ex5.py -------------------------------------------------------------------------------- /Exercise5/ex5data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise5/ex5data1.mat -------------------------------------------------------------------------------- /Exercise6/ex6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise6/ex6.py -------------------------------------------------------------------------------- /Exercise6/ex6data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise6/ex6data1.mat -------------------------------------------------------------------------------- /Exercise6/ex6data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise6/ex6data2.mat -------------------------------------------------------------------------------- /Exercise6/ex6data3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise6/ex6data3.mat -------------------------------------------------------------------------------- /Exercise7/bird_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise7/bird_small.png -------------------------------------------------------------------------------- /Exercise7/ex7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise7/ex7.py -------------------------------------------------------------------------------- /Exercise7/ex7_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise7/ex7_pca.py -------------------------------------------------------------------------------- /Exercise7/ex7data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise7/ex7data1.mat -------------------------------------------------------------------------------- /Exercise7/ex7data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise7/ex7data2.mat -------------------------------------------------------------------------------- /Exercise7/ex7faces.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise7/ex7faces.mat -------------------------------------------------------------------------------- /Exercise8/ex8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise8/ex8.py -------------------------------------------------------------------------------- /Exercise8/ex8_cofi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise8/ex8_cofi.py -------------------------------------------------------------------------------- /Exercise8/ex8_movieParams.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise8/ex8_movieParams.mat -------------------------------------------------------------------------------- /Exercise8/ex8_movies.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise8/ex8_movies.mat -------------------------------------------------------------------------------- /Exercise8/ex8data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise8/ex8data1.mat -------------------------------------------------------------------------------- /Exercise8/ex8data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise8/ex8data2.mat -------------------------------------------------------------------------------- /Exercise8/movie_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/Exercise8/movie_ids.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AceCoooool/ML-Andrew-Ng/HEAD/README.md --------------------------------------------------------------------------------