- Hands-On Deep Learning Architectures with Python
- Yuxi (Hayden) Liu Saransh Mehta
- 207字
- 2021-06-24 14:48:13
Installing TensorFlow GPU
If you have a TensorFlow supported GPU, you can install TensorFlow GPU version to speed up your training process. TensorFlow provides support for NVIDIA CUDA enabled GPU cards. You can refer to the following link to check whether your GPU card is supported or not: https://www.tensorflow.org/install/gpu.
To install TensorFlow GPU version through native pip, one has to go through a list of tedious processes:
- Download and install the CUDA Toolkit for your operating system
- Download and install cuDNN library (to support deep learning computations in GPU)
- Add path variables for CUDA_HOME and CUDA Toolkit
- Install TensorFlow GPU through pip
Thankfully, however, Anaconda, have compiled everything in a single command—from compatible CUDA Toolkit, cuDNN library, to TensorFlow-GPU. If you already have TensorFlow CPU installed in the current environment, you can deactivate the environment and make a new environment for TensorFlow GPU. You can simply run the following command in your Conda environment and it will download and install everything for you:
# deactivate the environment
conda deactivate
# create new environment
conda create -n tf_gpu
#activate the environment
conda activate tf_gpu
# let conda install everything!
conda install tensorflow-gpu
Once you are done installing, it's time to test your installation!
- 模型制作
- PyTorch深度學習實戰
- STM32G4入門與電機控制實戰:基于X-CUBE-MCSDK的無刷直流電機與永磁同步電機控制實現
- 水晶石精粹:3ds max & ZBrush三維數字靜幀藝術
- 網絡綜合布線設計與施工技術
- Implementing Oracle API Platform Cloud Service
- 數據通信與計算機網絡
- 精通數據科學算法
- Learning Apache Apex
- Mastering MongoDB 3.x
- Cortex-M3嵌入式處理器原理與應用
- Cisco UCS Cookbook
- Arduino創意機器人入門:基于Mind+
- 暗戰強人:黑客攻防入門全程圖解
- Learn T-SQL Querying