Some choice to make when building a neural network with JMP Pro:
- One or two layers
- Number of nodes in each layer
- Types of nodes
- Quantity and learning rate when applying boosting
All of these choices represent parameters that you choose to tune your model to get the best possible fit. Too highly tuned and you get over-fitting. So the validation set is used to help protect against over-fitting your model as a result of your choice of these tuning parameters.
Since you are using the validation set to help in the choice of model paremeters it is no longer an indepedent assessment of the performance of your model. That's where the test set comes in.
-Dave