mlrl.testbed.experiments.recipe module¶
Author: Michael Rapp (michael.rapp.ml@gmail.com)
Provides classes for setting up experiments.
- class mlrl.testbed.experiments.recipe.Recipe¶
Bases:
ABCAn abstract base class for all classes that provide access to the ingredients that are needed by different operational modes for setting up experiments.
- abstractmethod create_dataset_splitter(args: Namespace) DatasetSplitter¶
Creates and returns the DatasetSplitter to be used in experiments.
- Parameters:
args – The command line arguments specified by the user
- Returns:
The DatasetSplitter that has been created
- abstractmethod create_experiment_builder(args: Namespace) Builder¶
Creates and returns the Experiment.Builder to be used for configuring experiments.
- Parameters:
args – The command line arguments specified by the user
- Returns:
The Experiment.Builder that has been created
- abstractmethod create_problem_domain(args: Namespace) ProblemDomain¶
Creates and returns the ProblemDomain to be used in experiments.
- Parameters:
args – The command line arguments specified by the user
- Returns:
The ProblemDomain that has been created