Aim
kedro_aim.aim.utils
kedro_aim.aim.utils.list_metrics_in_run(run)
List all metrics in the run.
HACK: This is a workaround for the metrics property of aim.Run which is broken.
In the future, we should use the metrics property of aim.Run instead of this.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
run |
Run
|
A aim run object. |
required |
Yields:
| Type | Description |
|---|---|
Generator[SequenceView, None, None]
|
The metrics that are contained in the run. |
Source code in kedro_aim/aim/utils.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
kedro_aim.aim.utils.list_metrics_names_in_run(run)
List the names of all metrics in the run.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
run |
Run
|
A aim run object. |
required |
Yields:
| Type | Description |
|---|---|
Generator[str, None, None]
|
The names of the metrics that are contained in the run. |
Source code in kedro_aim/aim/utils.py
24 25 26 27 28 29 30 31 32 33 34 | |