Skip to content

Commit c850af9

Browse files
Add a few removed estimators back (#77)
* release * seql * remove stuff in aeon and eval * fixes * temp comment scikit-fda * version * add a few back * add a few back
1 parent 9965bf1 commit c850af9

14 files changed

+2495
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please see [`tsml_eval`](https://github.com/time-series-machine-learning/tsml-ev
1616
is more of a sandbox for testing out new ideas and algorithms. It may contain some
1717
algorithms and implementations that are not available in the other toolkits.
1818

19-
The current release of `tsml` is v0.6.0.
19+
The current release of `tsml` is v0.6.1.
2020

2121
## Installation
2222

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "tsml"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
description = "A development sandbox for time series machine learning algorithms."
99
authors = [
1010
{name = "Matthew Middlehurst", email = "m.b.middlehurst@soton.ac.uk"},
@@ -50,6 +50,7 @@ dependencies = [
5050
all_extras = [
5151
"grailts",
5252
# "scikit-fda>=0.7.0",
53+
"statsmodels>=0.12.1",
5354
"wildboar",
5455
]
5556
unstable_extras = [

tsml/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""tsml."""
22

3-
__version__ = "0.6.0"
3+
__version__ = "0.6.1"

tsml/interval_based/__init__.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""Interval-based estimators."""
2+
3+
__all__ = [
4+
"RandomIntervalClassifier",
5+
"RandomIntervalRegressor",
6+
"SupervisedIntervalClassifier",
7+
]
8+
9+
from tsml.interval_based._interval_pipelines import (
10+
RandomIntervalClassifier,
11+
RandomIntervalRegressor,
12+
SupervisedIntervalClassifier,
13+
)

0 commit comments

Comments
 (0)