I'm going to use pycaret for a regression problem. Although according to its tutorials (here: regression tutorial/ beginner level ) models such as xgboost and catboost are available in the package, I can not recall them in my colab environment. How can I fix this problem?
Note: As I said, I'm running my code in the google colab and these are my codes:
!pip install --pre pycaret
# after the above line you should restart your runtime
from pycaret.regression import *
# here, I give my data to the setup
setup (data = data, target = price)
models()