Runner

class maze.runner.Runner

Runner interface for running Maze from CLI.

This class will be instantiated from the config obtained from hydra (cfg.runner). Then, the run method will be called, being supplied the whole hydra config (cfg).

abstract run(**kwargs)None

Perform the run. :param kwargs: Runner-specific arguments.

abstract setup(cfg: omegaconf.DictConfig)None

Sets up runner. :param cfg: Config of the hydra job.