tensorflow学习
Yenpo_Ma
这个作者很懒,什么都没留下…
展开
-
手写字符MNIST
import tensorflow as tffrom tensorflow.examples.tutorials.mnist import input_data#输入层节点数和输出层节点数INPUT_NODE=784OUTPUT_NODE=10#隐藏节点数和batch中的训练数据个数LAYER1_NODE=784BATCH_SIZE=100#基础学习率与衰减率LEARN原创 2018-01-28 22:46:00 · 188 阅读 · 0 评论 -
MNIST数字识别问题完整版
import tensorflow as tf#定义神经网络结构相关的参数INPUT_NODE=784OUTPUT_NODE=10LAYER1_NODE=500def get_weight_variable(shape, regularizer): weights = tf.get_variable("weights", shape, initializer=tf.trunc原创 2018-02-06 20:02:45 · 853 阅读 · 0 评论 -
LeNet-5手写字符识别
import tensorflow as tf#定义神经网络结构相关的参数INPUT_NODE=784OUTPUT_NODE=10IMAGE_SIZE = 28NUM_CHANNELS = 1NUM_LABELS = 10CONV1_DEEP = 32CONV1_SIZE = 5CONV2_DEEP = 64CONV2_SIZE = 5FC_SIZE = 512"""原创 2018-02-07 15:13:40 · 1611 阅读 · 0 评论 -
Tensorflow实现迁移学习
迁移学习就是将一个问题上训练好的模型通过简单的调整使其适用于一个新的问题 使用数据集:http://download.tensorflow.org/example_images/flower_photos.tgz 使用Google提供的训练好的模型Inception-v3:http://storage.googleapis.com/download.tensorflow.org/models/...原创 2018-02-08 18:54:22 · 568 阅读 · 0 评论 -
mnist tensorflow可视化
mnist_inference.pyimport tensorflow as tf#定义神经网络结构相关的参数INPUT_NODE=784OUTPUT_NODE=10LAYER1_NODE=500def get_weight_variable(shape, regularizer): weights = tf.get_variable("weights", shape...原创 2018-02-25 20:30:05 · 435 阅读 · 0 评论 -
Deep Self-Taught Learning for Weakly Supervised Object Localization
种子样本采集 1. Image-to-Object Transfer 训练一个多标签分类CNN模型作为识别种子样本的第一步,采用Hypothesis-CNN-Pooling (HCP)方法将图像中属于同一类物体的候选区域提取出来。在综合预测阶段对每一类采用cross-proposal max-pooling,筛选出一些与目标类最相关的候选区域。这样,图像级别的分类错误只能通过the most ...原创 2018-03-12 14:41:47 · 599 阅读 · 0 评论