You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature request: allow users to skip eval on train and test
Evaluating on the training and test sets is time-consuming and not necessary for self-reporting results.
We should add a flag that allow the user to skip eval on these datasets, to make scoring faster.
Accordingly, in this scenario we should modify:
goals_reached = (
train_state['validation_goal_reached'] and
train_state['test_goal_reached'])
This would speed up self-evalution even more, by stopping training when validation target is reached, avoiding unnecessary usage of computational resources.
The text was updated successfully, but these errors were encountered:
Feature request: allow users to skip eval on train and test
Evaluating on the training and test sets is time-consuming and not necessary for self-reporting results.
We should add a flag that allow the user to skip eval on these datasets, to make scoring faster.
Accordingly, in this scenario we should modify:
into:
This would speed up self-evalution even more, by stopping training when validation target is reached, avoiding unnecessary usage of computational resources.
The text was updated successfully, but these errors were encountered: