diff --git a/README.md b/README.md index 592e299..3398302 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,24 @@ __Instructor__: Andrew Ng. ## Week 1 +### Quizzes +- [Introduction](week1/introduction.pdf) +- [Linear Regression With One Variable](week1/linear-regression-one-variable.pdf) +- [Linear Algebra](week1/linear-agebra.pdf) ## Week 2 +### Quizzes +- [Linear Regression With Multiple Variables](week2/linear-regression-multiple-variables.pdf) +- [Octave/Matlab Tutorial](week2/octave-matlab-tutoria.pdf) + +### Programming Exercises +- [Questions and Explanation](week2/ex1.pdf) +- [Exercise 1](week2/ex1) + - [Warm Up Exercise](week2/ex1/warmUpExercise.m) + - [Compute Cost for One Variable](week2/ex1/computeCost.m) + - [Compute Cost For Multiple Variables](week2/ex1/computeCostMulti.m) + - [Gradient Descent For One Variable](week2/ex1/gradientDescent.m) + - [Gradient Descent For Multiple Variables](week2/ex1/gradientDescentMulti.m) ## Week 3 ### Quizzes @@ -11,3 +27,16 @@ __Instructor__: Andrew Ng. - [Regularization](week3/regularization-quiz.md) ### Programming Exercises +- [Questions](week3/ex2.pdf) +- [Exercise 2](week3/ex2) + - [Sigmoid Function](week3/ex2/sigmoid.m) + - [Logistic Regression Cost](week3/ex2/costFunction.m) + - [Logistic Regression Gradient](week3/ex2/costFunction.m) + - [Regularized Logistic Regression Cost](week3/ex2/costFunctionReg.m) + - [Regularized Logistic Regression Gradient](week3/ex2/costFunctionReg.m) + - [Predict](week3/ex2/predict.m) + +## Week 4 +### Quizzes + +### Programming Exercises diff --git a/week1/introduction.pdf b/week1/introduction.pdf new file mode 100644 index 0000000..ab34736 Binary files /dev/null and b/week1/introduction.pdf differ diff --git a/week1/linear-agebra.pdf b/week1/linear-agebra.pdf new file mode 100644 index 0000000..4cafbf1 Binary files /dev/null and b/week1/linear-agebra.pdf differ diff --git a/week1/linear-regression-one-variable.pdf b/week1/linear-regression-one-variable.pdf new file mode 100644 index 0000000..c87cb31 Binary files /dev/null and b/week1/linear-regression-one-variable.pdf differ diff --git a/week2/ex1.pdf b/week2/ex1.pdf new file mode 100644 index 0000000..dda3e96 Binary files /dev/null and b/week2/ex1.pdf differ diff --git a/week2/linear-regression-multiple-variables.pdf b/week2/linear-regression-multiple-variables.pdf new file mode 100644 index 0000000..3b8f403 Binary files /dev/null and b/week2/linear-regression-multiple-variables.pdf differ diff --git a/week2/octave-matlab-tutoria.pdf b/week2/octave-matlab-tutoria.pdf new file mode 100644 index 0000000..d8b1a67 Binary files /dev/null and b/week2/octave-matlab-tutoria.pdf differ diff --git a/week3/ex2.pdf b/week3/ex2.pdf new file mode 100644 index 0000000..225fce4 Binary files /dev/null and b/week3/ex2.pdf differ diff --git a/week1/introduction-quiz.md b/week4/neural-networks.m similarity index 100% rename from week1/introduction-quiz.md rename to week4/neural-networks.m