shankarpandala / lazypredict

Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning
MIT License
2.78k stars 321 forks source link

Custom classifiers issue #346

Open quekjinhao opened 3 years ago

quekjinhao commented 3 years ago

Hi, I am able to call LazyClassifier and everything displays as expected.

However, when passing in a list to "classifiers" for specific algorithms, they have been showing up as either "ABCMeta" or "Type". I've attached an example passing in two classifiers but this also affects larger lists. image image image

brendalf commented 3 years ago

Hi @quekjinhao, thank you for reporting this. I'll take a look into it.

shyamcody commented 3 years ago

@quekjinhao check my reply in #352. According to the way, code is structured, you will have to send the classifier or regressor objects in a custom classifier list, otherwise, the code will fail. Let me know if that helps.