TensorFlow之实现两个向量求和程序

TensorFlow,又称深度学习, 是人工智能领域里的机器学习的一种方法 。 现在的IT业都在往人工智能的方向发展, 学习TensorFlow是非常有必要的 。 接下来小编就为大家分享一个简单TensorFlow程序来实现两个向量求和 。 工具/材料 TensorFlow
操作方法 01 电脑上安装了TensorFlow之后, 是有PyCharm进行编译的, 首先打开PyCharm软件, 点击File->new

TensorFlow之实现两个向量求和程序

文章插图

02 新建Python file

TensorFlow之实现两个向量求和程序

文章插图

03 给新建的Python file命名之后点击保存

TensorFlow之实现两个向量求和程序

文章插图

04 可以看到新建的文件夹保存为.py文件

TensorFlow之实现两个向量求和程序

文章插图

05 在进入Python交互界面之后, 先通过import加载TensorFlow:import tensorflow as tf

TensorFlow之实现两个向量求和程序

文章插图

06 定义两个向量a和b:
a=tf.constant([1,2],name="a")
b=tf.constant([2,3],name="b")

TensorFlow之实现两个向量求和程序

文章插图

07 【TensorFlow之实现两个向量求和程序】用result保存两个向量相加的结果, 调用session来计算结果
result=a+b
sess = tf.Session()

TensorFlow之实现两个向量求和程序

文章插图

08 用print函数输出结果
print(sess.run(result))

TensorFlow之实现两个向量求和程序

文章插图

09 点击run运行程序即可得到向量a和b相加之后的结果 。
result=[3,5]

TensorFlow之实现两个向量求和程序

文章插图


特别提示 定义的a和b 向量类型要一致

以上内容就是TensorFlow之实现两个向量求和程序的内容啦, 希望对你有所帮助哦!

    推荐阅读