However, I am ambivalent. I also believe that doing this will help me appreciate deep learning on a deeper level (lol). The underlying concepts will not change, and this should be my only focus.
Using this api, I am asked to make a model to classify a given MNIST data set and the dataset that we’ve made in Question 1.
The api that I’ve designed basically uses everything from tensorflow except the layer api. My layer api can be found here here. I implemented only dense as that was the only requirement. The dense function creates a new tf.variable_scope
for a dense layer. This gives me the added advantage of naming weights as w
and bias as b
everytime. It also accepts values for the standard deviation of the normal distribution from which the Tensors
are initialized. For usage, refer to the notebooks here