Source code for autoflow.pipeline.components.preprocessing.encode.label
from autoflow.pipeline.components.preprocessing.encode.base import BaseEncoder
__all__ = ["LabelEncoder"]
[docs]class LabelEncoder(BaseEncoder):
class__ = "LabelEncoder"
module__ = "autoflow.feature_engineer.encode.label_encode"