lazypredict icon indicating copy to clipboard operation
lazypredict copied to clipboard

Taking too much time to run .

Open Vinitkumar89 opened this issue 4 years ago • 18 comments

  • Lazy Predict version:
  • Python version:
  • Operating System:

Description

I tried to run lazypredict regressor on a black friday sales train dataset n it gets stuck on 60 %-63% . dataset has 55,000 rows.

What I Did


 60%|█████████████████████████████████████████████████▌                                | 26/43 [33:11<04:11, 14.82s/it]

Vinitkumar89 avatar Jan 20 '21 15:01 Vinitkumar89

Hi @Vinitkumar89 , thank you for the report.

How many features your dataset has? There is categorical features or all features are numerical?

brendalf avatar Feb 06 '21 15:02 brendalf

Hi @brendalf.

sorry for the late reply. It has 2 categorical and 10 numerical features in it. with train data having 550068 rows and test data having 233529 rows.

Vinitkumar89 avatar Feb 17 '21 05:02 Vinitkumar89

@shankarpandala, can you help me here? You know what model the lazypredict is stuck (step 26/43)? Different version of lazypredict tends to have a different number of classifiers/regressors to train. I think that a quick win here can be the progress bar showing up what model is currently running.

brendalf avatar Feb 17 '21 13:02 brendalf

We can see which model is running by setting verbose>1 Some models take really long time and memory to build models.

I have manually removed them from the list already but still there are some models that take long time.

My long term plan is to divide algorithms by time-complexity let users choose which complexity they want

shankarpandala avatar Feb 17 '21 13:02 shankarpandala

I would like to work on this I might have an idea on how to improve the speed. How do I contribute

abbasshujah avatar Jul 16 '21 22:07 abbasshujah

@shankarpandala - I also face the same issue. It is stuck at 74% more than 5 hours. My dataset size is also small. It has only 5900 rows and 70 features. could 70 features be the culprit? I didn't do feature engineering/selection yet. I just passed the train and test as it is to see how the model is doing. Can help me please? Is there anyway to fix this issue? I can sponsor by paying 50 USD

SSMK-wq avatar Nov 10 '22 09:11 SSMK-wq

I've had a similar issue as described by @SSMK-wq. My LazyRegressor got stuck on 74% too and I had left it for 2h+.

My dataset is around 8000r/150c, filled with binary independent 1/0 values predicting a continuous target variable.

I use lazypredict as an initial screen and have enjoyed it's user-friendly low code workflow.

@shankarpandala It would be great if you could include a timeout = threshold parameter within the LazyRegressor() that when passed the algorithm would skip to the next model. This would save a lot of time and avoid waiting for a model which you probably wouldn't use.

Thanks a lot for all your work. Top stuff!

jahnfirth avatar Nov 14 '22 14:11 jahnfirth

I've had a similar issue as described by @SSMK-wq. My LazyRegressor got stuck on 74% too and I had left it for 2h+.

My dataset is around 8000r/150c, filled with binary independent 1/0 values predicting a continuous target variable.

I use lazypredict as an initial screen and have enjoyed it's user-friendly low code workflow.

@shankarpandala It would be great if you could include a timeout = threshold parameter within the LazyRegressor() that when passed the algorithm would skip to the next model. This would save a lot of time and avoid waiting for a model which you probably wouldn't use.

Thanks a lot for all your work. Top stuff!

There is already a way to skip models by specifying the algorithms. Time based skipping doesn't work with windows so I didn't implement it

shankarpandala avatar Nov 14 '22 14:11 shankarpandala

@shankarpandala - I also face the same issue. It is stuck at 74% more than 5 hours. My dataset size is also small. It has only 5900 rows and 70 features. could 70 features be the culprit? I didn't do feature engineering/selection yet. I just passed the train and test as it is to see how the model is doing. Can help me please? Is there anyway to fix this issue? I can sponsor by paying 50 USD

Maybe some algorithm is taking a long time to train. You can skip those algorithms that are taking time. You can specify the list of algorithms you want.

shankarpandala avatar Nov 14 '22 14:11 shankarpandala

@shankarpandala - how to specify the list of algorithms that we want to try? Is there any syntax that you can share? Am not able to find anything in the documentation. Can help please?

