In this notebook, we will build a simple multilayer perceptron, basic building block for Neural Networks, with TensorFlow. We are using MNIST example dataset provided by default with TensorFlow package. Here are the hyper parameters we choose to run initial model: learning_rate = 0.001 training_epochs = 10 batch_size = 256 …