博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
机器学习基石 - Linear Regression
阅读量:4089 次
发布时间:2019-05-25

本文共 626 字,大约阅读时间需要 2 分钟。

(Machine Learning Foundations)—Mathematical Foundations

,副教授 (Associate Professor),资讯工程学系 (Computer Science and Information Engineering)

Linear Regression Problem

  • hypothesis: h(x)=wTx h ( x ) = w T x
  • find lines/hyperplanes with small residuals

Linear Regression Algorithm

  • Matrix Form of Ein(w) E i n ( w )

    这里写图片描述

  • find wLIN w L I N such that Ein(wLIN)=0 ∇ E i n ( w L I N ) = 0

    这里写图片描述

    这里写图片描述

  • 伪逆矩阵 pseudo-inverse

    这里写图片描述

    矩阵的平方展开、求导,抓住一个或一行的例子,纵观计算过程,推倒式子

Generalization Issue

  • hat matrix H=XX H = X X † , y^=Hy y ^ = H y

  • Geometric View of Hat Matrix

    这里写图片描述

    H H

    y
    投影到 y^ y ^

  • The Learning Curve

    这里写图片描述

    (平均情况)

Linear Regression for Binary Classification

  • 可以用回归的方法解决分类的问题
  • 这里写图片描述
你可能感兴趣的文章
比较strtr, str_replace和preg_replace三个函数的效率
查看>>
ubuntu 下编译PHP5.5.7问题:configure: error: freetype.h not found.
查看>>
PHP编译configure时常见错误 debian centos
查看>>
configure: error: Please reinstall the BZip2 distribution
查看>>
TortoiseGit常用操作
查看>>
进制转换
查看>>
IDEA常见操作
查看>>
Windows设置定时备份MySQL任务
查看>>
MySQL中的实数类型
查看>>
MySQL导入数据的方法小结
查看>>
MySQL问题小结
查看>>
MySQL的用法小结
查看>>
查看电脑开关机时间
查看>>
MyBatis打印SQL
查看>>
MyBatis常见问题
查看>>
SQL练习
查看>>
Java中==的使用
查看>>
刷题总结
查看>>
Java中Date类的使用
查看>>
MySQL的日期操作
查看>>