A Testing Conundrum
To see where the testing hurdle is, consider that we’re going to tune our neural network with an iterative process. That process is going to work like this:
- Tune the network’s hyperparameters.
- Train the network on the training set.
- Test the network on the test set.
- Repeat until we’re happy with the network’s accuracy.
This process is pretty much the ML equivalent of software development, so we can simply call it like that: “the development cycle.”
We already went through a few iterations of development in the previous chapter, when we measured the network’s performance with different batch sizes. However, we overlooked a distressing fact: the development cycle violates the Blind Test Rule. Here is why.
During development, we ...
Get Programming Machine Learning now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.