ray.tune.search.bayesopt.BayesOptSearch.restore_from_dir#
- BayesOptSearch.restore_from_dir(checkpoint_dir: str)#
从给定的 checkpoint_dir 恢复搜索器的状态。
通常,您应该使用此函数从实验目录(如
~/ray_results/trainable
)中恢复。tuner = tune.Tuner( cost, run_config=train.RunConfig( name=self.experiment_name, storage_path="~/my_results", ), tune_config=tune.TuneConfig( search_alg=search_alg, num_samples=5 ), param_space=config ) tuner.fit() search_alg2 = Searcher() search_alg2.restore_from_dir( os.path.join("~/my_results", self.experiment_name)