Skip to main content

A simple implementation of the soft-dtw algorithm in rust with python bindings

Project description

Soft-DTW Rust

EXPERIMENTAL implementation of the Soft-DTW algorithm in Rust. The project is built with maturin so it can be used also with Python.

Note that this is primarily an exercise to learn how to code in Rust and integrate Rust scripts in Python. I'm not pretending that this is 100% functional or correct. This implementation is not created to be used as a loss function. It is designed only to compute the soft-dtw distance between two signals. Also for now works only if the signals to compare have the same length. In future I could modify the algorithm to work with signals of different lengths. The distance between samples of the two signals is computed through the L-2 norm.

Installation

Method 1

Use the command pip install soft-dtw-rust

Method 2

  1. Download the repository and install maturin in your python environment (it is available both in conda and pip).
  2. Install the package in your python environment running the command maturin develop --release.
  3. Import the module soft_dtw_rust and call one of the two methods compute_sdtw_1d or compute_sdtw_2d. For both methods, you can pass the hyperparameter gamma. If you not pass it by default will be set to 1.

Use the library

Import the package soft_dtw_rust and call the function compute_sdtw_1d or compute_sdtw_2d. The differences between 1d and 2d version is described below.

Example with code

import soft_dtw_rust
x = np.random.rand(size)
y = np.random.rand(size)
output = soft_dtw_rust.compute_sdtw_1d(x, y, gamma)

A small example with synthetic data can be found inside the example folder.

Extra notes on 1d and 2d version

Note that compute_sdtw_1d is used to compute the difference between two 1d signals and return a single float 64 value.

Instead compute_sdtw_2d is used to compute the difference between two matrices of signals. Also in this case the output is a single float 64 value. The matrices must have the same shape and each row must contain a signal (an example could be a multi-channel EEG signal). In this case, the algorithm use the soft-dtw to compare the signal in the first row of the first matrix with the signal in the first row of the second matrix and so on. The output of the various comparisons is summed and used as the final output of the function. Optionally you could pass an extra parameter called average_along_channels. As the name suggests, in this case, the final output will be divided by the number of signals inside the matrices.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

soft_dtw_rust-0.1.2.tar.gz (10.3 kB view details)

Uploaded Source

