mlrl.testbed.experiments.meta_data module

Author: Michael Rapp (michael.rapp.ml@gmail.com)

Provides classes for representing meta-data.

class mlrl.testbed.experiments.meta_data.MetaData(command: Command = <factory>, child_commands: list[Command] = <factory>, version: Version = <factory>, timestamp: datetime = datetime.datetime(2026, 5, 18, 21, 42, 52, 297744))

Bases: object

Meta-data that provides information about a command that has been used for running MLRL-Testbed.

Attributes:

command: The command child_commands: Commands run by the original command, e.g., in batch mode version: The version of MLRL-Testbed used for running the command timestamp: The date and time when the command was run

TIMESTAMP_FORMAT = '%Y-%m-%d_%H-%M'
child_commands: list[Command]
command: Command
property formatted_timestamp: str

The timestamp in a human-readable format.

timestamp: datetime = datetime.datetime(2026, 5, 18, 21, 42, 52, 297744)
version: Version