Login using Social Account
     Continue with GoogleLogin using your credentials
Now we will create a pipeline to transform the complete dataset.
Import Pipeline from Scikit-learn:
from sklearn.pipeline import << your code goes here >>
Next, we will create the pipeline with the transformers that we created earlier:
preprocess_pipeline = Pipeline([
("email_to_wordcount", << your code goes here >>()),
("wordcount_to_vector", << your code goes here >>()),
])
Finally, we will use fit_transform()
to transform the dataset:
X_train_transformed = preprocess_pipeline.<< your code goes here >>(X_train)
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...