ray.tune.logger.aim.AimLoggerCallback.__init__#
- AimLoggerCallback.__init__(repo: str | None = None, experiment_name: str | None = None, metrics: List[str] | None = None, **aim_run_kwargs)[source]#
Initialize the Aim logger callback.
- Parameters:
repo – Aim repository directory or a
Repoobject that the Run object will log results to. If not provided, a default repo will be set up in the experiment directory (one level above trial directories).experiment_name – Sets the
experimentproperty of each Run object, which is the experiment name associated with it. Can be used later to query runs/sequences. If not provided, the default will be the Tune experiment name set byRunConfig(name=...).metrics – List of metric names (out of the metrics reported by Tune) to track in Aim. If no metric are specified, log everything that is reported.
**aim_run_kwargs – Additional arguments that will be passed when creating the individual
Runobjects for each trial. For the full list of arguments, please see the Aim documentation: https://aimstack.readthedocs.io/en/latest/refs/sdk.html