Deep dive into Scikit-learn pipeline - Hands on Session
#datascience #machinelearning #ml
Link to video containing introduction to scikit learn pipeline - https://youtu.be/SpirD-FhxQI
In this video we will do end to end scikit learn pipeline hands on
Scikit-learn Pipeline can be used to chain multiple estimators into one. This is useful as there is often a fixed sequence of steps in processing the data, for example feature selection, normalization and classification. Pipeline serves multiple purposes here:
Convenience and encapsulation
You only have to call fit and predict once on your data to fit a whole sequence of estimators.
Joint parameter selection
You can grid search over parameters of all estimators in the pipeline at once.
Safety
Pipelines help avoid leaking statistics from your test data into the trained model in cross-validation, by ensuring that the same samples are used to train the transformers and predictors.
All estimators in a pipeline, except the last one, must be transformers (i.e. must have a transform method). The last estimator may be any type (transformer, classifier, etc.).
Ref: https://scikit-learn.org/stable/modules/compose.html#pipeline
Видео Deep dive into Scikit-learn pipeline - Hands on Session канала AIEngineering
Link to video containing introduction to scikit learn pipeline - https://youtu.be/SpirD-FhxQI
In this video we will do end to end scikit learn pipeline hands on
Scikit-learn Pipeline can be used to chain multiple estimators into one. This is useful as there is often a fixed sequence of steps in processing the data, for example feature selection, normalization and classification. Pipeline serves multiple purposes here:
Convenience and encapsulation
You only have to call fit and predict once on your data to fit a whole sequence of estimators.
Joint parameter selection
You can grid search over parameters of all estimators in the pipeline at once.
Safety
Pipelines help avoid leaking statistics from your test data into the trained model in cross-validation, by ensuring that the same samples are used to train the transformers and predictors.
All estimators in a pipeline, except the last one, must be transformers (i.e. must have a transform method). The last estimator may be any type (transformer, classifier, etc.).
Ref: https://scikit-learn.org/stable/modules/compose.html#pipeline
Видео Deep dive into Scikit-learn pipeline - Hands on Session канала AIEngineering
AI Artificial Intelligence Machine learning ML Dev Ops Data Engineering Cloud Data science datascience data science python data science tutorial scikit scikit learn scikit learn tutorial scikit learn machine learning scikit learn pipeline scikit learn pipeline tutorial scikit learn pipeline example model deployment machine learning model deployment in python
Комментарии отсутствуют
Информация о видео
5 декабря 2020 г. 18:26:21
00:35:50
Другие видео канала