. 全连层 每个神经元输入: 每个神经元输出: (通过一个激活函数) 2. RNN(Recurrent Neural Network) 与传统的神经网络不通,RNN与时间有关。 3. LSTM(Long Short-Term Memory 长短期记忆) 作者:farmerspring 来源:CNBL ...
分类:
其他好文 时间:
2019-11-18 21:57:57
阅读次数:
85
深度学习——分类之ResNeXt 论文:Aggregated Residual Transformations for Deep Neural Networks 作者:Saining Xie, Ross Girshick, Piotr Dollár, Zhuowen Tu, Kaiming He I ...
分类:
其他好文 时间:
2019-11-18 15:35:52
阅读次数:
82
1,A Neural Algorithm of atistic Style https://axiv.org/pdf/1508.06576.pdf 如何定义图片的内容,风格: 定义内容:在vggnet上,较低的层更注重图片局部的细节,较高的层更注重全局,将vgg关键层的feature 作为图片内容 ...
分类:
其他好文 时间:
2019-11-17 16:13:25
阅读次数:
56
毕设进了图网络的坑,感觉有点难,一点点慢慢学吧,本文方法是《Rethinking Table Recognition using Graph Neural Networks》中关系建模环节中的主要方法。 ## 概述 本文是对经典的PointNet进行改进,主要目标是设计一个可以直接使用点云作为输入的 ...
分类:
其他好文 时间:
2019-11-16 01:00:02
阅读次数:
367
原文地址:https://blog.csdn.net/happyrocking/article/details/83657993 RNN(Recurrent Neural Network)是一类用于处理序列数据的神经网络。什么是序列呢?序列是一串有顺序的数据,比如某一条数据为 [x1,x2,x3,x ...
分类:
其他好文 时间:
2019-11-14 18:11:22
阅读次数:
80
论文通过实现RNN来完成了文本分类。 论文地址:88888888 模型结构图: 原理自行参考论文,code and comment: 1 # -*- coding: utf-8 -*- 2 # @time : 2019/11/9 15:12 3 4 import numpy as np 5 impo ...
分类:
编程语言 时间:
2019-11-09 17:51:24
阅读次数:
99
论文 《 Convolutional Neural Networks for Sentence Classification》通过CNN实现了文本分类。 论文地址: 666666 模型图: 模型解释可以看论文,给出code and comment: 1 # -*- coding: utf-8 -*- ...
分类:
Web程序 时间:
2019-11-09 15:57:40
阅读次数:
204
论文地址:http://www.iro.umontreal.ca/~vincentp/Publications/lm_jmlr.pdf 论文给出了NNLM的框架图: 针对论文,实现代码如下: 1 # -*- coding: utf-8 -*- 2 # @time : 2019/10/26 12:20 ...
分类:
其他好文 时间:
2019-11-09 13:35:39
阅读次数:
119
Paper [1]: White-box neural network attack, adversaries have full access to the model. Using Gradient Descent going back to update the input so that r ...
分类:
其他好文 时间:
2019-11-06 00:32:15
阅读次数:
133
Neural Turing Machine 神经图灵机 论文原文地址: "http://arxiv.org/pdf/1410.5401.pdf" 一般的神经网络不具有记忆功能,输出的结果只基于当前的输入;而LSTM网络的出现则让网络有了记忆:能够根据之前的输入给出当前的输出。但是,LSTM的记忆程度 ...
分类:
系统相关 时间:
2019-10-30 18:09:02
阅读次数:
97