栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

TensorFlow1.11学习笔记

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

TensorFlow1.11学习笔记

1、运行第一个TensorFlow程序

import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'

import tensorflow as tf
hello = tf.constant("hello  world!")
with tf.Session() as sess:
    print(sess.run(hello))

运行结果如下:
 

E:installanacondaenvstensorflowpython.exe E:/pythonProject2/0hello.py
b'hello  world!'

Process finished with exit code 0

##E:installanacondaenvstensorflowpython.exe E:/pythonProject2/0hello.py

##是我个人笔记本电脑的安装路径,每个人安装的不一样。

注意事项:

1)、如果出现

2021-11-30 19:39:48.566136: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2

可以在代码前添加

#import os
#os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'

2)代码解释

#导入TensorFlow

import tensorflow as tf 

#将hello world 赋值给hello变量

hello = tf.constant("hello  world!")

#通过上下文管理器使用会话,当上下文退出时会话关闭,资源自动释放
with tf.Session() as sess:
    print(sess.run(hello))
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/619421.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号