I have a dataset with two features and one outcome. I was asked to separate the data into three parts such that 70% of the data is a training set, 20% is for validation and 10% for testing. The model will be linear regression.
Why would I need both a validation set and test set here? I am not selecting a type of model or tuning hyperparameters.
There are no options to select a model as it is a linear regression in the form of $y = b_1a_1 + b_2a_2 + b_3$, where we will get $b_1$, $b_2$, and $b_3$ from the training set. I will test the model with the test set and report the error. So what is the need for a validation set?