Gradient Descent

Gradient Descent is a mathematical optimization technique. Say we have a function: Z=wXZ=wX that defines a line, which we want to estimate. The error between our guess and this line…

Measuring Code Execution Speed

Measuring code exec speed comes up once in a while, generally if you’re coding an algorithm or doing some sort of heavy processing. To be able to see how long…