Deep Learning Overview

View my Deep Learning Overview : [Google Slides] Deep Learning Research Projects: [Google Slides] Beware, these things get out of date very quick. This presentation is from Oct 2016. The outline of the talk: Toy Neural Network Loss Function Stochastic Gradient Descent Forward-pass (Neural Function Evaluation) Backward-pass (Gradient of Neural function wrt to params) Recent … Continue reading Deep Learning Overview

Parallel Bulk Image Resizing – Python

Usually multi-threaded programming can be typically. One typically will need a queue to maintain the inputs. From this thread-safe queue the threads pick an input, act on it and save the result. This can usually take up most of the afternoon depending on the job. This recipe is adapted from [link]. It introduces a way … Continue reading Parallel Bulk Image Resizing – Python

Installing cuDNN Ubuntu 14.04

cuDNN is a cuda library which provides basic operations like forward and backward passes for neural networks on GPU. This is used by caffe and other toolkits. You can download cuDNN from : https://developer.nvidia.com/cudnn. Note that you need to login to be able to download. This post is just for my own reminder on cuDNN installation. … Continue reading Installing cuDNN Ubuntu 14.04

Neural Network as Universal Approximators : Intuitive Explaination

Came across this wonderful explanation of why the neural network with hidden layer are universal approximators. Although not very helpful for practical purpose gives an intuitive feel of why neural network give reasonable results. The basic idea is to analyze a sigmoid function as you change w and b . In particular effect on $latex \sigma( w\times x … Continue reading Neural Network as Universal Approximators : Intuitive Explaination

Blogs/Websites I follow

Vision/ML research Blogs http://www.computervisionblog.com/ http://nghiaho.com/ http://deeplearning.net/ http://karpathy.github.io/ http://timdettmers.com/ https://research.googleblog.com/ http://research.baidu.com/baidu-tech-blog/ https://research.facebook.com/blog/ CV/ML Softwares https://lvdmaaten.github.io/software/ http://cs.brown.edu/~pff/code.html http://www.peterkovesi.com/ http://vision.princeton.edu/code.html Notable Pages https://github.com/ChristosChristofidis/awesome-deep-learning https://github.com/jtoy/awesome-tensorflow

Tutorial Slides on Computer Network

I was a TA for HKUST course ELEC 4120 during spring of 2014 and spring of 2015. The slides here are supplementary material for the course. It contains additional explanations of the concepts, more numerical problems, and exercises. For more details of the concepts refer to the course notes of the instructor. Additionally and ideally … Continue reading Tutorial Slides on Computer Network

Vision Controlled Quadcopter Flight

Just completed (8th Dec, 2015) the Aerial Robotics course in HKUST (ELEC6910P) by Prof. SHEN Shaojie (my PhD supervisor). Most of the course credit were on the completion of the projects. Course TAs were Su Kunyue and Yang Zhengfei. My project partners were Sun Lin and Sun Ting The projects eventually connected together to make a vision … Continue reading Vision Controlled Quadcopter Flight