-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Description
pycaret version checks
-
I have checked that this issue has not already been reported here.
-
I have confirmed this bug exists on the latest version of pycaret.
-
I have confirmed this bug exists on the master branch of pycaret (pip install -U git+https://github.com/pycaret/pycaret.git@master).
Issue Description
Hello Team,
I am trying to do the forecasting using pycaret model. But I am getting the error 'cannot import name 'TimeSeriesExperiment' from 'pycaret.internal.pycaret_experiment' (/databricks/python/lib/python3.8/site-packages/pycaret/internal/pycaret_experiment/init.py)' while running the below code :
from pycaret.internal.pycaret_experiment import TimeSeriesExperiment
exp = TimeSeriesExperiment()
exp.setup(data, fh = 7, fold = 3, session_id = 123)
I am running this code on azure databricks
Reproducible Example
!pip install pycaret-ts-alpha
from pycaret.internal.pycaret_experiment import TimeSeriesExperiment
exp = TimeSeriesExperiment()
exp.setup(data, fh = 7, fold = 3, session_id = 123)
Expected Behavior
command should run successfully
Actual Results
command should run successfully
Installed Versions
import pycaret
pycaret.version # Out[1]: '3.0.0'