Skip to content

getml.pipeline.metadata

Contains the metadata related to the data frames that were originally passed to .fit(...).

Metadata

Bases: NamedTuple

Contains the metadata related to a data frame that were originally passed to .fit(...).

ATTRIBUTE DESCRIPTION
name

The name of the data frame.

TYPE: str

roles

The roles of the columns in the data frame.

TYPE: Roles

name instance-attribute

name: str

roles instance-attribute

roles: Roles

AllMetadata

Bases: NamedTuple

Contains the metadata related to all the data frames that were originally passed to .fit(...).

ATTRIBUTE DESCRIPTION
peripheral

The metadata of the peripheral tables.

TYPE: List[Metadata]

population

The metadata of the population table.

TYPE: Metadata

peripheral instance-attribute

peripheral: List[Metadata]

population instance-attribute

population: Metadata