GPU activation

This installation is for ubuntu 20.04 First open a terminal and write nvidia-smi to check if gpu is on. If you see this, then do: sudo nvidia-smi -pm 1. This will change the off to on. Now set the required packages for the GPU: sudo apt install nvidia-cuda-toolkit export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/extras/CUPTI/lib64 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64/ lspci -nn with this line… Continue reading GPU activation

Loading large image data

In machine learning we can struggle with problems like not enough memory. There is a good solution, for that, and you can  load the data without running out of RAM memory. The problem starts, when you load the data in one step and you holding it in a variable. That can full your memory easy.… Continue reading Loading large image data

Published
Categorized as Large data