CoolFace
Modelpublic

scikit-learn-examples/example

sourceHugging Faceupdated 5y agoView on Hugging Face
0likes40downloads
class_definitions.py5 linesDownload Raw Back to root
1from sklearn.pipeline import Pipeline2 3class MyPipeline(Pipeline):4  def __init__(self, steps):5    super().__init__(steps)