Built Distributions

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (438.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (457.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (536.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (454.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (277.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (439.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (458.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (536.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (455.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (278.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (439.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (458.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (536.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (455.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

soft_dtw_rust-0.1.2-cp312-none-win_amd64.whl (140.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

soft_dtw_rust-0.1.2-cp312-none-win32.whl (134.2 kB view details)

Uploaded CPython 3.12 Windows x86

soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (437.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (456.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (534.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (452.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (272.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (276.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

soft_dtw_rust-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (234.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

soft_dtw_rust-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (238.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

soft_dtw_rust-0.1.2-cp311-none-win_amd64.whl (140.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

soft_dtw_rust-0.1.2-cp311-none-win32.whl (133.8 kB view details)

Uploaded CPython 3.11 Windows x86

soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (456.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (534.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (453.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (324.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (272.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (276.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

soft_dtw_rust-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (234.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

soft_dtw_rust-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (239.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

soft_dtw_rust-0.1.2-cp310-none-win_amd64.whl (140.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

soft_dtw_rust-0.1.2-cp310-none-win32.whl (133.8 kB view details)

Uploaded CPython 3.10 Windows x86

soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (437.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (456.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (534.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (453.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (272.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (276.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

soft_dtw_rust-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (234.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

soft_dtw_rust-0.1.2-cp39-none-win_amd64.whl (140.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

soft_dtw_rust-0.1.2-cp39-none-win32.whl (133.7 kB view details)

Uploaded CPython 3.9 Windows x86

soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (437.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (457.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (535.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (453.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (324.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (272.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (276.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

soft_dtw_rust-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (234.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

soft_dtw_rust-0.1.2-cp38-none-win_amd64.whl (140.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

soft_dtw_rust-0.1.2-cp38-none-win32.whl (133.6 kB view details)

Uploaded CPython 3.8 Windows x86

soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (456.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (534.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (453.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (324.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (304.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (272.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (276.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file soft_dtw_rust-0.1.2.tar.gz.

File metadata

  • Download URL: soft_dtw_rust-0.1.2.tar.gz
  • Upload date:
  • Size: 10.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for soft_dtw_rust-0.1.2.tar.gz
Algorithm Hash digest
SHA256 1a4efe4240f35f83a767135281a5c09049c306a92bc7028a51e3561769c075bb
MD5 41130076cf06f5187fcaa37410c7cb81
BLAKE2b-256 6d0e3c5b976b1400d5ac114a462172b50adaae9c6fedd80f6a46b703b713b444

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b96e05d4eab1ebdd502df83da8c659820376456beef495cdfdfd028eae7da4a
MD5 52098a7ca34063a29b36d840ecd0c694
BLAKE2b-256 148e4ea361610e6773fe83017b48876ce3c04a8f3d657cb402e72d33df9d11d7

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7aa6cbce8767512a5f1808969c4e4e0b96415739667e08b606e485685f002bff
MD5 8392c9f0ca56bb4ecb16fd684bb41e77
BLAKE2b-256 5809c6b4822bfc8b0dad8de7fbca507962b9a0b52a7da2d45585ca63e1013b2c

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad1550a40eea96f14727d74754252668fbc2db46246aa6b312099d4325b7cd81
MD5 a5b33f000fad66eeb5cb180d3d6e6fa5
BLAKE2b-256 73b39d89ce50449e34e6b2c1d8714656311506e21ee36ba9aea7fde559117e57

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8300cd64c5209451910640592012823d2659315defe1e35cc190772c2c330534
MD5 3b6cece4e1925feeb2c17d9be1895598
BLAKE2b-256 44e24d738fd34bcaad5bce6e2cbc03fb2baabc37fb197e25f14aff995d09abf0

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b19ed8c28f1a13dfa24612a3afdc1ab099fe8e1af46c4fbcbc956c53c0350f0
MD5 d57993fd48e0ad80cb9778fa63878792
BLAKE2b-256 ce244f4e34667a48adaeb1104bb50a5ddb35aa7355929504b82013aa19570732

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7900c8b208dce04707db65cb4e334c9b7f3c8d54c1438fafb181e49c33e8dd4
MD5 99819b655128f30effef551609f0d6da
BLAKE2b-256 9247b2d8fe2aafc605943ad2d7973d32eff64db5f679cb01ab43c564eed905f0

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69f1f3bd4105112c88789eb618b385de630d59ebca3c427747bcd2b3afe55320
MD5 80e336f70e45b01519717294534c67b8
BLAKE2b-256 487b8e1622ee72cd7edd14c756b50707e10fe7cf54d16c4b208f5298c9aa360c

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a5dc1db83b4ab3d5e66c373072f8b456a93f10ed6bdec7e28753a838107d3e2
MD5 af7d7fdd3ba6e029eb669f77fcae7480
BLAKE2b-256 ba738d6338286394e78c14cdfcfecc0351de84555a87f1a0efa5432674b4d399

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b7155432cced53b83b86f132e2f7aad3fa31b7cb023bca581c07a02c09a73ca
MD5 5e6a75e407744231e6a54124a962b463
BLAKE2b-256 016cae6ec7d9e687914f8c108bdda321d07c2e086c456ed19a9ea8cd9d3ed34e

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e618e9bf4bd7652500e25f81b8e3502af2dccc378b32cd9763f1b24f6df446b4
MD5 3ba21b49036ef780970a5882ed692b13
BLAKE2b-256 e8d692454ba19aea3bdbed08eb999501df6b885bd32a59e7266236aa5792b5da

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90104b8206e991801026c25a9673c9d0bc71606a7945fa82abff23cff0233535
MD5 705b25bb543b767913d17f8472b48a56
BLAKE2b-256 1a6bc1091a2a44f22b773afafd2f769784e9b8be2256f17ba3469bf89d6cf43b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a808235df5e16cde0b6c0c479d3e59729a49031568055d80f0ef04d1902cb99
MD5 dd60272c960db3424c74c59513c241c1
BLAKE2b-256 5a5ec393a0052237fdc996915f50dfcf0ee13c17ed0ba768f9749aa6fe590849

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e350aa334a48a5ca8499f0a06b03f8056c7b3a17501ec8f203bbbd520564304d
MD5 9ab5895fafe9e721e8aa106725ec0ed4
BLAKE2b-256 584746dc9581b543ce72214ecde7e7ecd150bcfbdab1619d0851b1e617731f61

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23a9d3b2d853441c0f7145c57f6a5a37e5008cb9b664ede87fb524a9265a1e62
MD5 d2d347a4af3a2d4f76610532e245c164
BLAKE2b-256 866854ba48eb394d3d7e9b81d6d67c8ed8002543744d1110ca1a635855b1be55

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31902c3e421d349724daeaa7b106e1e71a22df44cf201f15f8b0e02c44e10e60
MD5 5386a8d1b796774b7370a0fb982ce6c1
BLAKE2b-256 772285eeba8b67dbfb9d20bec8ed7b22247a9008464bdd1f22ad501ef50904e0

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06e9cc81c4ba12b1aa9c9bcad248f0ee3ee0c6ce24573e018873dccc0c482f96
MD5 ddb83742afb71a2fcc91924e20bab0d2
BLAKE2b-256 3261462e00c22d4035734a637ab79e6381b290a98f5f1d2c302711e4a9118c47

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5bc2313e06909084b2163aa7607f4be2f857f2c2df1b36b54abfc4366ba9a5c
MD5 674fd4ca59642444932762e735e92022
BLAKE2b-256 dfe2396050060884e2c5d58efee5dced39e4f31ab8533f826a749ac2f7c59aa3

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab5312b4f404f16eaa4320883dfb75abfdbd8c3399783b702ff344d93c29f0d9
MD5 c904cd5cf052754d47f4c167e7b4edeb
BLAKE2b-256 c0a10899d45144e7af58299f377ed4bffcb5c5b81082e01712c4e5ea168f91e5

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7a779c4f71e37fde359f555ac3307330bec154b225c0bac900319c0972b5759
MD5 c748b55d2edd0ba7c58040c321071287
BLAKE2b-256 dcf22bc1c7fd280ea7d73a8dff16188bce6ba27f0315b0dd8e278946c1625c37

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 59250b21673d446118d8cbba7e6d6c06c694b1b2eff91c000f592d6dab171d23
MD5 319f2769609d112667f77961f76b017b
BLAKE2b-256 ce300cff0ff931acedc7a734ff821afbca5014c1a8ae002ff3c2b482c44ae940

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7aff0caf740a2b127bc44f5363d1905a113e39f50639d05ac8b497ef1f5090f9
MD5 dfed43c6a48574c3c45c72f6ee588931
BLAKE2b-256 eeaebe73eb811ab336288b1a2d7a4aee8969e71400690973860dde03f8b10e91

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3197ea3bd4438bd2a769ef706818c6f0e87a8a423fda2a1ba68d823fcb078539
MD5 d0c30352186a71eb8f03865b69ca35dc
BLAKE2b-256 d5300c7c2fb0f4b5cb5dc4b61d3e920867c857a27ba94564259d09084b2b4af9

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2cea16c03e55e5e3fd91a3dccb751004b3d9f3862210dfc71106805f48e350a0
MD5 aca82121067ea03463c26ec078b425db
BLAKE2b-256 be2f63626502f96ebbcfd79156b4fa86a7d42d6cd01ee7d89c1fa6c8ef3f5747

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab020afb666802d788e7829e9961dee563b4310d9965b4cc83b1226e66619b35
MD5 2f2da0c60f72e95768fb38e08822c7b6
BLAKE2b-256 b0e519149fcff3005f13db90a9c1815e7bb679a414bdd31958137608d27a41c1

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c23e01f0ef040fef8b073ffe909c9c41f73194cc30e9afdd548e47a33572a8f
MD5 3825a74a3f1111fdcff8307a3380d247
BLAKE2b-256 dbe7b82e19b961dad3dc2cb71af6b494585117fb61e6d07457c58dbf25dc8069

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bcf5287289cffd88fa5da1274506ccc7452965224392c5acf6b5161a41c8c43
MD5 118a8e8758558592e11919d92bb0e67e
BLAKE2b-256 c226efba101af789dc6bbadcd10a303834d65388d005ffb392d4fc6176a0ddad

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f5284d3941fb3f973fbe2d020b292170793398d0d654cb2518b7823978d88a3
MD5 0b540c71334cd46ab39027cd07885e67
BLAKE2b-256 a85c4cd6a943327907c03d7ebc78d4fe4ee72e2421fddaa966e15ad7681cd701

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ae79f9d355d219bb54b7692e821ab9de2b2a6a056116d14cc52ee2d37b87416
MD5 eadf944d155c3adc4f8ae69f120a5581
BLAKE2b-256 aba7f871ef51edc075f44a2b43ff0b3514d9420514a2d9cb3ea9e7d61b725d18

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 680f40391e8406367de78fff084a6085b1ee17e005eb9d300970eb49011ec274
MD5 867a8d92eaf0e56b0a3de22698ddebdc
BLAKE2b-256 761de9363881709803d71a8277fcc5739421297d95eaab88861ba6a46fdedc10

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-none-win32.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 619cccf36fef58a5be360a923baf2192f6102575e7ad75137e3925aa74b318fe
MD5 a941318cdc81709f2cdcf24ad8ea481d
BLAKE2b-256 37957ceca1224bd8818ada005363af213f78cc01a59b0b73bd2c864c45f92274

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 706d35f92725da86fd3a8ad5f5c834e2bc8084f557f452b94dfb7f65cefe2e72
MD5 a1bef569654d2b2ac24729f1cf45d3ac
BLAKE2b-256 6fec131a7f13d71726b3124734ad2dae9e6543d83227d9be36ac650fa56ae923

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dad3caa4ff2ab273290091a03a2d4fee39d049c6da16903df61468cf73c4f9ac
MD5 8a741d5f0d8cff97921d6ac0eca6f2b5
BLAKE2b-256 d3abd298e355d0fe50f6e674f6d61cafb83f28579b71a37ff7d5a76995e4c798

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba389fb560c6240dc8fe744b14995e7c78db25871e6583d30a8d06c7569844b1
MD5 7eea34d671e3a01d982fe5d475ff2201
BLAKE2b-256 399f0105a5b58bf98a603d2621655ba9bdd087f51f31e8a7ad71c9ff81d5e53b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 635c27557a01bbe963579934d05a7b3ea2330150f51f030f9c7696f3ab3e6547
MD5 f06c210ed87051d9f6ccfdc30c8a5fc3
BLAKE2b-256 6ea477231a53d424f1a4f5c81d49d305264ea36cb3744dc591b95b68489cd8b3

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2abda0137e00e3447fb57db14514c9d3d46b2bbac10853a3b3186fdb5ea5a8fb
MD5 187e460836d5a45f626fd980d5d1b659
BLAKE2b-256 7766ef77bce70323165fdb34314104f6cceb928119dbd38e9a26cc9b77d1d12e

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d557ed92779b0679ad714ff6d2a410ae239df9e9050c31193f6e5d9d09c011ed
MD5 d85d9aaf9e3763380c7320fc9d329c5d
BLAKE2b-256 4467b21fda2dea932f2129355743da3df355ac227ea2da3cbc1a56eb565e3e6c

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27e263bc368b5a5ff7dee7a33eeffe9438e906e364bef0059ed6c578a533d461
MD5 2a70eeb3b7a16b2be69882952f01a8a0
BLAKE2b-256 a0912bc295b471cbad8b6520958cedf8d3856d1fddfacea5fdda373d4e116fa5

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 301b92c409879b054e40d9241395648e089c8cef4039829ec24ad853830c75fe
MD5 e264eb2d3a1f3056f98bfa582fa58c36
BLAKE2b-256 e3a8a1f676e4808407e431b472126eee9ac09d6175860e420a1601202ee0e75b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dceaf21c3ea0c973b6cfa8538a69e7b4fc34685e362a6cdb731306c3cb5530d
MD5 d76487458a98970aec44213a70b9cf12
BLAKE2b-256 9d7b62ddcc0505eed6f26823e0726661981a0f4f2d804766bd3a92af0d52e9ca

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03ee83527fa16283f7b644ba01357572b10d2f5fa589b074ee8698ea59359e19
MD5 e3d120116cbe5a3ab5e55202d12df122
BLAKE2b-256 499b21b4aadc5de03225f0272a8ca014de07749ac8d9f995d9bbd6c0db1395cb

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5de3e29c88429e4baa330588c7b00323f5d9f1f7bb10884df7b4051fb2e3fc5b
MD5 86930e5e446c9c87fe016b373cf8c71b
BLAKE2b-256 bb0f9f493a571ad344a14fd46028b42109c59f4fb65b1b92df6cb21c0e1ac04f

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4ccec023ff000087a0bc55319603fb632742e7c1128377265adb6c55e198517
MD5 63bbdb563bd6e6ca668620c419b637d6
BLAKE2b-256 39ab7c1c2ee1d207e21e157adbe2b154907a670f8925e10abb3ccf8476bdd92a

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a79825d16c8d7ac4b856a84a4f865d9873d3ec824a5f7b75e7a2eb604aa5fff
MD5 bc5eb37613ed670ae75a7bc93046f3e9
BLAKE2b-256 a0f7343c639f833df1828239793353f61596a0d51c5eaf98ece636fdcb3c32ef

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-none-win32.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f671c27fb5396b6d406b60ad7f4687da096a6dbbc1629973977af68a81322b35
MD5 8b4d3b1a6e1602411dd205b759f7a674
BLAKE2b-256 f027f7854cce4af7ed62e4d144fdc3988f4267f51e5229fda7bfdd31fd05682c

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6011cbcb5293076b17bb474c13b4b010cba86ef576c34359bff37d305847fc36
MD5 3bd4229de2df986e1ce9d6e2a57547d0
BLAKE2b-256 d8b71b4e6130e23abd9e6342df920f2e48ea0806ad38fbf2aeb9713034689571

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3fee2ea2a5a1b3d2aacd2a49cd3b3af825d649f0b11240cdf3da4744b20dbd23
MD5 b19415bbaa6aa85e20a1318fe8a535ef
BLAKE2b-256 1c005ca81f930d995e687a0705f8d782511cdcccd704b444ef38bedb3b03e4c0

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84e3fb0215bbfb0ee224b77a4a5901d67d87376b843dc7f1f9d468e79302ad09
MD5 9b1bf3c27a1babba1ef625770a7f617f
BLAKE2b-256 84e79f9eb57385e0a26fe861d394b32174142e2ccaae1567fb80b081a7aa91f2

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39bae6173ff39fb92dbf108a5919fe3fc4849490c757531d2a58bc9b6655300d
MD5 fba8907cf54684c30e852b62b7540981
BLAKE2b-256 1b48a1ee710b3296c8652e269f32d9c47d5cf28ac4e5fc603b1ef927e224ba28

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 171868f81a5e53b004becd0ce84c0fd01a0484b15e100e3bb0d123e7f08dc0d8
MD5 ef0d7d0636a31fb97ebdd51790d3a06d
BLAKE2b-256 e8f899d1351306a2757f0805bcf06aabff31f154b099137841689e9371b056fd

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56cf79bf5fc6cb6ab5dc4a8206032a0bd3761c44d253cefdd9ecee7655f5cacb
MD5 18b4490fa114666edb982c88adcc02c1
BLAKE2b-256 7fc8b4cb9ce7b7dca176cd30d8dec9cbb61e88f31175e9ad45a80e4b13edaac8

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66bc7c88165f8663265ded757ce75acfce08913a0878261c54d1b6f5623bdf36
MD5 d2b683b836bd54d2f0b94425b5e5bd7c
BLAKE2b-256 a6f128413c1e5b54a438200c4a3704e06ae4997267cb085c6bdcb059825a1fb5

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3295ac2eb162b802823b72f2a64c712e6a1c738b2e9c2e697856d42ab81994bf
MD5 a100642647d79acbca1da591ade6bc91
BLAKE2b-256 586cf12254c47011cf91d261f5bcd673564d4cf4172b0d2897b0db3ca654dc52

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27f7086059335bf32db911742652337224bde51949850bd6902798327d384be1
MD5 6eb43e7237b14dd50fc79a3a5af634ab
BLAKE2b-256 0f77f2fbe408aa930c82b43487d93b8a54d06dba7d5c870b929927a340ffb53b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0225c107dcec66d3e45580ace015d78783079df5b09ccf156d3b7eaca69ae11f
MD5 8bdb724ee8f9f20c2458319ade91736f
BLAKE2b-256 8f67e4bee3bb303ec587eb2a5cc7f318f9be0d6edf99581fa1e212d6271613be

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7029e084a489f2109ce803e6d1ada676b606ccc1e819958d771e36f436a5b9a7
MD5 f061b0935a292e39e6b5947b507dd5c0
BLAKE2b-256 28287ddfa122337a0e7fac6d75cc88ce88cdc68147408f9d38985819260b5735

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e48fda907c3708170fb46a369b398bf57ec07586776afcceca4d6b37309cc9dd
MD5 ac224e334fab11ffec2b7c5654f8d7f2
BLAKE2b-256 755d92f8697ef8e760a2d4364d07f5231e4db46de3a36c26d58a1bc1deb055a6

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ba87487ddb969a1294c677c02fddfecfd89d9eaf3b2ec6aa6286bd886adfecae
MD5 b45b011931d7024b4ae45a616d1b45be
BLAKE2b-256 964111ab59e20e5958a5f81c4c33183a09daa4c9d0b290feb6c6b383571c9310

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-none-win32.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ba1675243b58495e0579490ba3fd7a8a00cb47695e4600c71fae959c9463740f
MD5 58f72e77b6126a2db7ada25e19e798f4
BLAKE2b-256 0bfc36157bbf899364c1d9d4bd21c4acefab4e0a1adce9293c7a6baff70e42f6

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53f31d51955845fee910e877c7da1e8fe58a400f6bb97970b8afb17e0708f7cc
MD5 3bb36238c62fb52df376b2d3204036b7
BLAKE2b-256 c9419bce20a7132626955b4e587b1c80ad8567224d287dd002b5d2d249a89359

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5f729d61c8a7429a47a5432901a6c70bfa2508b6dd176570d213163b512093e
MD5 853a39d772fa624aade2572fa95bf768
BLAKE2b-256 272dab2abf783b37ff451181095545b11af1b6dd18a56de48a9df7feabd697c6

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2292a3077777a1287263da9542e16dedcfc2409c983b36e094aefb2c28c490a7
MD5 c168890cdcfb50adf17c51734b8fa094
BLAKE2b-256 674df1844162ae3693447e9402dfd828ee202a571e341040d21705fc5d636ce7

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e43c62c5714548ac4601dbf5dcbbac5b268351628222d353d5750d97f6e53f4e
MD5 da24ee0a631ec429b348965be0377db6
BLAKE2b-256 d06be4c06aadeaf9b1f57be895c2514ebf108b24b58dfcbc03890d0c7a316e66

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 085e774c09f82e0a865a0dcf222cb0bcf4054cab85a85078d1f2ed9438bfd56c
MD5 bee3de405652c6898984cf977adb5a0d
BLAKE2b-256 9fbe33c3be6a37f638078a74c3011e6e6dcdc01c6bf07b2da2b7f44b02fe195a

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c699e56d0a2aec3d6a7be1a280f75784eb45066b081c78a9d58a5bc1aeb5d0b
MD5 95f31c50cff570b5d6d005eb1c93cbef
BLAKE2b-256 40e3777fd2c9b6305f099ee7479956aa7dffd854717eb4596e2abb240c096f4c

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05e89bea91f757112f6e6293acba1791e64d66b46dcf7e7eeaf42745f310aac8
MD5 0155f64c1c461d7ca620b76a1ee8baff
BLAKE2b-256 32e5a75191e738ba9fea710e4f46f5658c37946eae8e404311315c3a91dd0f70

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 954d4195ed0702d154867c4775911e7de5913e11e4d249bb4ab7afe89bb445a6
MD5 0e2d30eb8db633d85dbaa35c04b58d3a
BLAKE2b-256 03a07237dcdea64eacff8a6064ed3de37e7a24c6b11d4a37caf9dcac2831238b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 585d1a5fea2506367aa2f3fbf24533931451e96e2487c04c04a8fef706b448ff
MD5 ac8c22de8a66d8dd62796668ff2b3fad
BLAKE2b-256 862a6aa4b7826ebd1f975c669068eb91ed7d2ae1399123ae1e0e420c2b527352

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd0cd918b86829743684f075356c334115af1af8733a3d4148becc63c388b449
MD5 928d86041e6fb62d4169ce492badfa13
BLAKE2b-256 415fd400a94e72c5d0bcf25bdc4aab22eefcdee429623dd4c18fded287c4070b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd4c138ce1389e7bb39b0404e65bc965be1965c1e476c2fddcdbc72cd58b7ccf
MD5 30a5953c46f0c4a44d4ddcd21a81be3f
BLAKE2b-256 dc62aedd0dea9bf7060ff1f46adfafa809030c6d48529e847577d69a3d819d97

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fcb724efc5b13ba3fa7cd636214157922f75964cca000b992844b510307129f3
MD5 51e5e45de595f2ef1780b145cd14c2a3
BLAKE2b-256 c33b768c0c6fd8a7beb77c16000f011b6f2364eacb170e60223c6afcfdc227b3

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-none-win32.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 37a9b47ff7e52b63948e0f9f697f62393c6e91ff48a3787d24643bea95f2f649
MD5 4bd21fd5596563da359ec55b90299c52
BLAKE2b-256 eee32303f784e72387ecc8e4079b53c2bd7ea96ec0093d6a9a30a42ca2553e7c

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d52cdffb28904d5f50196b6562f75a25fc093a3d5e4cac62f812e922fff6c9d
MD5 046a7127a57c906711ab017231233c2c
BLAKE2b-256 97ca3f55f42526153030660eebd2f97b58384146b6d8b0d12fe4e7a767d668a8

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c5184e2228e38b898f52d552921e6cec07e4012fa0397b211c08d17816e30bd
MD5 fc19002e5add65209d753015ea737dcf
BLAKE2b-256 8a5d963fc626612ad66bb927bf43674b022713da9d85a8d74375fcc9c2e828a8

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 611e01e0485efa2c27c24043526a56baa4fea05b65b876adbba2d3e9a877c05b
MD5 e619eac93448f863071fd5aefa0a588e
BLAKE2b-256 11374997ef8808b2e9b4ebfdd3da24e990c3cc07110998c35d7eee9003b45b66

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed8e33250dc6ee721160f251aea5766ae3f3ae13d9c2c2058dd7fce16159cb2b
MD5 2a79ecf7ab5da215ae3f4afc2810d14b
BLAKE2b-256 e06e9639f4f4c7182cb78dd5100d8c55d3ea36ef1cd05425fb2e50f30b697cd3

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eef9ada5cb28ca056a7423ab78da91184adeeae9b663d45bc617f854340dc9d7
MD5 d064b6808706678442ae9d02211ae112
BLAKE2b-256 afece6347ad473c0646311b6bfb8d9b59651328db2bf1c715b959af30dc7394c

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b2990777e167bc6156585770bff61f9b23bd099123d5d49b2f789ef655ac32e
MD5 3651fcb31d94212657a358c9d0ab4283
BLAKE2b-256 349d87e3506eb5d3095e54c185d764f0237ed0d45ffb5af1e5947cd754c12c64

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54fa7a488e69ee159978b4ce159ca87c14c889d84d6695456b37a8f37b6e7547
MD5 28048d2ce8210896bbb1e0866b136028
BLAKE2b-256 07c31a5a091237d7c5c0a6643d905ef21aadf955b9b0e4b326b4d5ef6b1160ec

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5f4ed7056cf7905b5001ddabf1413bea10d7340237a3b6666ac3c398b6ac472
MD5 6f817637159bc2928dc811f24fb9b64a
BLAKE2b-256 eb9bc6707facde63343ebfff99dacad72a03020b5f223404ceb6bcbbbc560b83

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 260b414dcd6d2453fdef16527abc74f471e71769c65f9f8861530d4976ea6324
MD5 712edcf6c5ca09851f1ee517b5954df3
BLAKE2b-256 d9f3f38017a88405b5c349fa9d94573de74657d4735a93a518b1fb59567f0978

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c1b2e57c2c2dd0fd34b81f6eaa0e68bfa38b10392bd7c2d68b83e7829338ed6
MD5 a963a38fb25e8dd2dc7baf6f357fcfde
BLAKE2b-256 ac72831fa05617980fcf77fb231732b1c42e5b989943d06867ca9f31a96d1455

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26b179dff2db55e62493fa32dd0b36702ddf2cd3cfa524008c1c24f653b05a57
MD5 3db3738aee5f2a134ee453ae78dca90e
BLAKE2b-256 3b27bab130a021c89803600507413d4f17c1a6735568ee65c1c918844a83076b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6967a80528c888cb8604e4dcc574a9df678ec04c41c23b8e6607db8dd8d54ba0
MD5 8abc76387ef0634a60c13717b78287e8
BLAKE2b-256 ecf91c235a9ead06a43ad4ddf956a81f6ae6c2be03498a343c1cac539b8be224

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-none-win32.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 973a2ff721dfb22daadf0bdb83b8b01a228c0a8fe29382f8aa493087030c7a62
MD5 f84946a12d0de3d90e3797041cf56905
BLAKE2b-256 a9923008126f661b6f748a35f5edea9d3c9647a5cfb1b62a3e4162d5e8d1ded3

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2bb50811a007fcfe7120e24f42e606b1e650a888256e247a57765887e81006c
MD5 3748bddc4f7d1a861801fc720d9c7d4e
BLAKE2b-256 cc30ef63d00c843c8e77403055a9b3dc049f753f037e2e02c482a95ce89d0a5f

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e03cda00e4b583dae9b4561cac9aba247d145146938445ae76ec3de70b1aa5c
MD5 21775d12d7072fefac598e8c8ab683fc
BLAKE2b-256 58587a8ef63db4603fe16463605a6b6e7ccdb669af34b0fe2ff07d0ba2b21e8b

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed7fc7266e82480ccbe83f724e7d717e7f169ca8269a9bf2093f3e77e8935097
MD5 3c8b1ae86c1ff6cb4d258ed96b75f3ad
BLAKE2b-256 c9220a2e02e221362e1281b73c6d3c394376f61e260090e8b28963a3f3045db5

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe606a45944512863545bf6cc7aad8884db6924cc36c92d766ef92d26a1e73ce
MD5 1c08f1d96e58fab6766e7c4382bdac98
BLAKE2b-256 3a774b88f59423a4180740f39ba9e4a1edb1ee22f8db2c50230de9cddfcff406

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f9d311b051e94fabddca2fde5ec3f9d643956004c9035323750ee5efab90183
MD5 288cc6507bc0152d8912b66a0aa3374f
BLAKE2b-256 92e5a318db4f5d4006c370d2b0c70e2e8718495ec017c3a4476fa5494350a232

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b10533559f5331e110c1d619f1859656deee09f29d345dcada0eeee3f0bbaa05
MD5 1d55251b5924053b2eac43f93c282417
BLAKE2b-256 ba5b124a702fc5c911c3de8ac6a1343fb5bc7d44838b15b5a802dbe91da1453d

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6891138f92e44f189b1b28f99d5f7164a395172493551e0959516f940f96986
MD5 99b6b9626758921e2383866fbd7be28e
BLAKE2b-256 7fd82352aae0501393a58f834f47bbfc695f22c0cb96a90771364999945f5974

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ff6b29faecdeccfaf0f4b1d30cbbbc2e5bf6f1fb45452faf792170ebf14171c
MD5 8c165f076fc8bff714b0eef8cd102ee5
BLAKE2b-256 30b025d81d71f4a1ca10dc286408be0afcb10f9638b2898b32efb78ecc5cbd9f

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08b5cbefcff1ca873617caca5ea8135b054ffeae03b192ea9ef8d5bca99d8a1b
MD5 bcc04b98a4440c503e2c1e33db83ff75
BLAKE2b-256 238a4a43dfc1bf05bab40b1fdad459a820ad4d006c00dd62c5607d799b6260d2

See more details on using hashes here.

File details

Details for the file soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for soft_dtw_rust-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af62938d0fdc4a0ce663c724ffce7af3949d9e1906ca6d1ec382b82f64629fa1
MD5 28f2ef946b015d017569ad9ec9a13258
BLAKE2b-256 97bcf463fca6ccb5675a9c536c2a5dd54fd88a7646257c216f5e51f2eee2dc22

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page