Nguyen Hai Duong
Professor Kim Soo Hyung
Chonnam National University
- Check whether you GPU has Compute Capability 3.0 or higher. If not, please refer either Environment Setup 2 (with GPU Tesla K80 + Google Colab) or Environment Setup 3 (with CPUs)
- Download and install CUDA® Toolkit 8.0
- Download cuDNN v5.1, extract downloaded file, copy
bin
,include
, andlib
folders to%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v8.0
- You should restart your computer to apply system’s changes
- Download and install Anaconda 4.2.0 with Python 3.5
- Open Command Prompt as Administrator
- Install
TensorFlow-GPU
by enteringconda install -c anaconda tensorflow-gpu
- Enter
conda install -c anaconda keras-gpu
to install Keras-GPU
A free of charge way to experience training deep models with high-performance GPU!
- Visit Google Colaboratory
- Sign in with you personal Google account
- Menu
File
>New Python 3 notebook
- Menu
Runtime
>Change runtime type
>Hardware acceleration
>GPU
>Save
(Note that python source codes will be saved in your Google Drive, and a work shift lasts for 12 hours) - Let's get started with this Jupyter Notebook (how to use GPU, execute Linux commands, install Python packages, and read data from Google Drive)
- Download and install Anaconda 4.2.0 with Python 3.5
- Open Command Prompt as Administrator
- Install
TensorFlow
by enteringconda install -c conda-forge tensorflow
- Enter
conda install -c conda-forge keras
to install Keras
- Download
.ipynb
files to your computer. For example,D:\dl
- Open Command Prompt, type
cd /d D:\dl
- Enter
jupyter notebook
Jupyter IDE
will be opened in a web browser, open one of the downloaded programs- Select menu
Cell
>Run All
to run the program