前言

这段时间看了coursera上面

1
机器学习基石
这门课程的相关内容,在这里留下一些记录

第一课: The Learning Problem

机器学习是一个非常强大的工具,但是其基础在哪里,我们还要再问几个问题:

  • When Can Machines Learn? (illustrative + technical)
  • Why Can Machines Learn? (theoretical + illustrative)
  • How Can Machines Learn? (technical + practical)
  • How Can Machines Learn Better? (practical + theoretical)

这个课程将围绕解释上面这几个问题展开

Google Doc上第一课的PPT

第一课主要解释了机器学习这个课程将要介绍的内容以及对机器学习进行了简单的建模.
这里主要是下面这一个图:

这个图主要阐述了下面几个内容:

  • input: (customer application)
  • output: (good/bad after approving credit card)
  • unknown pattern to be learned = target function:
    • (ideal credit approval formula)
  • data = training examples: (historical records in bank)
  • hypothesis = skill with hopefully good performance:
    • (‘learned’ formula to be used)
  • target f unknown
  • hypothesis g hopefully f, but possibly different from f, (perfection ‘impossible’ when f unknown)
  • assume
  • hypothesis set H:
    • can contain good or bad hypotheses
    • up to A to pick the ‘best’ one as g

这个图总的来说就是描述了机器学习的模型,从数据到g函数,也就是对于f的猜想.中间的学习模型就是AH.

  • 最后总结起来就是:
    1
    machine learning
    
    : use data to compute hypothesis g that approximates target f