Running MNIST and Fashion-MNIST side by side is a better exercise than either alone, and the reason is instructive: same shape, same size, same architecture, and the accuracy you get is very different. That gap is the whole lesson about data difficulty versus model capacity, delivered without changing a single hyperparameter. Fashion-MNIST is also where confusion matrices start earning their keep, because the errors are not uniform - shirt, coat and pullover collapse into each other while trousers are near-perfect. Looking at which classes get confused teaches more than the aggregate number does, and it is the same habit that later stops you from shipping a model that is excellent on average and useless on the one class that matters.