tensorflow1
tensorflow1
Leo_whj
学习者
展开
-
TypeError: __int__ returned non-int (type NoneType)
这个说法是指你的输入shape跟要求的不符合静态和动态维度TensorFlow: Shapes and dynamic dimensions一文中,对张量的静态和动态维度做了描述。使用shape = x.get_shape()获取静态维度使用shape= tf.shape(x)获取动态维度如果你的placeholder输入的维度都是固定的情况下,使用get_shape()。但是很多情况下,...原创 2020-03-24 19:18:13 · 2534 阅读 · 0 评论 -
具有动态ksize的Tensorflow maxpool
我在TensorFlow上有一个卷积层的代码如下.该层是较大计算图的一部分.# Define the shape of the filterfilter_shape = [1, config.char_filter_size, config.dim_char, config.dim_char]...转载 2020-03-24 19:14:52 · 756 阅读 · 3 评论 -
tensorflow学习之tensor操作函数
1.定义各种数组a = np.array([[1,2,3],[4,5,6]])# 数组转tensor:数组a, tensor_a=tf.convert_to_tensor(a)# tensor转数组:tensor b, array_b=b.eval()b = tf.convert_to_tensor(a) # 将np定义数组转化为tensorc = tf.constant([[1...原创 2020-03-08 17:23:41 · 1333 阅读 · 0 评论 -
tensorflow学习之tf.concat()详解
tensorflow中用来拼接张量的函数tf.concat(),用法:tf.concat([tensor1, tensor2, tensor3,...], axis)先给出tf源代码中的解释: t1 = [[1, 2, 3], [4, 5, 6]] t2 = [[7, 8, 9], [10, 11, 12]] tf.concat([t1, t2], 0) # [[1,...转载 2020-03-07 23:19:30 · 1068 阅读 · 0 评论 -
tensorflow学习之matplotlib
转载自莫烦python——Matplotlib莫烦Matplotlib教程1、绘制直线2、在不同的窗口中显示3、不同的线在同一幅图中显示4、坐标轴设置5、添加图例legend6、添加注解7、坐标轴刻度8、Scatter散点图9、条形图/柱状图10、等高线图11、Image图像12、3D显示13、灰度图14、饼状图15、绘制极坐标图16、Subplot多合一17...转载 2020-03-07 20:10:04 · 379 阅读 · 0 评论 -
tensorflow学习之CNN网络
构建网络应用tensorboardSaver保存读取(在saver实例每次调用save方法时,都会创建三个数据文件和一个检查点(checkpoint)文件,权重等参数被以字典的形式保存到.ckpt.data中,图和元数据被保存到.ckpt.meta中,可以被tf.train.import_meta_graph加载到当前默认的图.注:1.saver 的操作必须在 sess 建立后进...原创 2020-03-07 19:44:33 · 380 阅读 · 0 评论 -
tensorflow学习之tensorboard
tf.summary函数:1、tf.summary.scalar:用来显示标量信息例如:tf.summary.scalar('mean', mean)一般在画loss,accuary时会用到这个函数。2、tf.summary.histogram:用来显示直方图信息例如: tf.summary.histogram('histogram', var)一般用来显示训练过程中变量的...原创 2020-03-07 16:18:30 · 246 阅读 · 0 评论 -
tensorflow学习之添加层并简单训练
import tensorflow as tfimport numpy as npdef add_layer(inputs, in_size,out_size,activation_function=None): Weights = tf.Variable(tf.random_normal([in_size,out_size])) biases = tf.Variable...原创 2020-03-07 13:26:14 · 440 阅读 · 0 评论 -
tensorflow学习之variable变量
2.variable变量tf.Variable():(1)参数说明tf.Variable是一个Variable类。通过变量维持图graph的状态,以便在sess.run()中执行;可以用Variable类创建一个实例在图中增加变量;Args参数说明:initial_value:Tensor或可转换为Tensor的Python对象,它是Variable的初始值。除非validate...原创 2020-03-03 23:04:17 · 1511 阅读 · 0 评论 -
tensorflow学习之Session会话
观莫凡教程及笔记1.Session会话import tensorflow as tfmatrix1 = tf.constant([[3, 3]]) # 一行两列matrix2 = tf.constant([[2], # 两行一列 [2]])product = tf.matmul(matrix1, matrix2)# met...原创 2020-03-03 22:08:54 · 397 阅读 · 0 评论 -
tensorflow1.x-------Conv2D_5种方法
tf.nn.conv2dtf.layers.conv2dtf.contrib.layers.conv2dslim.conv2dtf.keras.layers.Conv2D()1.tf.nn.conv2dtf.nn.conv2d(input, # 张量输入 filter, # 卷积核参数 strides, # 步长参数 padding, # 卷积方...原创 2019-12-25 16:14:41 · 1241 阅读 · 0 评论 -
tensorflow1.x------Keras 教程
TensorFlow版本:1.10.0 > Guide > Kerashttps://blog.csdn.net/u014061630/article/details/81086564Keras 简介Keras 是建立和训练深度学习模型的高级 API。它被用于快速原型、高级研究和生产。Keras 具有三个主要优点:好用的 APIKeras API 简单、稳定、容易调试...原创 2019-12-25 16:00:18 · 1776 阅读 · 0 评论 -
tensorflow1.x教程综述
tensorflow官网教程https://tensorflow.google.cn/api_docs/python/tf原创 2019-12-25 15:57:10 · 1337 阅读 · 0 评论 -
tensorflow2.0教程综述
TensorFlow 2.0 教程https://blog.csdn.net/qq_31456593/article/details/88606284tensorflow2.0教程- Keras 快速入门https://blog.csdn.net/qq_31456593/article/details/88377117tensorflow官网教程https://tensorflow.goo...原创 2019-12-25 15:55:33 · 190 阅读 · 0 评论 -
Tensorflow1.x与Tensorflow2.0
TensorFlow 1.x主要是用于处理静态计算图的框架。计算图中的节点是Tensors,当图形运行时,它将保持n维数组;图中的边表示在运行图以实际执行有用计算时将在张量上运行的函数。在Tensorflow 2.0之前,我们必须将图表分为两个阶段:构建一个描述您要执行的计算的计算图。这个阶段实际上不执行任何计算;它只是建立了计算的符号表示。该阶段通常将定义一个或多个表示计算图输入的“占位...原创 2019-12-25 13:18:57 · 344 阅读 · 0 评论 -
tensorflow不同版本报错及错误积累
TF 1.0版本与之前版本不同点,大部分是Api版本问题:1. AttributeError: 'module' object has no attribute 'SummaryWriter'tf.train.SummaryWriter改为:tf.summary.FileWriter2. AttributeError: 'module' object has no attribute ...原创 2019-12-25 13:10:45 · 665 阅读 · 0 评论