Город МОСКОВСКИЙ
00:09:06

Understanding Pipeline in Machine Learning with Scikit-learn (sklearn pipeline)

Аватар
Python: новое поколение программистов
Просмотры:
22
Дата загрузки:
02.12.2023 03:50
Длительность:
00:09:06
Категория:
Обучение

Описание

Often in Machine Learning and Data Science, you need to perform a sequence of different transformations of the input data (such as finding a set of features or generating new features) before applying a final estimator. Pipeline gives you a single interface for encapsulating transformers and predictors to simplify the process. Since transformers are usually combined with estimators for preprocessing, using pipeline in scikit-learn can be really useful. To be precise, Pipelines sequentially apply a list of transformers and a final estimator. Therefore, the purpose of the pipeline is to assemble several steps that can be cross-validated while setting different parameters. In this video, we discuss the Python implementation of Pipeline using a polynomial regression example.

#Transformer #Estimator #Pipeline

Рекомендуемые видео