博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[TensorFlow]TensorFlow安装方法
阅读量:4988 次
发布时间:2019-06-12

本文共 481 字,大约阅读时间需要 1 分钟。

下载*.whl文件方法安装:

方法:

 

在线安装:

方法:

 

在终端上简单测试:

python
import tensorflow as tfhello = tf.constant('Hello, TensorFlow!')sess = tf.Session()sess.run(hello)# 输出:'Hello, TensorFlow!'a = tf.constant(10)b = tf.constant(32)sess.run(a + b)# 输出:42sess.close()

 

Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA

测试时出现上面警告时,想解决需要重新编译TensorFlow源码,也可用下面代码隐藏:

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

参考:

 

转载于:https://www.cnblogs.com/hcbin/p/9192955.html

你可能感兴趣的文章
超好用超短的小程序请求封装
查看>>
软件工程——理论、方法与实践⑦
查看>>
跟牛牛老师学习python自动化的第六天
查看>>
Vim 加 Gmail 变身 Vmail
查看>>
(5) Orchard 开发之 Localization and NullLocalizer
查看>>
分类算法(1)--KNN
查看>>
妙用python之编码转换
查看>>
hdu 4451 Dressing 衣服裤子鞋 简单容斥
查看>>
linux一些基本常识(四)
查看>>
Docker架构
查看>>
C#设计模式(3)——工厂方法模式
查看>>
过目不忘JS正则表达式
查看>>
Colidity-- StoneWall
查看>>
Leetcode 904. Fruit Into Baskets
查看>>
怎样连接REDIS服务端
查看>>
No.026:Remove Duplicates from Sorted Array
查看>>
SpringBoot项目的几种创建方式,启动、和访问
查看>>
解决"disabled". Expected Boolean, got Number with value 0
查看>>
OC--init,initialize,initWithCoder:,initWithFrame:各方法的区别和加载顺序
查看>>
Exponentiation
查看>>