Generalized linear models with nonlinear feature transformations are widely used for large-scale regression and classification problems with sparse in ...
分类:
其他好文 时间:
2017-08-08 15:23:30
阅读次数:
499
最近读code的一个感想,记录一下 ptb只有decode的过程,所以所有的状态的初始化都是0,同样img2txt也是只有decode的过程 textsum是个标准的encode和decode模型,同样imgtxt2txt也是encode和decode的结合 dynamic rnn的可以使每个bat ...
分类:
其他好文 时间:
2017-08-07 13:51:36
阅读次数:
215
Linux下操作 1. 将loss值存储到lossInf.txt中 2. Python画出loss曲线 ...
分类:
其他好文 时间:
2017-07-28 10:59:11
阅读次数:
113
1、l2_loss函数 tf.nn.l2_loss(t, name=None) 解释:这个函数的作用是利用 L2 范数来计算张量的误差值,但是没有开方并且只取 L2 范数的值的一半,具体如下: output = sum(t ** 2) / 2 2、tensorflow实现 输入参数: t: 一个Te ...
分类:
其他好文 时间:
2017-07-22 21:02:03
阅读次数:
124
A DataLoader wraps a Dataset and provides minibatching, shuffling, multithreading, for you。 ...
分类:
其他好文 时间:
2017-07-22 00:46:18
阅读次数:
495
Precision,准确率/查准率。Recall,召回率/查全率。这两个指标分别以两个角度衡量分类系统的准确率。 例如,有一个池塘,里面共有1000条鱼,含100条鲫鱼。机器学习分类系统将这1000条鱼全部分类为“不是鲫鱼”,那么准确率也有90%(显然这样的分类系统是失败的),然而查全率为0%,因为 ...
分类:
其他好文 时间:
2017-07-21 10:35:04
阅读次数:
872
题目描述 题目描述 题目描述 Farmer John suffered a terrible loss when giant Australian cockroaches ate the entirety of his hay inventory, leaving him with nothing ...
分类:
其他好文 时间:
2017-07-19 21:42:29
阅读次数:
178
本文讲解一些其它的常用层,包括:softmax_loss层,Inner Product层,accuracy层,reshape层和dropout层及其它们的参数配置。 1、softmax-loss softmax-loss层和softmax层计算大致是相同的。softmax是一个分类器,计算的是类别的 ...
分类:
其他好文 时间:
2017-07-17 11:12:58
阅读次数:
149
Former Inter defender Lucio has revealed how players had to avoid former Nerazzurri coach Mourinho every time the team suffered a defeat. The 37-year- ...
分类:
其他好文 时间:
2017-07-16 16:43:49
阅读次数:
204
《流畅的Python》这本书是图灵科技翻译出版的一本书,作者Luciano Ramalho。 作者从Python的特性角度出发,以Python的数据模型和特殊方法为主线,主要介绍了python的集合类型(sequence、mapping、set等)、把函数作为一等对象来使用、类的构建、新的文件控制流 ...
分类:
编程语言 时间:
2017-07-14 23:59:41
阅读次数:
568