03 使用Tensorflow做计算题

Posted tengge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了03 使用Tensorflow做计算题相关的知识,希望对你有一定的参考价值。

    我们使用Tensorflow,计算((a+b)*c)^2/a,然后求平方根。看代码:

 1 import tensorflow as tf
 2 
 3 # 输入储存容器
 4 a = tf.placeholder(tf.float16)
 5 b = tf.placeholder(tf.float16)
 6 c = tf.placeholder(tf.float16)
 7 
 8 # 计算
 9 d = tf.add(a, b) #加法
10 e = tf.multiply(d, c) #乘法
11 f = tf.pow(e, 2) #平方
12 g = tf.divide(f, a) #除法
13 h = tf.sqrt(g) #平方根
14 
15 # 会话
16 sess = tf.Session()
17 
18 # 赋值
19 feed_dict= {a:1, b:2, c:3}
20 
21 # 计算
22 result = sess.run(h, feed_dict= feed_dict)
23 
24 # 关闭会话
25 sess.close()
26 
27 # 输出结果
28 print(result)

    这里让a=1,b=2,c=3,如果输出9.0,证明运行成功。

    Tensorflow做计算的方法是,先把计算的式子构建一个图,然后把这个图和赋值传给C++写的程序一起计算,比较快。

 

以上是关于03 使用Tensorflow做计算题的主要内容,如果未能解决你的问题,请参考以下文章

片段 onHiddenChanged 未调用

我该如何做模态对话框片段(代码在我关闭之前不会执行)

用于 mac AVX 的 TensorFlow

救命,这道python题怎么做?

计算光栅化片段的数量

计算片段着色器内平面的法线