Right now, we only allow grid_search_folds to be read in from a specified folds_file if the task is 'train' (see here).
This means that the correct behavior is not exhibited for the evaluate or predict tasks which does not make sense since in terms of grid-search, these tasks are basically the same as the train task.
Right now, we only allow
grid_search_folds
to be read in from a specifiedfolds_file
if thetask
is'train'
(see here).This means that the correct behavior is not exhibited for the
evaluate
orpredict
tasks which does not make sense since in terms of grid-search, these tasks are basically the same as thetrain
task.