DashAI.back.converters.base_converter.BaseConverter

class BaseConverter[source]

Base class for all converters

Converters are for modifying the data in a supervised or unsupervised way (e.g. by adding, changing, or removing columns, but not by adding or removing rows)

__init__()

Methods

__init__()

fit(x[, y])

Fit the converter.

get_schema()

Generates the component related Json Schema.

transform(x[, y])

Transform the dataset.

validate_and_transform(raw_data)

It takes the data given by the user to initialize the model and returns it with all the objects that the model needs to work.

Attributes

TYPE