ComeçarComece de graça

Creating Pipelines

You'll now use one of the best features scikit-learn has to offer, Pipelines. Pipelines allow you to chain multiple actions, like transformations and estimations, which are applied sequentially to new data.

You'll now create a pipeline containing both a StandardScaler and a LogisticRegression estimator.

This allows you to pass unscaled data to the pipeline, where the Scaler will scale the data, and the LogisticRegression will predict the target column.

The unscaled data is available as X_train, while the labels have been loaded as y_train. A subset of the data, X_test , is also available to evaluate the model.

StandardScaler and LogisticRegression have been imported for you.

Este exercício faz parte do curso

Analyzing IoT Data in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Import pipeline
from ____ import ____

# Create Scaler and Regression objects
sc = ____()
logreg = ____
Editar e executar o código