0

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()
savasci
  • 23
  • 4

1 Answers1

0

Well. I could resolve the problem. You must enter the below code to recall all functions in pycaret:

!pip install pycaret[full]
savasci
  • 23
  • 4