I am currently building a neural network to classify handwritten characters. I have downloaded the EMNIST dataset to train my neural network. For testing, I also collected samples from students. Is the approach to use different sources for the training and testing dataset valid?
2026-03-25 01:15:10.1774401310
Training and testing dataset from different source Neural network
65 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
Normally we would use a dataset that is available publicly. Separate it into training and testing sets. This allows for replication of your results and comparison to other approaches.
You could also try your trained neural net on another data set as you suggest, but I would suggest you start by replicating results on a public dataset to check your implementation is correct.