【发布时间】:2018-10-11 12:01:22
【问题描述】:
我在 Windows 10 中使用 Anaconda,但无法安装当前版本的 tensorflow-gpu。我有 4 GB AMD Radeon 显卡。那么如何在笔记本电脑上运行Tensorflow-gpu 版本呢?
【问题讨论】:
标签: python-3.x tensorflow image-processing anaconda object-detection
我在 Windows 10 中使用 Anaconda,但无法安装当前版本的 tensorflow-gpu。我有 4 GB AMD Radeon 显卡。那么如何在笔记本电脑上运行Tensorflow-gpu 版本呢?
【问题讨论】:
标签: python-3.x tensorflow image-processing anaconda object-detection
据我所知,您需要 Linux 和 ROCm 才能拥有支持 Tensorflow 的 AMD GPU。 在我使用 ubuntu 和 ROCm 1.9.1 的情况下,在 Python3 中:
import tensorflow as tf; print(tf.__version__)
>>1.11.0
【讨论】:
Tensflow 不仅适用于 CPU,它也适用于 CPU,因此只要满足依赖关系,它将适用于所有系统。但是,我认为您的问题是关于让您的 GPU 使用 Tensorflow 进行计算,这将是 tensorflowGPU 版本。您可以做几件事。
You can visit this link for installation and set up details for ROCm
【讨论】: