August 2018
Intermediate to advanced
378 pages
9h 9m
English
One question that many people starting in deep learning ask is, how do I know if my model is training on a GPU? Fortunately, whether you are using a cloud instance or your local machine, you can check if the deep learning model is being trained on the GPU or the CPU. There is a utility on the instance that shows the GPU's activity. In Linux, you can type in the following command:
watch -n0.5 nvidia-smi
In Windows, you can use the following command from a command prompt:
nvidia-smi -l 1
This will run a script that outputs diagnostic messages about the GPU on the computer. If your model is currently training on the GPU, the GPU utility will be high. In the following example, we can see that it ...