Tensorflow
YY.Jiang
这个作者很懒,什么都没留下…
展开
-
tf.get_variable 和tf.variable_scope
变量共享主要涉及到两个函数:tf.get_variable(name>, shape>, initializer>) 和 tf.variable_scope(scope_name>)。11先来看第一个函数: tf.get_variable。tf.get_variable 和tf.Variable不同的一点是,前者拥有一个变量检查机制,会检测已经存在的变量是否设置为共享变量,如果转载 2017-08-23 17:02:16 · 196 阅读 · 0 评论 -
tensorflow笔记 :常用函数说明
转自:http://blog.csdn.net/u014595019/article/details/528054441.矩阵操作1.1矩阵生成这部分主要将如何生成矩阵,包括全0矩阵,全1矩阵,随机数矩阵,常数矩阵等tf.ones | tf.zerostf.ones(shape,type=tf.float32,name=None) tf.zeros(转载 2017-10-17 15:31:15 · 446 阅读 · 0 评论 -
tensorflow:多层CNN
一般来说,CNN网络的前几层为卷积层和采样层(或者说池化层),在若干层卷积和池化以后,还有若干层全连接层(也就是传统神经网络),最后输出分类信息。大概的结构示意图如下图所示可以看到,CNN相比与传统神经网络,最大的区别就是引入了卷积层和池化层。这也是我们在代码中要着重看的地方。 在下面的代码中,卷积是使用tf.nn.conv2d, 池化使用tf.nn.max_pool,下面来详转载 2017-10-17 18:22:44 · 800 阅读 · 0 评论 -
Tensorflow 搭建神经网络(单层)
#coding=utf-8import tensorflow as tfimport numpy as np#add layerdef add_layer(inputs,in_size,out_size,activation_function=None): # add one more layer and return the output of this layer w = tf.原创 2017-09-26 16:38:52 · 482 阅读 · 0 评论 -
Tesoroflow实现skip—gram算法
语料库从资源页面下载#coding=utf-8import collectionsimport re import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from sklearn.manifold import TSNE'''读取源文件,并转为list输出@param f原创 2017-09-23 14:51:30 · 806 阅读 · 0 评论 -
Tensorflow实现逻辑分类器
实现分类器使用的数据集为input_data中的数据,导入数据集前需要先下载数据集,否则会报错ImportError: No module named input_data解决方法:先安装input_data.py,直接复制地址https://github.com/tensorflow/tensorflow/tree/master/tensorflow/examples/tutoria转载 2017-08-22 21:28:13 · 520 阅读 · 0 评论 -
Tensorflow--逻辑回归
#coding=utf-8import tensorflow as tfimport numpy as npnum_point = 100vectors_set = []#train datafor i in range(num_point): x1 = np.random.normal(0.0,1) y1 = 1 if x1*0.3+0.1 +np.random.normal(0原创 2017-09-05 21:59:47 · 287 阅读 · 0 评论 -
Tensorflow-线性回归
#coding=utf-8import tensorflow as tfimport numpy as npimport matplotlib.pyplot as pltnum_points = 1000vector_set = []#构造训练数据for i in range(num_points): x1 = np.random.normal(0.0,0.55) y1 = x原创 2017-09-05 21:38:28 · 250 阅读 · 0 评论 -
Tensorflow--多层神经网络
#coding=utf-8import numpy as npimport tensorflow as tfimport matplotlib.pyplot as pltimport input_dataimport math#import mnist import time#参数设置flags = tf.app.flagsFLAGS = flags.FLAGSflags.原创 2017-09-05 21:46:06 · 1003 阅读 · 0 评论 -
pip使用清华镜像安装tensorflow1.8
pip使用清华镜像安装tensorflow1.8安装tensorflow时,如果使用直接安装速度相对较慢,采取清华大学的镜像会提高速度。pip install tensorflow-gpu==1.8 -i https://pypi.tuna.tsinghua.edu.cn/simple或pip install tensorflow==1.8 -i https://pypi.tuna.tsi...转载 2019-02-27 19:06:07 · 16872 阅读 · 0 评论