Pipelines & Custom Transformers in scikit-learn: The step-by-step guide (with Python code)

preview_player
Показать описание
Implement custom transformers and pipelines in scikit-learn using python.

Рекомендации по теме
Комментарии
Автор

Great video! You really understand the nuances of productionisation. A step above other resources on the topic 👍

dgory
Автор

This is one hell of a comprehensive tutorial on Pipelines. Thank you for this.

imdadood
Автор

Great video Himanshu, I was looking this kind of video on YouTube and I am lucky, I find your channel

im_Ashutosh
Автор

This is brilliantly explained. I was looking at a lot of sources explaining this very topic but none of them did it as lucidly as you. Thanks a ton!

abirkar
Автор

very few tutorials on this topic and you explain very well.. I also read you blog on this topic.... thank you so much

torque
Автор

Nice explanation about the custom Transformers. i have never seen this implementation but you did it. thanks

BalaMurugan-cmev
Автор

wow you are rock
the way to explain is tremendous.. please make some more videos.

CrazyFunCricket
Автор

Clear, on point and proper do's and dont's that no one would cover! 👍

cooldudesheks
Автор

Thanks a lot for the video that accompanies the wonderful article. I always find articles in general a bit more challenging to grasp. Providing a video to accompany it a great idea. I am now able to follow the article much better.

gayathrigirishnair
Автор

Thank you, Sir. It's really helpful

swarnachoppella
Автор

It was a nice informative video sir. Looking forward for more of the videos like this

rakeshbaral
Автор

thanks Himanshu, this tutorial was greatly needed!

lando
Автор

Thank you so much man. You have no idea how badly I needed one of these tutorials.

godwinkhalko
Автор

really loved it, can wait to use this powerful feature <3

aimenbaig
Автор

nice video it is very helpful for my course ...it would be great if u make full ML course

neyagapulasiddartha
Автор

Sir, This video was really helpful 🙏🏼. Thank you for all your works.... are you planning to make any more machine learning or scikit learn playlists or videos?

manaschhotray
Автор

In case the target is a categorical feature, how would we call CustomTargetTransformer class, since TransformedTargetRegressor would work for Regression problems? Although unlikely, would the TransformedTargetRegressor work for the classification problems?

I am thinking to implement Ordinal Encoding to my target variable in transform() and performing inverse_transform() using the same OrdinalEncoder() class, but I am not sure how to apply that through transformers and Pipelines. Even when I am trying through ColumnTransformer() class, it's throwing an error - ValueError: A given column is not a column of the dataframe - since it's not able to find the "y" when the fit() is called.

Would appreciate inputs on this! 🙏

cooldudesheks
Автор

@10:17 won't the predict of LinearRegression will be called instead of that estimator class?

brijesh
Автор

1. Why is the fit method left empty? Under what circumstance does fit method need be be defined with some action?
2. X-train and y_train are both passed to the pipeline. Does the transformer apply to both x_train and y_train?

ramendrachaudhary
Автор

How does transform and inverse trasform work automatically with the customTargetTransformer?? Are the names transform and inverse_transform mandatory in this case?

ramendrachaudhary
welcome to shbcf.ru