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
To avoid unnecessary retraining with the same configuration, the tuning script should save the best-performing model during the tuning process, particularly when no additional training steps are required.
Implementation
After each trial t:
If model_t performs better than best_model_so_far:
Update best_model_so_far = model_t
At the end of tuning:
Save best_model_so_far
The text was updated successfully, but these errors were encountered:
Description
To avoid unnecessary retraining with the same configuration, the tuning script should save the best-performing model during the tuning process, particularly when no additional training steps are required.
Implementation
After each trial t:
model_t
performs better thanbest_model_so_far
:best_model_so_far = model_t
At the end of tuning:
best_model_so_far
The text was updated successfully, but these errors were encountered: