Classify MNIST via Softmax Regression and TensorFlow with eager execution
By @dnl0x00 Recently, Google announced the eager execution for TensorFlow. Eager execution has some advantages when doing quick prototyping. The code is easier to debug because operations are executed immediately and you can build models via Python control flow (including if statements and for and while loops). You don’t have...
[Read More]