ex5 Coursera Machine-Learning exercise5 课后题答案 jupyter/python 版本 Andrew ng 吴恩达

吴恩达Machine-Learning 课后练习jupyter版本答案 exercise5(系列持续更新)
答案链接:exercise5
https://github.com/NealChalmers/Stanford-CS229-ML-AndrewNg/tree/master/Exercise5
谢谢你的star

Introduction¶
In this exercise, you will implement regularized linear regression and use it to study models with different bias-variance properties. Before starting on the programming exercise, we strongly recommend watching the video lectures and completing the review questions for the associated topics.

All the information you need for solving this assignment is in this notebook, and all the code you will be implementing will take place within this notebook. The assignment can be promptly submitted to the coursera grader directly from this notebook (code and instructions are included below).

Before we begin with the exercises, we need to import all libraries required for this programming exercise. Throughout the course, we will be using numpy for all arrays and matrix operations, matplotlib for plotting, and scipy for scientific and numerical computation functions and tools. You can find instructions on how to install required libraries in the README file in the github repository.

Submission and Grading
After completing each part of the assignment, be sure to submit your solutions to the grader. The following is a breakdown of how each part of this exercise is scored.

Section Part Submitted Function Points
1 Regularized Linear Regression Cost Function linearRegCostFunction 25
2 Regularized Linear Regression Gradient linearRegCostFunction 25
3 Learning Curve learningCurve 20
4 Polynomial Feature Mapping polyFeatures 10
5 Cross Validation Curve validationCurve 20
Total Points 100
You are allowed to submit your solutions multiple times, and we will take only the highest score into consideration.

你可能感兴趣的:(ex5 Coursera Machine-Learning exercise5 课后题答案 jupyter/python 版本 Andrew ng 吴恩达)