TensorFlow 之创建交互式 TensorFlow 会话
Posted hsy1941
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow 之创建交互式 TensorFlow 会话相关的知识,希望对你有一定的参考价值。
使用变量必须先初始化,增加一个`初始化` op 到图中. init_op = tf.initialize_all_variables()
1 import tensorflow as tf 2 sess = tf.InteractiveSession() 3 x = tf.Variable(4) 4 a = tf.constant(3) 5 # 使用初始化器 initializer op 的 run() 方法初始化 ‘x‘ 6 x.initializer.run() 7 # 增加一个减法 multiply op, 从 ‘x‘ 乘 ‘a‘. 运行减法 op, 输出结果 8 y= tf.multiply(x, a) 9 print(y.eval())
以上是关于TensorFlow 之创建交互式 TensorFlow 会话的主要内容,如果未能解决你的问题,请参考以下文章
通过Python来学习人工智能!事半功倍!TensorFlow之入门篇!
用 TensorFlow 创建自己的 Speech Recognizer