automl/auto-sklearn

Avoid costly re-building of pipelines

Open

#443 opened on 2018年3月21日

GitHub で見る
 (3 comments) (0 reactions) (0 assignees)Python (1,265 forks)batch import
Good first issueenhancement

Repository metrics

Stars
 (7,270 stars)
PR merge metrics
 (30d に merged PR はありません)

説明

Currently, SMAC suggests hyperparameter configurations which are independent of the dataset size. For example, the hyperparameter classifier:max_features which is specified between zero and one is transformed according to max_features = int(n_features ** classifier:max_features). Assuming the dataset in question has only 10 features, SMAC does not know that most values of the tuned hyperparameter map to the same hyperparameter applied to the actual model. Therefore, one needs to track the 'actual' hyperparameters after transformation and check whether they are re-used, and return a cached function value to SMAC if done so.

Initial experiments suggest that 1-2% of the overall runs are actually re-optimizations.

コントリビューターガイド