
零基础入门TensorFlow
5念since
最重要的事情只有一件,变强!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
tensorflow之hello world
简单贴一段程序 import tensorflow as tf #创建一个常量运算,将作为一个节点加入到默认计算图中 hello = tf.constant('Hello,World') #创建tf对话 sess = tf.Session() #运行获取结果 print(sess.run(hello)) ...原创 2020-04-15 22:57:17 · 157 阅读 · 0 评论 -
TensorFlow环境检测
写篇博客水一下 import tensorflow as tf print(tf.__version__) 结果显示: 显示的结果是你的tf版本原创 2019-07-28 23:37:13 · 341 阅读 · 0 评论