Title. For some reason, xgboost isn't showing up as an option for models I can use in pycaret's regression module. I've installed it as needed
Asked
Active
Viewed 5,711 times
1 Answers
8
I was facing the same issue while working on Google Colab. Instead of doing a normal pip install pycaret
, do a full install pip install pycaret[full]
. You can test what all models you have available by running models()
after you have finished setting up the experiment using setup()
.

shobhit_kulshreshtha
- 91
- 4
-
This also installs catboost, which is not installed otherwise. – wordsforthewise Jul 01 '21 at 04:17
-
I ma also facing the same issue byt with Catboost.But this lacks many Setup paramters tlike fix_imbalance in classification – Scope Aug 16 '22 at 07:35