I am training a Logistic Regression model with GridSearchCV. The log says:
Fitting 3 folds for each of 1600 candidates, totalling 4800 fits
Further, for tasks below line in printed in log:
[Parallel(n_jobs=-1)]: Done 42 tasks | elapsed: 2.9min
Is the number of tasks here(like 42 tasks as above) same as the number of fits(=4800)?
I want to estimate the time taken to finish the training?
Deciphering it step by step
Fitting 3 folds for each of 1600 candidates, totaling 4800 fits
[Parallel(n_jobs=-1)]: Done 42 tasks | elapsed: 2.9min
Let me know if you still have any doubts.