How embetter components work with scikit-learn
mainAll embetter components are designed to be scikit-learn compatible. This means they can be used directly within sklearn.pipeline.Pipeline or make_pipeline.
Key characteristics:
- Stateless: Most components are pretrained and do not require a training step (they are used in
fit_transformortransform). - Incremental Learning: All encoding tools support the scikit-learn
partial_fitmechanic, allowing them to be used withscikit-partialfor out-of-core datasets.