Tag: mnist

  • Tensorflow: training loop from scratch

    Tensorflow: training loop from scratch

    The deep learning model has model weights which start from a random state wen the model object is created. As we expose the model with the training data, the weights are modified such that their mathematical operations produce values close to the training labels. Following are the major things that happen during training: If we…