Keras Deep Learning Cheat Sheet in Python

A Keras cheat sheet provided by KDNuggets that no longer works. I had to go to the Wayback Machine to find it and update it for you, my lovely readers. Keras Deep Learning Cheat Sheet

Resnet 512

A flowchart/gist of Resnet 512.

Tensorflow Meets PyTorch

This is Medium toll-gated but worth a good read. PyTorch rules them all these days and rightfully so. Whether eager execution makes your program is a little slower or a lot slower depends on how much of your computation is spent in high arithmetic intensity ops like conv or matmul. IE, doing pure matrix multiplications (longer than 1 millisecond) is not much different whether you use TensorFlow eager, PyTorch or TensorFlow classic. ...