I did a little modification to the fit.py mxnet python example file (image-classification) by adding the rmse loss:
# evaluation metrices
eval_metrics = ['accuracy']
eval_metrics.append('rmse')
Then running the MNIST training example, one can observe that the rmse is about 5.2 all the way, while the accuracy goes up to around 99%.
Should we not observe a decreasing RMSE ?
Many thanks AL