CONNECT TO A REMOTE IPYTHON/ITORCH NOTEBOOK

Over the past few months,I use ITorch / IPython notebooks frequently. Combining interactive programing with markdown documentation and portability, IPython notebooks are a powerful scientific-computing tool. Working within a notebook …

Setup a deep learning machine – step3 . install opencv

PREPARE YOUR UBUNTU SYSTEM DEPENDENCIES BY EXECUTING THIS COMMAND: sudo apt-get install build-essential cmake git ffmpeg libopencv-dev libgtk-3-dev python-numpy python3-numpy libdc1394-22 libdc1394-22-dev libjpeg-dev libpng12-dev libtiff5-dev libjasper-dev libavcodec-dev libavformat-dev libswscale-dev libxine2-dev …

Setup a deep learning machine – step2 . install CUDA and CUDNN

DOWNLOAD CUDA  FROM NVIDIA INSTALL CUDA TOOLKIT sudo chmod +x  cuda_X.Y.Z_linux.run sudo ./cuda_X.Y.Z_linux.run POST-INSTALL export CUDA_HOME=/usr/local/cuda-8.0 export LD_LIBRARY_PATH=${CUDA_HOME}/lib64:$LD_LIBRARY_PATH PATH=${CUDA_HOME}/bin:${PATH} export PATH #make .conf file,Add following lines to the file and …