Skip to content

Commit 973dcf2

Browse files
added aeon info
1 parent 20a8d48 commit 973dcf2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# ShapeDBA: Generating Effective Time Series Prototypes using ShapeDTW Barycenter Averaging
22

3+
## This is now available in [aeon-toolkit](https://github.com/aeon-toolkit/aeon) !
4+
5+
Simply run the following:
6+
```
7+
from aeon.datasets import load_classification
8+
from aeon.clustering.averaging import elastic_barycenter_average
9+
10+
X, y = load_classification(name="Coffee")
11+
average_class_0 = elastic_barycenter_average(X[y == 0], distance="shape_dtw", reach=15)
12+
```
13+
314
This repository contains the code of our paper "[ShapeDBA: Generating Effective Time Series Prototypes using ShapeDTW Barycenter Averaging](https://germain-forestier.info/publis/aaltd2023.pdf)" accepted at [8th Workshop on Advanced Analytics and Learning on Temporal Data (AALTD 2023)](https://ecml-aaltd.github.io/aaltd2023/) in conjunction with the [2023 European Conference on Machine Learning and Principles and Practice of Knowledge Discovery in Databases](https://2023.ecmlpkdd.org/).<br>
415

516
This work was done by [Ali Ismail-Fawaz](https://hadifawaz1999.github.io/), [Hassan Ismail Fawaz](https://hfawaz.github.io/), [Fran ̧cois Petitjean](https://www.francois-petitjean.com/), [Maxime Devanne](https://maxime-devanne.com/), [Jonathan Weber](https://www.jonathan-weber.eu/), [Stefano Berretti](http://www.micc.unifi.it/berretti/), [Geoffery I. Webb]() and [Germain Forestier](https://germain-forestier.info/).

0 commit comments

Comments
 (0)