mlr_optimizers_async_random_search {bbotk} | R Documentation |
Asynchronous Optimization via Random Search
Description
OptimizerAsyncRandomSearch
class that implements a simple Random Search.
Dictionary
This Optimizer can be instantiated via the dictionary
mlr_optimizers or with the associated sugar function opt()
:
mlr_optimizers$get("async_random_search") opt("async_random_search")
Super classes
bbotk::Optimizer
-> bbotk::OptimizerAsync
-> OptimizerAsyncRandomSearch
Methods
Public methods
Inherited methods
Method new()
Creates a new instance of this R6 class.
Usage
OptimizerAsyncRandomSearch$new()
Method clone()
The objects of this class are cloneable with this method.
Usage
OptimizerAsyncRandomSearch$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.
Source
Bergstra J, Bengio Y (2012). “Random Search for Hyper-Parameter Optimization.” Journal of Machine Learning Research, 13(10), 281–305. https://jmlr.csail.mit.edu/papers/v13/bergstra12a.html.
[Package bbotk version 1.0.1 Index]