Compare commits

..

No commits in common. "fb48e4e5f507b838a64ed864e7be0c89a679bd80" and "a3b003c42210c4fdea058c5116495124f6d78955" have entirely different histories.

View File

@ -22,6 +22,7 @@ preprocessor = ColumnTransformer(
('num', StandardScaler(), ['Age', 'BodyweightKg']),
('cat', OneHotEncoder(), ['Sex'])
],
remainder='passthrough'
)
pipeline = Pipeline(steps=[