Cost Function与Gradient Descent
1. 定义
为了在假设空间中选取最优的模型,引入了损失函数和风险函数,损失函数度量模型一次预测的好坏,风险函数度量了平均意义下模型预测的好坏。
在《统计学方法》一书中,作者将统计学算法表达为如下公式(1)
其中
按照我的理解:
Thanks 林肯先生
在next里写latex时发现渲染不出来,查找后发现是说node.js的渲染和markdown渲染的问题。操作半天也不得行。
但我发现我是什么公式也渲染不出来啊!后来在next的issue里面查找相关问题,发现得先在/themes/next/_config.yml里把third-party-services settings中的math设置为enable
1 | mathjax: |
感觉被自己蠢到了。
但是这样设置以后还是不行,参考了”林肯先生”的做法。
npm uninstall hexo-renderer-marked --save
//先删除原先的markdown渲染工具npm install hexo-renderer-kramed --save
//安装新的markdown渲染工具由于markdown在渲染时”_ “会被认为是下划线,和latex下标的操作一样,会先渲染markdown的,导致latex无法渲染,因此要在里面加\把_转义,到这个时候才和”林肯先生”的问题一样,我有点震惊。
1 | $R\_{m \times n} = U\_{m \times m} S\_{m \times n} V\_{n \times n}'$ |
很强,但是能用了,饿死了先去吃饭了,如果有哪位朋友知道这该怎么办,请告诉我一下。
The Hamming distance between two integers is the number of positions at which the corresponding bits are different.
Given two integers x
and y
, calculate the Hamming distance.
Note:
0 ≤ x
, y
< 231.
Example:
1 | Input: x = 1, y = 4 |