Releases: cjekel/similarity_measures
Releases · cjekel/similarity_measures
v.1.2.0
v1.1.0
v1.0.0
v1.0.0
area_between_two_curves
now correctly calculates the area of four points that form a triangle (where two of the four points are the same). Thanks to a contribution by mcnick in PR35. Note that this change may result in different area values from previous versions. Cases where this will happen is if one curve had a perfectly straight line between three points, or if one curve had the exact same data point twice.
v0.7.0
v0.6.0
similaritymeasures.pcm
now produces different values! This was done to better follow the original algorithm. To get the same results from previous versions, setnorm_seg_length=True
. What this option does is scale each segment length by the maximum values of the curve (borrowed from thecurve_length_measure
). This scaling should not be needed with the PCM method because both curves are always scaled initially.- Fix docstring documentation for returns in
similaritymeasures.dtw
andsimilaritymeasures.curve_length_measure
v.0.5.0
Adds mean squared error (mse) and mean absolute error (mae) methods thanks to @HarshRaoD