美文网首页
17.大量数据机器学习(Large scale machine

17.大量数据机器学习(Large scale machine

作者: justinwei | 来源:发表于2019-03-28 19:11 被阅读0次

第10周 Lecture 17 大量数据机器学习

  1. 随机梯度下降(stochastic gradient descent)
    步骤:
    a.)训练数据重新随机排列(Randomly shuffle(reorder) training examples)
    b.) 算法描述
    cost(\theta, (x^{(i)}, y^{(i)}))=\frac12(h_\theta(x^{(i)})-y^{(i)})^2
    J_{train}(\theta) = \frac1{2m}\sum_{i=1}^m(h_\theta(x^{(i)})-y^{(i)})^2
    Repeat \{ //1 - 10 次
    \ \ \ \ \ \ \ \ \ for \ i:=1,...,m \ \{
    \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \theta_j := \theta_j - \alpha(h_\theta(x^{(i)}-y^{(i)})x_j^{(i)} // (for every j=0, ...,n)
    \ \ \ \ \ \ \ \ \ \ \}
    \ \ \ \}
    和正常的梯度下降比起来,下降是随机的,但是最后还是可以到最低点,但这个不需要每下降一步都对所有训练数据重新计算,所以速度会快很多。
    image.png

c.) 对比批量梯度下降(batch gradient descent)
J_{train}(\theta) = \frac1{2m}\sum_{i=1}^m(h_\theta(x^{(i)})-y^{(i)})^2
Repeat \{
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \theta_j := \theta_j - \alpha \frac1m\sum_{i=1}^m(h_\theta(x^{(i)})-y^{(i)})x_j^{(i)} // (for every j=0, ...,n)
\ \ \}

  1. 小批量梯度下降(Mini gradient descent)
  • Batch gradient descent: 每一步使用所有的训练集
  • stochastic gradient descent: 每一步使用1个训练集
  • Mini gradient descent: 每一步使用b个训练集
    算法描述:
    假设 b = 10 , m = 1000,
    Repeat \{
    \ \ \ \ \ \ \ \ \ for \ i:=1,...,991 \ \{
    \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \theta_j := \theta_j - \alpha \frac1{10}\sum_{k=i}^{i+9}(h_\theta(x^{(k)}-y^{(k)})x_j^{(k)} // (for every j=0, ...,n)
    \ \ \ \ \ \ \ \ \ \ \}
    \ \ \}
  1. 随机梯度算法如何知道在收敛
  • 建议每1000次,计算一次代价函数,画出曲线,是否收敛
  • 随着运算次数,减少学习率(\alpha),例如\alpha = \frac{const1}{步数+const2}
    image.png
  1. 在线学习(online learning)
  • 每天的数据都比较大,按每天的数据重新计算
  • CTR 点击率预测学习 learning the predict


    image.png
    image.png
  1. Map-reduce and data parallelism
    把数据分在不同的机器同时进行计算,完成计算后,再求和
    例如对于梯度下降
    m = 400
    \theta_j := \theta_j - \alpha \frac1{400}\sum_{i=1}^{400}(h_\theta(x^{(i)})-y^{(i)})x_j^{(i)}
    把400条数据分成4份,每份100条,分在4台机器同时运行,4台完成后,再求和。只要算法可以拆分
    其中对于机器1
    temp_j^{(1)} = \sum_{i=1}^{100}(h_\theta(x^{(i)})-y^{(i)})x_j^{(i)}
    temp_j^{(2)}= \sum_{i=101}^{200}(h_\theta(x^{(i)})-y^{(i)})x_j^{(i)}
    temp_j^{(3)}= \sum_{i=201}^{300}(h_\theta(x^{(i)})-y^{(i)})x_j^{(i)}
    temp_j^{(4)}= \sum_{i=301}^{400}(h_\theta(x^{(i)})-y^{(i)})x_j^{(i)}
    合并后
    \theta_j := \theta_j - \alpha \frac1{400}(temp_j^{(1)} +temp_j^{(2)} +temp_j^{(3)} +temp_j^{(4)} )
    image.png

相关文章

网友评论

      本文标题:17.大量数据机器学习(Large scale machine

      本文链接:https://www.haomeiwen.com/subject/huucbqtx.html