Skip to content

Commit

Permalink
Merge pull request #32 from cjekel/dtwtorch
Browse files Browse the repository at this point in the history
Dtwtorch
  • Loading branch information
cjekel authored Jan 14, 2023
2 parents aa8227c + cc9194d commit 75ee0c6
Show file tree
Hide file tree
Showing 4 changed files with 1,334 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.0] - 2023-01-14

### Changed

- `frechet_dist` now uses scipy cdist to calculate the distances between points
- `frechet_dist` should be significantly faster due to cdist thanks to a contribution by [nucccc](https://github.com/nucccc)

## [0.6.0] - 2022-10-08
### Changed
- `similaritymeasures.pcm` now produces different values! This was done to better follow the original algorithm. To get the same results from previous versions, set `norm_seg_length=True`. What this option does is scale each segment length by the maximum values of the curve (borrowed from the `curve_length_measure`). This scaling should not be needed with the PCM method because both curves are always scaled initially.
Expand Down
2 changes: 1 addition & 1 deletion docs/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1 class="title">Module <code>similaritymeasures.version</code></h1>
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">__version__ = &#34;0.6.0&#34;</code></pre>
<pre><code class="python">__version__ = &#34;0.7.0&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion similaritymeasures/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"
1,325 changes: 1,325 additions & 0 deletions torch_DTW_demo.ipynb

Large diffs are not rendered by default.

0 comments on commit 75ee0c6

Please sign in to comment.