tidymodels / model-implementation-principles

recommendations for creating R modeling packages
https://tidymodels.github.io/model-implementation-principles/
41 stars 4 forks source link

Recommend tuning knob for resources allocated to model training #11

Open alexpghayes opened 5 years ago

alexpghayes commented 5 years ago

A broad class of hyperparameter tuning methods rely on being able to specify some amount of resources (iterations, time) to spend training a model. An even broader class of hyperparameter tuning algorithms is possible if models training can be paused and resumed.

We should develop some guidelines on how to do this.