Monthly Archives: April 2017

static const char* const arr[] = {“a”, “b”, “c”, “d”};

char* would be a pointer to a char. const char* is a pointer to a constant char, meaning the char in question can’t be modified. char* const is a constant pointer to a char, meaning the char can be modified, … Continue reading

Posted in C/C++ | Leave a comment

Summary of Neural Network Architectures

A great summarization of CNN architectures is available at: https://culurciello.github.io/tech/2016/06/04/nets.html

Posted in ML + AI + Deep Learning | Leave a comment

UNIX Acronym List

http://www.roesler-ac.de/wolfram/acro/Fct.htm#_V

Posted in Linux | Leave a comment

Using Jupyter from Stanford Clusters

https://web.stanford.edu/group/farmshare/cgi-bin/wiki/index.php/Jupyter

Posted in ML + AI + Deep Learning | 1 Comment