Skip to main content
Version: Main branch

superduper_sklearn

superduper allows users to work with arbitrary sklearn estimators, with additional support for pre-, post-processing and input/ output data-types.

Installation

pip install superduper_sklearn

API

ClassDescription
superduper_sklearn.model.SklearnTrainerA trainer for sklearn models.
superduper_sklearn.model.EstimatorEstimator model.

Examples

Estimator

from superduper_sklearn import Estimator
from sklearn.svm import SVC
model = Estimator(
identifier='test',
object=SVC(),
)

Training Example

Read more about this here