time-series-machine-learning / tsml-eval

Evaluation tools for time series machine learning algorithms.
https://tsml-eval.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
28 stars 14 forks source link

tsml_eval.experiments.classification_cross_validation not available in tsml_eval 0.3.0 #233

Closed lngdet closed 1 month ago

lngdet commented 1 month ago

Describe the issue

In the documentation, tsml_eval.experiments.classification_cross_validation is referenced. But when I do:

from tsml_eval.experiments import classification_cross_validation

I get an error saying it doesn't exist:

ImportError: cannot import name 'classification_cross_validation' from 'tsml_eval.experiments'

I'm using version 0.3.0

Suggest a potential alternative/fix.

No response

Additional context or comments

No response

MatthewMiddlehurst commented 1 month ago

Hi, the documentation was pointing to the main branch instead of the latest release by default. I have changed it to point to the release so lessen confusion.

You can use these functions by installing the latest github build rather than the pypi release, or wait until we make a new pypi release.

lngdet commented 1 month ago

thank you for the info