Author | Message |
---|---|
jpatel77
Posts: 44
|
Posted 15:53 Mar 15, 2019 |
Although it does not have any mention in the assignment explicitly, I just wanted to confirm if we need to use Edit: My bad. I tried to fit the best model again, when it was already a fitted one return by the grid search. Please ignore the comment above. Last edited by jpatel77 at
16:02 Mar 15, 2019.
|
kverma
Posts: 6
|
Posted 16:13 Mar 15, 2019 |
Ahh!! I am still in doubt whether to use validation_split or not. |
jpatel77
Posts: 44
|
Posted 16:30 Mar 15, 2019 |
I think my original question holds. After grid search in part-g, it returns the best params and epochs. It also returns best model found. Now in last step i.e. part h, it says:
Does this mean that we have to fit the best found model again (with best batch_size and epochs) on the training data, and then test it against testing data?
Last edited by jpatel77 at
23:29 Mar 15, 2019.
|
kverma
Posts: 6
|
Posted 16:41 Mar 15, 2019 |
Yes. We just need to use the best found model in grid search from previous step as it is, to test it against testing data. Last edited by kverma at
17:53 Mar 15, 2019.
|
mpourhoma
Posts: 39
|
Posted 14:55 Mar 17, 2019 |
Yes, just test (evaluate) the best model that you found in the Gridsearch on the testing data. Let me know if you have any other questions. |