码迷,mamicode.com
首页 >  
搜索关键字:deep    ( 1999个结果
Serializable Clonable
序列化机制有一种很有趣的用法:可以方便的克隆对象,只要对应的类是可序列化的即可。操作流程:直接将对象序列化到输出流中,然后将其读回。这样产生的新对象是对现有对象的一个深拷贝(deep copy)。在此过程中,不需要将对象写出到文件中,因为可以用ByteArrayOutputStream将数据保存到字...
分类:其他好文   时间:2015-07-10 02:10:32    阅读次数:129
神经网络特征可视化
1. visualizing higher-layer features of a deep network 本文提出了两种可视化方法。  1. 最大化activation 当训练完一个深层神经网络之后, 固定所有参数。 然后对于某一个神经元的activation进行梯度上升优化来寻找能使它的值最大化的input。 不断的用gradient ascent来更新一个初始化为random...
分类:其他好文   时间:2015-07-09 22:43:05    阅读次数:219
[Fri 26 Jun 2015 ~ Thu 2 Jul 2015] Deep Learning in arxiv
Natural Neural Networks Google DeepMind又一神作 Projected Natural Gradient Descent algorithm (PRONG) better than SGD as evidenced by the boost in performance offered by batch normalization (BN) Dee...
分类:其他好文   时间:2015-07-08 14:43:35    阅读次数:136
Deep Learning for Nature Language Processing --- 第四讲(下)
A note on matrix implementations将J对softmax的权重W和每个word vector进行求导:尽量使用矩阵运算(向量化),不要使用for loop。模型训练中有两个开销比较大的运算:矩阵乘法f=Wx和指数函数expSoftmax(=logistic regression) is not very powerfulsoftmax只是在原来的向量空间中给出了一些lin...
分类:其他好文   时间:2015-07-04 22:20:10    阅读次数:283
Awesome Deep Vision
Awesome Deep VisionA curated list of deep learning resources for computer vision, inspired byawesome-phpandawesome-computer-vision.Maintainers -Jiwon ...
分类:其他好文   时间:2015-07-03 21:53:37    阅读次数:1261
stanford推荐阅读目录
stanford推荐阅读目录stanford deep learning 网站上推荐的阅读目录:UFLDL Recommended ReadingsIf you're learning about UFLDL (Unsupervised Feature Learning and Deep Learn...
分类:其他好文   时间:2015-07-03 19:04:25    阅读次数:178
Reducing the Dimensionality of data with neural networks / A fast learing algorithm for deep belief net
Deeplearning原文作者Hinton代码注解 1 Matlab示例代码为两部分,分别对应不同的论文: 2 3 1. Reducing the Dimensionality of data with neural networks 4 5 ministdeepauto.m ...
分类:Web程序   时间:2015-07-03 18:56:31    阅读次数:207
PHP 开放JSON格式接口实例
转化JSON文件 1000) { die('possible deep recursion attack'); } foreach ($array as $key => $value) { if (is_array($value)) { ...
分类:Web程序   时间:2015-07-02 09:52:13    阅读次数:364
Deep Learning方向的paper
转载http://hi.baidu.com/chb_seaok/item/6307c0d0363170e73cc2cb65个人阅读的Deep Learning方向的paper整理,分了几部分吧,但有些部分是有交叉或者内容重叠,也不必纠结于这属于DNN还是CNN之类,个人只是大致分了个类。目前只整理了...
分类:其他好文   时间:2015-07-01 22:02:46    阅读次数:181
[Fri 19 Jun 2015 ~ Thu 25 Jun 2015] Deep Learning in arxiv
matchnet, deep visualization...
分类:其他好文   时间:2015-07-01 16:01:10    阅读次数:431
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!