-
安装TensorFlow
conda install tensorflow-gpu
-
测试TensorFlow是否安装成功
import tensorflow as tf sess = tf.Session() a = tf.constant(1) b = tf.constant(2) print(sess.run(a+b))
tensorflow 1.0版本的代码要创建会话
Session
需要注意的是:tensorflow的代码默认会占用所有显卡的所有显存 -
TensorFlow按需分配显存
参考链接:tensorflow 使用 cpu 而不使用 gpu 问题 - 万道一 - 博客园 (cnblogs.com)
相关文章
- 10-30推荐模型DeepCrossing: 原理介绍与TensorFlow2.0实现
- 10-30XGBoost小记
- 10-30安装Tensorflow过程pip安装报错:is not a supported wheel on this platform
- 10-30Tensorflow 算法原理与编程实战
- 10-30tensorflow(十四):张量排序( Sort/argsort, Topk, Top-5 Acc.)
- 10-30结合OpenCV与TensorFlow进行人脸识别
- 10-30tensorflow 对Model检测点的操作、model.get_layer、从 checkpoint加载权重、set_weights、model层属性获取
- 10-30在命令窗口切换anaconda环境安装tensorflow1.x版本
- 10-30tensorflow 2.0 随机梯度下降 之 梯度下降
- 10-30AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'leaky_relu'