Skip to main content

Posts

Showing posts with the label python machine learning

What is lazypredict automl library and how to use it?

                               Lazypredict: The automl library Introduction: Recently I have started my journey with automl, and explored the sberbank's light automl framework as well auto-eda with pandas profiling in this post . In this post, I will explore the lazypredict framework written by Shankar Pandala sir. In this post, we will first show how to use the library, what are the outputs we get from this, and then finally, we will go in-depth of the code; to see how lazypredict does what it does. Usage: For this part, we will just use the github repo's code example. There are two classes, LazyClassifier and LazyRegressor, respectively for classifier and regressor. We can import the classifier class if your problem is classification, and import regressor if you have a regression problem. X_train, X_test, y_train, y_test = train_te...