Skip to content

Instantly share code, notes, and snippets.

View karandwivedi42's full-sized avatar

Karan Dwivedi karandwivedi42

  • New Delhi, India
View GitHub Profile
27581 execve("/usr/bin/tmux", ["tmux"], [/* 24 vars */]) = 0
27581 brk(NULL) = 0xb13bd27000
27581 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
27581 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc721673000
27581 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
27581 open("/usr/local/cuda/lib64/tls/x86_64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
27581 stat("/usr/local/cuda/lib64/tls/x86_64", 0x7ffc63cc61e0) = -1 ENOENT (No such file or directory)
27581 open("/usr/local/cuda/lib64/tls/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
27581 stat("/usr/local/cuda/lib64/tls", 0x7ffc63cc61e0) = -1 ENOENT (No such file or directory)
27581 open("/usr/local/cuda/lib64/x86_64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
@karandwivedi42
karandwivedi42 / torch_alexnetowtbn.md
Last active September 16, 2016 12:17
AlexNet trained in Torch7
require 'image'
-- Image Transformations
local M = {}
M.ColorNormalize = function()
return function(img)
img = img:clone()
local x = meanstd
for i=1,3 do