I need some help for setting up my linux box for scaled-yolov4. My linux box have a gpu card, Nvidia quadro P620 2GB card. running linux mint 20.4 = ubuntu 20.4.
I have anaconda setup. But didn't help much. This is what I did.
- I installed the cuda 11.2 by using the following:
sudo mv cuda-ubuntu2004.pin /etc/apt/preferences.d/cuda-repository-pin-600
wget https://developer.download.nvidia.com/compute/cuda/11.2.1/local_installers/cuda-repo-ubuntu2004-11-2-local_11.2.1-460.32.03-1_amd64.deb
sudo dpkg -i cuda-repo-ubuntu2004-11-2-local_11.2.1-460.32.03-1_amd64.deb
sudo apt-key add /var/cuda-repo-ubuntu2004-11-2-local/7fa2af80.pub
sudo apt-get update
sudo apt-get -y install cuda
and then using conda to install the rest. In this case, the detect.py works fine, but train.py didn't work with out of memory error.
- I installed the CUDA10.2, things work without GPU, so its very slow.
Can someone tell me the right way to install NVIDIA card and CUDA and setup the environment for the scaled-yolov4? Thank you very much.