SSMK-wq avatar Nov 15 '22 07:11 SSMK-wq

Hello dears,

@Vinitkumar89 maybe you are facing the same issue as me . make the parametrs Verbose =1 and ignore_warnings=False to see the warnings messages .

For my case i am using OneHotEncoder for the Categorical Data but when i am fitting the Data to LazyRegressor he show me a warning regrading the unkown categories found . (There is some categories on test dataset not available on training dataset) on OneHotEncoder there is a way to avoid the issue by making the parameter "handle_unknown="ignore" " but on lazyPredict Package i didn't found anything useful for solve this issue on Documentation .

@shankarpandala could you please help if there is anyway to avoid this issue ??

Thanks Guys for This interessting Subject .

hakkache avatar Nov 21 '22 18:11 hakkache

Hello Dears ,

i hope you're doing fine :) there is any news regarding my question ?

Thanks for your help

hakkache avatar Nov 27 '22 17:11 hakkache

@SSMK-wq It seems that you can specify it either with a string ("all"), or with a list of classifiers (probably model classifiers from scikit) if self.classifiers == "all": self.classifiers = CLASSIFIERS else: try: temp_list = [] for classifier in self.classifiers: full_name = (classifier.name, classifier) temp_list.append(full_name) self.classifiers = temp_list except Exception as exception: print(exception) print("Invalid Classifier(s)")

danielwalke avatar Dec 05 '22 09:12 danielwalke

@shankarpandala - how to specify the list of algorithms that we want to try? Is there any syntax that you can share? Am not able to find anything in the documentation. Can help please?

Here's some code to only include regressors that are in the "chosen_regressors" list. The actual list of regressors is quite long, if you want them jump into the code def for the LazyRegressor class. I've just included the first two in the list for this example.

from sklearn.utils import all_estimators
from sklearn.base import RegressorMixin
chosen_regressors = [
    'SVR',
    'BaggingRegressor'
]

REGRESSORS = [
    est
    for est in all_estimators()
    if (issubclass(est[1], RegressorMixin) and (est[0] in chosen_regressors))
]

reg = LazyRegressor(verbose=1, ignore_warnings=False, custom_metric=None, regressors=REGRESSORS)

I had this issue with the 'GaussianProcessRegressor' You'll see the code that this has been adapted from here https://github.com/shankarpandala/lazypredict/blob/aad245d602f080575d05ec68750fa9c229aeea30/lazypredict/Supervised.py#L77

dchecks avatar Jan 06 '23 11:01 dchecks

@dchecks I have the same issue, and using your method, I specified all the models except GaussianProcessRegressor and the training worked. Thanks for posting this.

Unco3892 avatar Feb 20 '23 20:02 Unco3892

I tried adding a LGBM regressor to the list of chosen regressors and it wasn't added, any ideas what I might have done wrong? image

Lramos505 avatar Jun 08 '23 00:06 Lramos505

@Lramos505 According to the codebase, LGBMRegressor is already included.
Check out line 84 at https://github.com/shankarpandala/lazypredict/blob/dev/lazypredict/Supervised.py I see it in my output.

Also, you can probably reverse-engineer this GitHub entry to get where you want if you still have issues: https://stackoverflow.com/a/76557962/6712832

KayO-GH avatar Jun 26 '23 15:06 KayO-GH

Just for completion, here is the code for classification algorithms. Also,from my experience, SVC is taking too long in problems with real data, so it's better to drop it from classifiers to try with this LazyClassifier.

`from sklearn.utils import all_estimators from sklearn.base import ClassifierMixin

removed_classifiers = [ "ClassifierChain", "ComplementNB", "GradientBoostingClassifier", "GaussianProcessClassifier", "HistGradientBoostingClassifier", "MLPClassifier", "LogisticRegressionCV", "MultiOutputClassifier", "MultinomialNB", "OneVsOneClassifier", "OneVsRestClassifier", "OutputCodeClassifier", "RadiusNeighborsClassifier", "VotingClassifier", 'SVC','LabelPropagation','LabelSpreading','NuSV'] classifiers_list = [est for est in all_estimators() if (issubclass(est[1], ClassifierMixin) and (est[0] not in removed_classifiers))]`

surzua avatar Jul 31 '23 20:07 surzua