tensorflow
modest_ch
这个作者很懒,什么都没留下…
展开
-
Tensorflow一些常用基本概念与函数(1)
摘要:本文主要对tf的一些常用概念与方法进行描述。 1、tensorflow的基本运作 为了快速的熟悉TensorFlow编程,下面从一段简单的代码开始: import tensorflow as tf #定义‘符号’变量,也称为占位符 a = tf.placeholder("float") b = ...转载 2018-11-15 22:29:48 · 173 阅读 · 0 评论 -
TensorFlow 实现矩阵[n,*]的各行乘以另一个[1,n]矩阵的对应元素
这个问题真的研究了好久,这个是个小技巧,很实用。 用到的函数主要有 tf.transpose(a, perm=None, name=’transpose’) 调换tensor的维度顺序 按照列表perm的维度排列调换tensor顺序, 如为定义,则perm为(n-1…0) # ‘x’ is [[1 2 3],[4 5 6]] ...原创 2018-11-16 15:54:48 · 1303 阅读 · 1 评论 -
tf.split详解
先来贴官方解释: def split(value, num_or_size_splits, axis=0, num=None, name="split"): """Splits a tensor into sub tensors. If `num_or_size_splits` is an integer type, then `value` is split along dim...原创 2019-04-02 14:46:11 · 678 阅读 · 0 评论