Skip to content

Commit

Permalink
Bugfix + version
Browse files Browse the repository at this point in the history
  • Loading branch information
rtavenar committed Sep 26, 2018
1 parent 0b51e76 commit 9ea50ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tslearn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

__author__ = 'Romain Tavenard romain.tavenard[at]univ-rennes2.fr'
__version__ = "0.1.23"
__version__ = "0.1.24"
__bibtex__ = """@misc{tslearn,
title={tslearn: A machine learning toolkit dedicated to time-series data},
author={Tavenard, Romain},
Expand Down
2 changes: 1 addition & 1 deletion tslearn/clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from scipy.spatial.distance import cdist
import numpy

from tslearn.metrics import cdist_gak, cdist_dtw, cdist_soft_dtw, dtw
from tslearn.metrics import cdist_gak, cdist_dtw, cdist_soft_dtw, cdist_soft_dtw_normalized, dtw
from tslearn.barycenters import EuclideanBarycenter, DTWBarycenterAveraging, SoftDTWBarycenter
from tslearn.preprocessing import TimeSeriesScalerMeanVariance
from tslearn.utils import to_time_series_dataset, to_time_series, ts_size
Expand Down

0 comments on commit 9ea50ae

Please sign in to comment.