自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 Tensorflow 一些有用的API

Tensorflow APItf.contrib.estimator.replicate_model_fn (r1.8)tf.contrib.estimator.replicate_model_fn( model_fn, loss_reduction=losses.Reduction.SUM_BY_NONZERO_WEIGHTS, devices=None)...

2018-07-07 15:55:15 831

原创 Alexnet卷积神经网络解读

ImageNet Classification with Deep Convolutional Neural Networks在过去的几天,看了一下Alexnet的论文。在这里提一下重点。 论文原文:https://www.cs.toronto.edu/~fritz/absps/imagenet.pdf; 论文翻译:https://blog.youkuaiyun.com/hit2015spring/a...

2018-07-02 16:36:39 2707

原创 Tensorflow入门系列(四)--tutorials/image/mnist程序详解

mnist官方程序详解在之前的文章中,我们在github上clone了TensorFlow/model这一个项目,这一次让我们一起来看一下其下tutorials/image/mnist的程序。首先,让我们从程序的起始点开始看起。parser = argparse.ArgumentParser()parser.add_argument( '--use_fp16', ...

2018-06-25 20:40:56 531

原创 Tensorflow入门系列(三)--官方新手教程详解

官方教程详解tensorflow的官网”http://tensorflow.org“我这边无法打开连接,因此进入的是https://tensorflow.google.cn这个官方网站。该网站下有一个新手入门的一个例子,接下来将对该例子中的代码和遇到的问题做一个详细的解读。以备不时之需。https://tensorflow.google.cn/get_started/get_started...

2018-06-21 11:17:05 3156

原创 tensorflow入门系列(二)

利用简单的卷积神经网络对mnist数据集识别在之前,我们利用了简单的神经网络对mnist数据集进行了识别,获得了98%的准确率。今天,将采用卷积神经网络对数据集进行识别。程序程序只需要在之前的程序上添加卷积,池化等操作即可from __future__ import absolute_importfrom __future__ import divisionfrom __f...

2018-06-14 15:06:05 276

原创 手动实现卷积操作

图像卷积操作程序import numpy as npfrom matplotlib import pyplot as pltimport tensorflow as tffrom io import BytesIOfrom PIL import Imageimport base64import pylabdef conv2d(input, filter, strid...

2018-06-13 15:37:34 1694 2

原创 Tensorflow入门系列(一)

第一个项目第一个项目是使用简单的多层神经网络(不涉及CNN)对手写字进行的识别,准确率达到98%以上。这个项目主要是初步认识如何进行参数调优的过程。首先贴出实现的程序,然后再来谈谈调优过程遇到的问题。程序from __future__ import absolute_importfrom __future__ import divisionfrom __future__ i...

2018-06-08 22:24:11 353

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除