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)

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

file_name: str
name: str
class mlrl.testbed.experiments.data.TabularProperties(name: str, file_name: str, 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