Only Few Seats Left for Advanced Certification Courses on Data Science, ML & AI by E&ICT Academy IIT Roorkee
Apply NowNow let's join the numerical and categorical pipelines.
Join the two pipeline and save it in a variable named preprocess_pipeline
:
from sklearn.pipeline import FeatureUnion
<< your code goes here >> = FeatureUnion(transformer_list=[
("num_pipeline", num_pipeline),
("cat_pipeline", cat_pipeline),
])
Fit the training data in this pipeline:
X_train = preprocess_pipeline.fit_transform(<< your code goes here >>)
Save the labels in y_train
:
<< your code goes here >> = train_data["Survived"]
No hints are availble for this assesment
Answer is not availble for this assesment
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...