
AI算法和加速器
CNN、RNN、加速器学习笔记
xifengw
这个作者很懒,什么都没留下…
展开
-
CNN基本结构和经典网络
卷积网络的基本结构 数据输入层/ Input layer 3种常见的图像数据处理方式:一般CNN只用去均值 卷积计算层/ CONV layer 基本概念:depth:与神经元(filter)个数相等 stribe zero-padding卷积宽长深度计算: 激励层(ReLU) Sigmoid Tanh(双曲正切) ReLU...转载 2019-03-17 22:30:15 · 16802 阅读 · 1 评论 -
Tensorflow简单CNN实现MNIST数据集分类
import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_datamnist = input_data.read_data_sets('MNIST_data',one_hot=True)#每个批次的大小batch_size = 100#计算一共有多少个批次n_batch = mnist....原创 2019-03-17 23:08:50 · 226 阅读 · 0 评论