osanseviero HF staff commited on
Commit
36c5afb
1 Parent(s): 306bf08

Create class_definitions.py

Browse files
Files changed (1) hide show
  1. class_definitions.py +5 -0
class_definitions.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ from sklearn.pipeline import Pipeline
2
+
3
+ class MyPipeline(Pipeline):
4
+ def __init__(self, steps):
5
+ super().__init__(steps)