Machine Learning Course Notes (1)

Machine Learning Course Notes

——Wu Enda Machine Learning Course Notes

Link: Andrew Ng Machine Learning (YouTube)

first lesson

Supervised Learning:

example:

  1. regression problem
    Please add a picture description
  2. classification problem
    Please add a picture description
    Please add a picture description

definition:

give out the right answer according to the given data and the given right answer.

  • Regression: predict continuous valued output
  • Classification: discrete valued output(0 or 1…)

Unsupervised Learning:

example:

cluster algorithm
Please add a picture description

definition:

classify different types automatically according to the given data.

Second lesson

Linear Regression

supervised learning — regression

  1. question:
    Please add a picture description
  2. solution:
    Please add a picture description
  3. key:
    Please add a picture description
  4. simplify:
    Please add a picture description
  5. minimize:
    single:
    Please add a picture description
    multiple:
    Please add a picture description
    Please add a picture description

Lesson Three

Gradient Descent

Function:

minimize the cost function J — general measure

Theory:

find out the local minimum
Please add a picture description

example:

Please add a picture description

Combination — linear regression algorithm:

Please add a picture description
Please add a picture description

Guess you like

Origin blog.csdn.net/m0_65591847/article/details/126329035