欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

1. hello TensorFlow

程序员文章站 2024-03-23 11:40:52
...

在Spyder上实现。

#导入软件包
import tensorflow as tf
#定义常量操作(既可以是字符串,也可以是数字) hello
hello=tf.constant('hello tensorflow')
#创建一个会话(上下文环境)
sess=tf.Session()
#执行常量操作 hello 并打印到标准输出
print(sess.run(hello))

输出:b'hello tensorflow'

说明:学习视频链接https://www.bilibili.com/video/BV194411T7BB?p=11
,这个视频讲解的比较好,从头到尾观看下来,跟着视频实际操作一下,就很容易上手了。

上一篇: typedef与define

下一篇: 5.常量