My consule frizes in the middle of running the python package lazypredict as shown below.
21%|█████████████████▊ | 9/42 [00:03<00:15, 2.15it/s]
I’ve searched on the site for similar issue and I found this. However removing QuantileRegressor as follow doesn’t solve the problem.
import sklearn
from lazypredict import Supervised
Supervised.removed_regressors.append("QuantileRegressor")
Supervised.REGRESSORS.remove(('QuantileRegressor', sklearn.linear_model._quantile.QuantileRegressor))
LazyRegressor = Supervised.LazyRegressor
I think I should remove the 9th model but I don’t know how to find the name of this model.