Compare commits

...

2 Commits

Author SHA1 Message Date
Szymon Bartanowicz
fb48e4e5f5 fix 2024-05-14 23:30:16 +02:00
Szymon Bartanowicz
a860f43d29 fix 2024-05-14 23:25:25 +02:00

View File

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