mlrl.testbed.experiments.data module

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

Provides classes for representing data.

class mlrl.testbed.experiments.data.Properties(name: str, file_name: str, symbol: str | None = '🗀')

Bases: object

The properties of input or output data.

Attributes:

name: A name to be included in log messages file_name: A file name to be used when reading from or writing to files symbol: An optional symbol that represents the input or output data

file_name: str
name: str
symbol: str | None = '🗀'
class mlrl.testbed.experiments.data.TabularProperties(name: str, file_name: str, symbol: str | None = '🗀', has_header: bool = True)

Bases: Properties

The properties of tabular input or output data.

Attributes:

has_header: True, if the tabular data has a header, False otherwise

has_header: bool = True