Validating on test data

In this tutorial the model is validated using test data, is this okay to do? I always thought in ML you weren’t supposed to do this.

Hi @AMLL, If you validate your model with test data, then it is possible that validation will yield a model that overfits on test data. Using a separate dataset, for validation and testing will make sure that your models learned their solutions and not memorized them. Thank You.