1. # tf.Graph对象定义了一个命名空间对于它自身包含的tf.Operation对象
  2. # TensorFlow自动选择一个独一无二的名字,对于数据流图中的每一个操作
  3. # 但是给操作添加一个描述性的名字可以使你的程序更容易来阅读和调试
  4. # TensorFlow api提供两种方式来重写一个操作的名字
  5. # 1、每一个api函数创建了一个新的tf.Operation或者返回一个新的tf.Tensor接收一个可选的name参数
  6. # 列如tf.constant(42.0,name="answer")创建了一个新的tf.Operation叫做answer
  7. # 并且返回以叫做"answer:0"的tf.Tensor .如果默认的数据流图已经包含了叫做"answer"的操作
  8. # TensorFlow会在后面append,"_1","_2"来使它变得唯一
  9. # 2、tf.name_scope函数使得在名字后面添加一个后缀变得可能
  10. import tensorflow as tf
  11. c_0 = tf.constant(0, name="c") # operation named "c"
  12. # already-used names will be "uniquified"
  13. c_1 = tf.constant(2, name="c") # => operation named "c_1"
  14. # Name scopes add a prefix to all operations created in the same context
  15. with tf.name_scope("outer"):
  16. c_2 = tf.constant(2, name="c") # =>operation nemed "outer/c"
  17.  
  18. # 在层次化文件系统中,名称范围嵌套类似的路径
  19. with tf.name_scope("inner"):
  20. c_3 = tf.constant(3, name="c")
  21.  
  22. # 已经存在的变量名字会返回到前一个变量名加上一个后缀
  23. c_4 = tf.constant(4, name="c") # =>operation named "outer/c_1"
  24.  
  25. # 已经使用的命名空间会被 "uniquified"
  26. with tf.name_scope("inner"):
  27. c_5 = tf.constant(5, name="c") # =>operation named "outer/inner_1/c"
  28.  
  29. init = tf.global_variables_initializer()
  30. with tf.Session() as sess:
  31. sess.run(init)
  32. print(c_0)
  33. print(c_1)
  34. print(c_2)
  35. print(c_3)
  36. print(c_4)
  37. print(c_5)

下面是上面代码的输出结果:

  1. 2018-02-17 11:01:55.084300: I C:\tf_jenkins\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
  2. Tensor("c:0", shape=(), dtype=int32)
  3. Tensor("c_1:0", shape=(), dtype=int32)
  4. Tensor("outer/c:0", shape=(), dtype=int32)
  5. Tensor("outer/inner/c:0", shape=(), dtype=int32)
  6. Tensor("outer/c_1:0", shape=(), dtype=int32)
  7. Tensor("outer/inner_1/c:0", shape=(), dtype=int32)

121、TensorFlow张量命名的更多相关文章

  1. AI - TensorFlow - 张量(Tensor)

    张量(Tensor) 在Tensorflow中,变量统一称作张量(Tensor). 张量(Tensor)是任意维度的数组. 0阶张量:纯量或标量 (scalar), 也就是一个数值,例如,\'Howd ...

  2. Tensorflow张量

    张量常规解释 张量(tensor)理论是数学的一个分支学科,在力学中有重要应用.张量这一术语起源于力学,它最初是用来表示弹性介质中各点应力状态的,后来张量理论发展成为力学和物理学的一个有力的数学工具. ...

  3. tensorflow 张量的阶、形状、数据类型及None在tensor中表示的意思。

    x = tf.placeholder(tf.float32, [None, 784]) x isn't a specific value. It's a placeholder, a value th ...

  4. cs224d 作业 problem set2 (二) TensorFlow 实现命名实体识别

    神经网络在命名实体识别中的应用 所有的这些包括之前的两篇都可以通过tensorflow 模型的托管部署到 google cloud 上面,发布成restful接口,从而与任何的ERP,CRM系统集成. ...

  5. tensorflow张量排序

    本篇记录一下TensorFlow中张量的排序方法 tf.sort和tf.argsort # 声明tensor a是由1到5打乱顺序组成的 a = tf.random.shuffle(tf.range( ...

  6. TensorFlow—张量运算仿真神经网络的运行

    import tensorflow as tf import numpy as np ts_norm=tf.random_normal([]) with tf.Session() as sess: n ...

  7. Tensorflow张量的形状表示方法

    对输入或输出而言: 一个张量的形状为a x b x c x d,实际写出这个张量时: 最外层括号[…]表示这个是一个张量,无别的意义! 次外层括号有a个,表示这个张量里有a个样本 再往内的括号有b个, ...

  8. tensorflow张量限幅

    本篇内容有clip_by_value.clip_by_norm.gradient clipping 1.tf.clip_by_value a = tf.range(10) print(a) # if ...

  9. tensorflow中张量(tensor)的属性——维数(阶)、形状和数据类型

    tensorflow的命名来源于本身的运行原理,tensor(张量)意味着N维数组,flow(流)意味着基于数据流图的计算,所以tensorflow字面理解为张量从流图的一端流动到另一端的计算过程. ...

随机推荐

  1. 第五周课程总结&实验报告

    一.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码.结果截图.) 统计该字符串中字母s出现的次数. 统计该字符串中子串"i ...

  2. WOJ#1243 蜥蜴 lizard

    描述 在一个r行c列的网格地图中有一些高度不同的石柱,一些石柱上站着一些蜥蜴,你的任务是让尽量多的蜥蜴逃到边界外. 每行每列中相邻石柱的距离为1,蜥蜴的跳跃距离是d,即蜥蜴可以跳到平面距离不超过d的任 ...

  3. HDU-1269 迷宫城堡(连通分量)

    迷宫城堡 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submi ...

  4. sweetalert插件替代alert/confirm

    更多关于SweetAlert的内容请参考:https://github.com/t4t5/sweetalert.

  5. C#取模的理解:为什么当a<b,a%b=a?

    一,取模a%b 1,如果a>b,例如10%7=3,这是什么原因呢?可以根据下面的理解 10 =7*1+3,则模就是3 2,如果a<b,例如7%10 = 7,这时怎么得到的呢?根据下面来理解 ...

  6. MYSQL学习笔记——sql语句优化之索引

    上一篇博客讲了可以使用慢查询日志定位耗时sql,使用explain命令查看mysql的执行计划,以及使用profiling工具查看语句执行真正耗时的地方,当定位了耗时之后怎样优化呢?这篇博客会介绍my ...

  7. Mybatis(三)MyBatis 注解方式的基本 用法

    在 MyBatis注解 SQL 中,最基本的就是@Select.@Insert.@Update 和@Delete 四种.

  8. MATLAB 和 armadillo 数据转换

    #include<iostream> #include<armadillo> int D=5; int M=4; int main() { arma::fmat x; x.ra ...

  9. Sublime-Text macOS 编译运行armadillo

    { "cmd" : ["g++ -std=c++14 -Wall -larmadillo -framework Accelerate ${file_name} -o ${ ...

  10. Apache HttpClient之fluent API的使用

    该方法为Apache HttpClient 4.5以上的版本支持,在官网有明确的说明. 对比以前的方式,其优点是代码更简洁,同时为线程安全的.仅举一个最简单的post栗子 JAR包信息: <de ...