Edmund Ronald Deep Neural Resources

My day-to-day useful links. If you think something should be added, just send me an email.
edmundronald at gmail dot com.

-----------------------SCRAPBOARD  (Material that will be added shortly)--------------------------------



------------------------------------------------------------------------------------------------------------------------

Ebooks/Epapers sources - search and ye shall find
Bookzz    By Categories
Google Scholar
Libgen
Kickass.to

Hale and Hearty Food for the Mind: Neural Net References & Software
Caffe Deep Net simulator,   Pete Warden Caffe VM, make instructions,  and Tutorial 
PDP book (Rummelhart, McLelland, Hinton)    PDP Handbook and Software
Microsoft Research survey Deep Learning and Applications by Li Deng and Dong Yu.
Forthcoming Bengio Goodfellow, Courville Book on Deep Learning

Tutorials
KDnuggets Resources
Toptal Introduction to Deep Learning by Ivan Vasilev

Long Introductory Courses
Hinton 2012 Coursera Lectures
Stanford Unsupervised Feature Learning and Deep Learning self-taught course (UFDL)
LeCun course on http://techtalks.tv

Portals
Deeplearning.net  tutorials, software library and  reading list.
KDnuggets

Interviews / Bios
Yann LeCun, Spectrum
Hinton
Bengio (AMA)

Misc Related Reference Material
Gartner's Hype Cycle
Artificial Intelligence for Business
Toptal Introduction to  Machine Learning  by Nick McCrea

OpenCV References & Software
OpenCV main site

Vagrant References &Software
Vagrant main site
Unofficial Catalog of Vagrant Boxes (vagrantbox.es)
Ubuntu Daily Builds

Maths Software
My Octave on Mac easy install instructions are here.
Matlab Easter Bunny


------------------------------------CODE SNIPPETS AND  INSTALL GUIDES---------------------------

Make cut and paste work seamlessly between vagrant vm and Mac host
enable cut and paste in VirtualBox
cut and paste in linux terminals etc is ctl-shift-c and ctl-shift-v

Make X work over ssh for Vagrant. Add this to Vagrantfile
config.ssh.forward_agent = true
config.ssh.forward_x11 = true

On Mac, to get X to display
xhost +



to reset passwd, ssh in then type "sudo passwd vagrant". 

Set a VM's Mac Address


------------------------------------Mac stuff---------------------------

installing-opencv-2-4-9-on-mac-osx-with-python-support


------------------------------------OCTAVE STUFF------------------------------------------------------------


PPA:
1
2
3
$ sudo add-apt-repository ppa:octave/stable
$ sudo apt-get update
$ sudo apt install octave
To launch Octave with its GUI:

1
$ octave --force-gui

The plot function allows you to create simple x-y plots with linear axes. For example,
x = -10:0.1:10; plot (x, sin (x));

installing packages in octave

avoid libgl warnings in octave
export LIBGL_ALWAYS_SOFTWARE=1
octave

On Mac with an old Octave, add
setenv ("GNUTERM", "X11")
to your octaverc file, normally located at /usr/local/share/octave/site/m/startup.



No comments:

Post a Comment

Hey, let me know what you think of my blog, and what material I should add!