Skip to content

Instantly share code, notes, and snippets.

View sivagnanamn's full-sized avatar

Sivagnanam Namasivayamurthy sivagnanamn

  • Bangalore, India
View GitHub Profile
@sivagnanamn
sivagnanamn / nvcc_sm_arch.txt
Created February 27, 2018 03:03
Check NVIDIA's nvcc sm architecture flags
https://github.com/tpruvot/ccminer/wiki/Compatibility
http://arnon.dk/matching-sm-architectures-arch-and-gencode-for-various-nvidia-cards/
@sivagnanamn
sivagnanamn / YOLO_train_guides.txt
Created February 27, 2018 04:26
YOLO training guides
https://github.com/AlexeyAB/darknet#how-to-train-to-detect-your-custom-objects
https://timebutt.github.io/static/how-to-train-yolov2-to-detect-custom-objects/
https://github.com/drforester/Guide_to_using_YOLOv2
https://github.com/unrealcv/synthetic-computer-vision
https://www.machinelearningplus.com/101-numpy-exercises-python/
Set time zone:
----------------
sudo timedatectl set-timezone <timeszone>
List time zones:
------------------
timedatectl list-timezones
Ex:

macOS: 10.13.3

WebDriver: 387.10.10.10.25.156

CUDA Toolkit: 9.1.128

cuDNN: 7

NVDAEGPUSupport: 6

@sivagnanamn
sivagnanamn / cuDNN_installation_steps.txt
Created March 20, 2018 13:52
cuDNN installation on Mac OS
# cuDNN 7.0.4 - Download link
https://developer.nvidia.com/compute/machine-learning/cudnn/secure/v7.0.4/prod/9.0_20171031/cudnn-9.0-osx-x64-v7
#Extract cuDNN tar file
tar -xzvf cudnn-9.0-osx-x64-v7.tgz
# Copy the cuDNN headers into CUDA installation path
sudo cp cuda/include/cudnn.h /usr/local/cuda/include
sudo cp cuda/lib/libcudnn* /usr/local/cuda/lib/
@sivagnanamn
sivagnanamn / bazel0.8.1_build_from_source.txt
Created March 20, 2018 14:20
Steps to install bazel 0.8.1 from source in MAC
$ mkdir ~/temp && cd ~/temp
$ curl -L https://github.com/bazelbuild/bazel/releases/download/0.8.1/bazel-0.8.1-installer-darwin-x86_64.sh -o bazel-0.8.1-installer-darwin-x86_64.sh
$ chmod +x bazel-0.8.1-installer-darwin-x86_64.sh
$ ./bazel-0.8.1-installer-darwin-x86_64.sh
@sivagnanamn
sivagnanamn / Xcode8.3.2_download_links.txt
Created March 20, 2018 14:43
Xcode 8.3.2 download links
@sivagnanamn
sivagnanamn / Git_proxy.txt
Created April 2, 2018 02:45
Setting proxy for GIT
https://www.emilsit.net/blog/archives/how-to-use-the-git-protocol-through-a-http-connect-proxy/