The Development Cycle of Neural Networks
Learn about the complete development cycle of training neural networks.
We'll cover the following...
The development (testing) cycle
To see where the testing hurdle is, we’ll tune our neural network with an iterative process. We‘ll perform the following steps:
- Tune the network’s hyperparameters.
- Train the network on the training set.
- Test the network on the test set.
- Repeat until we are happy with the network’s accuracy.
This process is similar to the ML equivalent of software development, so we can simply call it 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 ...
Ask