摘要:
https://www.nowcoder.com/discuss/102895?type=0&order=0&pos=6&page=1 https://www.cnblogs.com/huanyi0723/p/8470866.html https://www.jianshu.com/p/99e8f2 阅读全文
摘要:
http://www.cnblogs.com/gujianhan/p/6030639.html CNN能够对图片进行分类,可是怎么样才能识别图片中特定部分的物体? (图像语义分割) FCN(Fully Convolutional Networks)对图像进行像素级的分类,从而解决了语义级别的图像分割 阅读全文
摘要:
共轭复数: 一个复数 的复共轭为: 矩阵 $A$ 的共轭转置 $A^*$(又称埃尔米特共轭、埃尔米特转置)定义为: 其中 $(\cdot )_{i,j}$表示矩阵i行j列上的元素, ${\bar{(\cdot )}}$ 表示标量的复共轭。 这一定义也可以写作: 其中 $A^T$ 是矩阵A的转置, $ 阅读全文
摘要:
当前子树的损失函数: $C_a(T) = C(T) + a|T|$, 其中$C(T)$为对训练数据的预测误差,$|T|$为树的叶子结点数目,反映模型的复杂度。对固定的$a$,一定存在使损失函数$C_a(T)$最小的子树,将其表示为$T_a$, 极端情况,当 $a = 0$时,整体树是最优的,当$a 阅读全文
摘要:
Latent semantic analysis (LSA) is a technique in natural language processing, in particular distributional semantics, of analyzing relationships betwe 阅读全文
摘要:
Implement C++ Class The C++ class of the layer implements the initialization, forward, and backward part of the layer. It needs to derive the base cla 阅读全文
摘要:
阅读全文
摘要:
Recurrent Neural Networks Recurrent neural networks are networks with loops in them, allowing information to persist. A recurrent neural network can b 阅读全文
摘要:
http://www.win-vector.com/dfiles/LogisticRegressionMaxEnt.pdf https://www.zhihu.com/question/24094554 $\pi(x(i))_v$ 表示模型输出的样本$x_i$属于类别$v$的概率 对于多类分类: 表 阅读全文