- 博客(3)
- 资源 (2)
- 收藏
- 关注
转载 tensorflow 命名空间问题
import tensorflow as tf with tf.name_scope('123'): with tf.name_scope('456'): with tf.variable_scope('789'): a = tf.Variable(1, name='a') print(a.name) ...
2019-07-30 14:27:01
129
转载 Process和program的概念(GO Systems Programming)
Strictly speaking, a process is an execution environment that contains instructions, user-data and system-data parts, and other kinds of resources that are obtained during runtime. A program is a...
2019-07-30 13:35:49
356
转载 TensorFlow 计算图
在Tensorflow中,系统会自动维护一个默认的计算图,通过tf.get_default_graph函数可以获取当前默认的计算图: 假如定义了两个变量:a = tf.constant([1.0,2.0],name="a"),b=tf.constant([2.0,3.0],name="b") 调用a.graph 得到的内容和tf.get_default_graph()是相同的,即a.grap...
2019-07-30 13:35:23
190
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人