Skip to main content

A hybrid-ish nearest neighbour search implemented in rust, tailored towards consistent performance, especially on difficult inputs for KDTrees

Project description

OxVoxNNS - Oxidised Voxelised Nearest Neighbour Search

PyPI Actions Status

A hybrid-ish nearest neighbour search implemented in rust, tailored towards consistent performance, especially on difficult inputs for KDTrees

Okay but why?

Suppose we are searching for k neighbours within radius r, OxVox can operate in two different modes depending on desired behaviour and performance (see Performance section below).

Inexact Mode (OxVoxApprox)

Inexact mode is the bread and butter of this module. Instead of finding the k nearest neighbours, OxVoxApprox finds k roughly evenly distributed neighbours within radius r, avoiding a lot of expensive L2 distance computations and neighbour sorting.

Exact Mode

Exact Mode behaves like a conventional nearest neighbour search, with decent performance in many situations, though typically worse than open3d's highly performant NearestNeighbourSearch

Installation

Precompiled (from PyPI, recommended)

pip install ox_vox_nns

Manual

Checkout this repo and enter a virtual environment, then run

maturin develop --release

Usage

Basic usage, query a block of query points in inexact mode:

from ox_vox_nns.ox_vox_nns import OxVoxNNS

indices, distances = ox_vox_nns.OxVoxNNS(
    search_points,   # (S, 3) ndarray
    max_dist,        # float
).find_neighbours(
    query_points,    # (Q, 3) ndarray
    num_neighbours,  # int
    False,           # False => inexact mode
)

More complex usage, using a single NNS object for multiple exact mode queries (e.g. to distribute the nns object and perform queries in parallel, or to query from a large number of query points in batches/chunks)

from ox_vox_nns.ox_vox_nns import OxVoxNNS

nns = ox_vox_nns.OxVoxNNS(
    search_points,
    max_dist,
    voxel_size,
)

for query_points_chunk in query_points_chunks:
    chunk_indices, chunk_distances = nns.find_neighbours(
        query_points,
        num_neighbours,
        True,
    )

Performance

See performance_test_ox_vox_nns.py for test code.

More rigourous testing is still TODO but will be required in order to construct a rubric for users to gauge more reliably whether OxVox will help them or not.

Rough testing suggests that OxVoxNNS outperforms KDTrees under certain circumstances, particularly with dense clusters and/or big gaps. As a rule of thumb, KDTrees will beat OxVox for more uniformally distributed pointclouds, but OxVoxApprox will win at some point as the points become more clustered and the tree search slows down more significantly

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

ox_vox_nns-0.4.0.tar.gz (19.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-cp312-none-win_amd64.whl (268.7 kB view details)

Uploaded CPython 3.12Windows x86-64

ox_vox_nns-0.4.0-cp312-none-win32.whl (261.7 kB view details)

Uploaded CPython 3.12Windows x86

ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

ox_vox_nns-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (410.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ox_vox_nns-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (418.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ox_vox_nns-0.4.0-cp311-none-win_amd64.whl (268.0 kB view details)

Uploaded CPython 3.11Windows x86-64

ox_vox_nns-0.4.0-cp311-none-win32.whl (261.7 kB view details)

Uploaded CPython 3.11Windows x86

ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

ox_vox_nns-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (409.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ox_vox_nns-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (417.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ox_vox_nns-0.4.0-cp310-none-win_amd64.whl (268.0 kB view details)

Uploaded CPython 3.10Windows x86-64

ox_vox_nns-0.4.0-cp310-none-win32.whl (261.7 kB view details)

Uploaded CPython 3.10Windows x86

ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

ox_vox_nns-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (409.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ox_vox_nns-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (417.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ox_vox_nns-0.4.0-cp39-none-win_amd64.whl (268.2 kB view details)

Uploaded CPython 3.9Windows x86-64

ox_vox_nns-0.4.0-cp39-none-win32.whl (262.0 kB view details)

Uploaded CPython 3.9Windows x86

ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

ox_vox_nns-0.4.0-cp38-none-win_amd64.whl (268.2 kB view details)

Uploaded CPython 3.8Windows x86-64

ox_vox_nns-0.4.0-cp38-none-win32.whl (260.5 kB view details)

Uploaded CPython 3.8Windows x86

ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file ox_vox_nns-0.4.0.tar.gz.

File metadata

  • Download URL: ox_vox_nns-0.4.0.tar.gz
  • Upload date:
  • Size: 19.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for ox_vox_nns-0.4.0.tar.gz
Algorithm Hash digest
SHA256 81bf8e0e0c582e743e75cb9424cfc70bae0af751005a42b04d569824bc04a8c4
MD5 da59c3259b20caa216c45928c4c1e57f
BLAKE2b-256 6e9549278d3c7cdaeabe84700dc560845ff6ecb1aa1f693d2edd2d3a4d81a80b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e669e68646c30f8baf070aa2c17f16251ab989b08100338e12a1b9a61a7a16b
MD5 8ceffff693f7f7cb54718cc84bb14252
BLAKE2b-256 efef5cbfaa065976c091ea15c34211a7ae69639523bc335cbc1e4bac2b1f329c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 760cc5bc9c7ba6a73bdad6e811d993a16b783697a36cf89434b1ded56a771de1
MD5 02405ed47818d4ce1120f92b7154852f
BLAKE2b-256 396b9c3c53cbf1e2e91ea3c845b3638a6a6c1514e722d9944e4c1b75b4a39da3

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85a88690c62f0be6b923377dbbf4c00fb714e36b62d13e22e6644498ed0e2487
MD5 43594a339313493642e0fac0710ba7d2
BLAKE2b-256 313571e87ecab5e81a393f9fb5e1ff2ed0de04c7fc5a82099aa1eb754a22f11c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19a693f044e40b4dbcc69d17233a2ad5fc6640e1365fddbaf83f07e508e1599f
MD5 e47eaa56396010a7f3dd901a7e53a9c6
BLAKE2b-256 99c03b946273e0a1ed2c3bdb56df0c687f99450004e612de6b9a78bbeba6462b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb28d91347b590d84d1a6e3a041216651c1a6b56ecb08a05565b7a05bc505cd8
MD5 aacce240bfb74e8461413b9ee99e90e3
BLAKE2b-256 857f7159d54df8726d529ebaedd92f9363f65f542fbd09f385f1171c5aeea480

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 120fc7b434b718901ad494ebe6fb00ed263eb46190bf78c01d44cd7910b6ef56
MD5 6c222ec07dda3580b0c4642c727c938b
BLAKE2b-256 a42f82c74ac8c39462fdf7cbe451cce36827efe310e5a493b93d0824fd17ca8f

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a5577d1852669d30e5ce3e889bf487bb0940d458999b40422b289d7a6953492
MD5 519846bc10206a033acdc1c20d374cfa
BLAKE2b-256 d50e2ec65bb491eb38bc85d50b116e17a1b021ff24233fd49c8211942ac5b55a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 725cdfe16dcca7d1685db25d3f843d3b0c0976bf84b4d751daa492e0d08ea444
MD5 0f5f8016436436676ea8dc1e22a25564
BLAKE2b-256 cabf34e1057034e2f84acf7fc63b0621c5bd14476f1036f05cc3eef3a6a8c83a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbe35eae27b527874ddb799b2f82f5331aebdc0e49454d13bedf8d46e2270137
MD5 cebaab9fb53d21b688f29046e4be11df
BLAKE2b-256 e4c8bdf8f5c3e976d99c81873dc59990e0d5348dabec80328a9401d172614c6b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15575bd2af8c74c249eac995380ec9bdeef2b1f52486945bc706e846b2826740
MD5 d4d913a670394e3e4c0bedcf73cbe3d8
BLAKE2b-256 18bbc4b8871bf3a26a180db3fa935c7d9a1336c9db0ca612bd9e426f68be9376

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b54a3f7557563fefd601490187cbb0a04dc808cc8556a588f2a7bab6e9838123
MD5 8755d791336864ee2bf00658291b0e9e
BLAKE2b-256 e4e64bd870f2b54486bf876aee6d252472e427de2d1e6640db0ebbd96c9757c6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 203eecf7fb9603696d56c61c3c37ecb07c8f97177aee60dd80b747b58956a7fe
MD5 ed1013c2084b5038adbd728339d88f8c
BLAKE2b-256 851922fb9e0a43add2d0dc8a3e1050f91d9401ba65033c44dd2eda393fc53aa1

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1175782cf3da2ce0c8490797a56244dd259e174057f6e587f11993bc106b70f6
MD5 413211b2cab31632a8e104b0027a157b
BLAKE2b-256 d26ca95fc846eab8d6430b97fb992e567631774489d30d7854016978aac5ccbb

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 703214ca3e294b6850e7a57bf151b341c4c40520911352f3cfa3db20978db07e
MD5 1010662f3830cdb0d1401c7e46bb8367
BLAKE2b-256 201404b0ccb2dbe72de69967905b656f18828192b1d6872e42ed7d1f017211b3

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4766585536f9f4b46798527118572cb9c6695a77709e8def49df19e3429b5a8
MD5 17f870cca2078eb71385f524598f3b38
BLAKE2b-256 c9fa9aed3e05d1a78d322263fd1a94617963c0a372e3ea46f03df6142d0b3a29

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee8eea8b8d8ae370bd3ba0830acfbd3dc7cbf1af3dc3e1e84b6176fd3b3773a6
MD5 c3d222a6ff4bc5096c3fd2cdb0cef937
BLAKE2b-256 0c91ec96e52b2712d6a5e535650cc10fe1f14e80641f166d43a8892dd1c02329

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97a5d80519abad8e4cdb7a519b7227956ee8457088196b65539bd5e5e79f3ef5
MD5 5aa592ba3ed4f1944bef1dbf2c9d96c1
BLAKE2b-256 136e7c9da3536a1b38aafa72939cfe2d112f0322737459648a3181107baa3f30

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57d83fd32b6f19de1bd071ef079f672879ce98b8da2b5225308a9dae1ce7a101
MD5 7726369573d48a22a5cd2d0cc03dd965
BLAKE2b-256 e31ec42cb8328aee131e9e3235df1b2feb40bdd1d195f5e616d7c9b399880156

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0918a9d49d164a0a26a87553122ea503161ba3eab5913de51c39ef1c7e715d55
MD5 4b9f44b1a0435c3103eb2a94c43d55b7
BLAKE2b-256 d943d28fc5ff03e4f9811bd207e2f2cf739f77fcf54abf6c8210cda86dffaaa6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbf1878e9bf02b728059fb7c9b699a589dab836e12187d876dd944b5d49181a0
MD5 0e25a7f3f4e15c6abbb33a6b7b732d68
BLAKE2b-256 3d99344403655d130d65e5bebe5389ee09e8a3fa469d7a1a65b97d6dcc44f1a8

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ba0dbf942923633a1e31d3d1b224c713c293e9634cb43c080f0f83a170445c7
MD5 57c5931eb3f8762adfe012ad8f4038cc
BLAKE2b-256 46ebf144e354397f1b1bc1dc843cf3f771d6a5b4706d235af82476415a01e0f8

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22be654628e63dacd11229ce5e7535756197efcbc56045b078db4721645981c9
MD5 03a1b80151c81ec45242ed9692faeea0
BLAKE2b-256 4792764d5ecee9346a2d060ded7b0cebfa88c0f48f711925690fb841fb3ddea3

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 558fa57efb9c7acc79d05b7d687004e4020ca9b746844d4f6f4d88ece3b8206f
MD5 a8bab36d50b5eaf813aea751acfbe352
BLAKE2b-256 41219ab91b8d85c05cc949a6fb10d8fa57896679dd9d395f3c9a3c98c4a68d22

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.4.0-cp312-none-win32.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4315cc90de2c01877e78a1859ac9adf56c9227858cb088ec8a520059e0d6c13c
MD5 5d9d69f3cf5639b5f1d149b6492486e2
BLAKE2b-256 e0b25c5e4445d49243b7ab6ebbc8875d9157e0cecf5aa2a77d780099293560dd

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05fab815e5d796bc585c450dd6feee481caccfe67a484544aa97013f705bc417
MD5 477602bf97ea9a5ee26604e24c8d1736
BLAKE2b-256 94729284553e3cd4262c4034f3e6f4bbebd7342df7494c838faf64fcb3a6e738

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 051e73519580fa03ba4aa05aa9b323fec68dac04a54010953e229c50329368fe
MD5 b25bb3b26ea634957214682e6f150740
BLAKE2b-256 dba7b55c0ce732952baa2c893773f0341088d642fb22198e89a8a86d4ec77932

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73e45790ff09570a93e570a3cdf07e7bb79724b13622c36dc5b7a5f2e5fcc434
MD5 bf03110d843ed94c411afce80509c80e
BLAKE2b-256 c3a0163403da4774d99699e544abe201502abc775d60edd7cc04811946e696cc

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bcc32398c001ecb4a6fbac0cfee7d4a17029cfabfdd65f6ba78f0dacab1074c
MD5 8eaff25970395b42179dacc7b5441754
BLAKE2b-256 fe0dcdb0e51300132d88654c592cf95d4811f2174081ee56ea143b0aa10be0be

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3de45de648b5e97acc442c031cc8af22fe13c1c6f4e129084ce52c3e4871e1a
MD5 1230ba50813af4efa1065a14a3feed67
BLAKE2b-256 9e17b3d5366f45001301791217dcc319cbc49480f4b095d362e1af5bfbc4d3c5

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a92bc4c67c703eb3849d2858d312caa60599f72816cf7c900d1eb29f0534fb2d
MD5 6f15c2cfd9acab24b1249b8c96481128
BLAKE2b-256 ce760fa193a5beab3f6ad40068a39790b76d2a32f2b12a0a04a4f97fae1a19d3

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9937576ef0dbe222cfd73ddde235298b6c1c491a1d666eee78ba3037398b5a0
MD5 33aed2e4639c1c6e5b08a79c7ed3e4a6
BLAKE2b-256 71aa7681fe5115b74acdc55322f136d20610aee3c611ab7d551c28823d6c7081

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 918a5b2eeaee1914ee71ff60917494e6eac6db981fa09671f46d0a17412ba12b
MD5 438564fcf7b2cc0ad86e662e278bb087
BLAKE2b-256 b761267201582437009ae927e403df55faf98551cd11a2c08deb703f204813b7

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 79e9c7864427db111f8dede80ae09988d687cf4ca6ba77870afdd521331c5022
MD5 696d9d3523021dc01bdf5a5007cf3828
BLAKE2b-256 f8ead9eaebe67d2447dded88a9a63f9cc54464b48c4763ee68b66a2d7392855b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.4.0-cp311-none-win32.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3d35231cf83ffdc461b4bd55dd814dca3ab56a009a5ca1fcbc7bb0492611b6f1
MD5 30483ceacb12befcb5dc1b21a34585db
BLAKE2b-256 0799624605911e83695a2b3cce7a9a8f0a12af55aabd56f9e636b00e52a9064e

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dcbe61cc59bd706018e982b262e42d89b3b8241a029222f6cf5607d02427fb5
MD5 27486269f109cdb53a26884ccc45eb0a
BLAKE2b-256 aface77cb5255dd17d2c54d45ea964202c4d7b29d99861e37260aa0b0e3195d5

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45c76dfc735a40b72bbdda0d8d96687bdad8cef5b1e5a6abb19ffdf8f1541b94
MD5 2797e635a06ffadd0ddcf4c6d1adb11f
BLAKE2b-256 34ac3cae44a2e112644f7406cc99ab3b228396bb00eb5fe0251cf819efad86b9

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 525a9e08941daa262384d6f7e5d2f7eff525acf4c88e95682c3e960ed5b468c8
MD5 7fc4b98b2d1b2c948e0f3cb4d8b2ca6e
BLAKE2b-256 9135dc3e7aa7d51b98c8d14cb4a3484ffa6a7882159813b6e31a6d456e99fbde

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 038eb1ecd1a1afeec282fc2ef18a4d1711faaf33f3f6f4e7e312cead74be6260
MD5 04ea3a13db1c173c16025e1e1fbf99de
BLAKE2b-256 0e38336792f1d027b244037104a94e67db9059b5bb54bbe793baf15394e8f499

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4968ed2a5c1352138fa07792b82da814b0cff0067bc7ea27893abf6eaacf6b7a
MD5 46b601d7aace39722c67570d4028613a
BLAKE2b-256 0159ea6f4abae2327300aebdc88fcd11a7b55f51f3725cbac62327bf924b30d6

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c72c6c53a1b65a752ca642b1cb861b6ac15c4c4d73445fefef0f9712295a9550
MD5 f2c113b69a8ecd317e61f55a9f20f809
BLAKE2b-256 f8ad34d94f6ff75c8b96e59a6f5636c8afe7d63ce29c5baba6fe898a3bd903bc

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69955d2b65a3d462992077b6a2fc1d209a3f0b67be36ccb9ecd587bcede76498
MD5 c10832c16ac626492535a655d799d08e
BLAKE2b-256 f10cc82b8fafd1b5b4ef44ca677f5a8165d5caced782e9c3828bd9b6dcd55435

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51b89f8d48e099fe64f5255788faded448127db5532b36ace431a967ba2198de
MD5 dde9a7cf228b9aecf07a7f54ab09c8c8
BLAKE2b-256 c79c64a9f53fc86e2560267b1501f0900ca0454b3b997d58936524e0253dad5a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5ff4785519895f51c49adf07151be6e5d344d4461ecc624bb61a5eb4201b8e25
MD5 b976d70d963e2e2f22e201044a8d8dd2
BLAKE2b-256 815d1ff435d32c4e85c3755fc0d7dd3ce1084c38c5f3774db9152a98d75719ea

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.4.0-cp310-none-win32.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0158d9976074d226f785d8a2ca56489f1b2108d2a0142015e15409fc2ef85675
MD5 0c12381fed9ee6a9e3caec3bd02e228f
BLAKE2b-256 5f003fbb3b3d57b39ed044840c2645531967c4fbb1c49f05bea924564161780d

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874fee94f92a34a9dd382679269b5b6d86897350cea4d7d4fb4ce00b1d8a673a
MD5 ac476bc46c149aaba53236536c1cf9a4
BLAKE2b-256 bee7481c33b5e180223c0616fa1d262b962f68ccb60e97b451cea756d792e95c

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6dc42085e3305b69399571a197d61d70b23a33a47301e2d9db69cf1f4fde48d
MD5 350f30c0a4a4b6c90b6158f0cbaab3aa
BLAKE2b-256 8af8a76b1b4f926304eb7b44275bcd682a94989eb0bc096fc77d4fc164b755dc

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 083f25d81d1d3d58edab9f53278849f80bc820bd42df69a4d56af9c5374d6bef
MD5 5ebd95b7350f7717430d9b0a49b631ec
BLAKE2b-256 72ee4d754c80045d2f91e03c32eb72ef3dce92fe005c100f8e1c73d4b79f550b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d38a41bfccdf93928dd4219af2d90cd64c49c110ac6792ecc14ae32789413d9
MD5 568f0a635cbf908e6380d19061667aa6
BLAKE2b-256 8814df4b2869e5afee16ed224eb611ff28650cf6453a03747901573ee2754dff

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4147281c86821c7da67518d7321cc4812f8a8018b345855e2f7976b6b1f965a4
MD5 d91761e4e6d0684968d7b6411a46bbc2
BLAKE2b-256 061dbaf497abdc498523101a200af4f75c955fff961789d8bcc651f6fda465ae

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a52b90015c66c484a511af2f90ccec7cef907d914a3a5c13f74cba50905e8a49
MD5 3a7d7bd45045acfc10ef08cba151e4ff
BLAKE2b-256 72ff1c1e889d096c16d4d9686538831702831590f8e35b36d69e18398d4bc52e

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 619fad8077e237f4c825dc9ccb6671295012bf5639036fffb663859641cb12b1
MD5 74790b4a0a8d983abdfd03de19ace150
BLAKE2b-256 e7da33c51e3b565b3b27d365cc595cd46ba38259af7d9a9dc14859b49ce22143

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6dbc9a7f5f2591c12c1ef7f8a181cd6941200e080226502e70221c1d020c2ac
MD5 8215652a191e25a6d66bf747e2f5d1dd
BLAKE2b-256 e8d3370374b33cec6abe4269e9413eddc91f44d8fb215858ecfcbbdbf7a72b69

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7426ac9e76c66096250d1576f424761eeab0a57f1c2bead5af7cacb85579049d
MD5 d7d2f87a73cb7bdc6e4d1c336966f694
BLAKE2b-256 a9426d355664653e159817bb511b8ce9a2d1cff0daa4bbf06b238ad66749e5e5

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.4.0-cp39-none-win32.whl
  • Upload date:
  • Size: 262.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0800b32743438377f2ba3004d2e7d9932bf17b826b1b429a2ceb0839b7da61f8
MD5 f0ae2ea11515d7eb5c8c4bbc554044bc
BLAKE2b-256 5998ce114971246146e4099eca4d7cbf0221c4a4167a37af832ca4929822a2b8

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874c302f76154d7c0341934733627cb96d8bef6e7ca8fb3ce5ca274498cb24a2
MD5 f0371d558e5e05205bf16440ddec917c
BLAKE2b-256 f34576a379bcaf9b3221331deb0540ce46333423be4516a93606d9ce4cc02174

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a395a3e6b7434b08fea9c4ceaabccd3aef33dba3c966e409ce81b9fcb9e702d
MD5 f8d658d8fe663a5d39f1fefbddf6ddf8
BLAKE2b-256 37f3eef41b3a8c6cf47228705fcbff0e2d41afdd9d5b479a758b9761b2cf93b0

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a49bc6519c9ce74d53811d43f67f00bde5e327f61db0d57d657add58988289ce
MD5 c1c90b2c9479e61421eccad7323e7ca0
BLAKE2b-256 ab33e6106813c81506b91fe9f34dc463c8ffcf97a01130d419bd40c373307110

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46527528b0325ec899d9d3d6c82a1d92536730f440435a135f55fa98f67b13bd
MD5 a020c90dd579866c15e89c34aa6fdaf2
BLAKE2b-256 759c2fcf615ec7934f3fc0c272bf15ae01e387a036b9faf08c55ee251d9584da

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 993c87ea27a23f4bdbc365e322c8561e09829873e522b9cef7e79b02f9388502
MD5 88858e0a8ba2304ffc949b34daa93520
BLAKE2b-256 caf0d85dac890c83eb02ac4d535d3c7ee95b70af78581bc1fbf4dafe87792864

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7ffdb1c2f21f8d93a5b00488f568ac71cf962cdc9a849abf90c62a1ea2e034e4
MD5 bc5e3ac25ab0082350551e4f76913871
BLAKE2b-256 24ec02092816765dc852197df660e945b82fc601be1edced8f6b5edc481dd04e

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c9eda86055741526ea33fc1298ddca4eaaca996b93a704b649ed8340a45b7399
MD5 988f863bdda7474412eac8fdb8ac8146
BLAKE2b-256 d602a33d8385f28436ff5fc094def00622492a8b3a08bd3a665ae3b9784c5a79

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-none-win32.whl.

File metadata

  • Download URL: ox_vox_nns-0.4.0-cp38-none-win32.whl
  • Upload date:
  • Size: 260.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3b7520ca194dd792379633de7c024aa4e26e6412d1d19b4664333a3a276e5397
MD5 f2e8e72301ed93cdd596d9430e9f8d27
BLAKE2b-256 9e506cebbe002981545864608dafc35e8cb3fec13d3b263f25ca7920da191c4a

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b202d70c6184b05cd4612f43c4b41008ae7833a587a6d4de5ce33c73fc2f5898
MD5 3e67565ef58e1beb603d2a6220e770c7
BLAKE2b-256 647b25908fa57942b2002bd9b7ca1b7c69f957e930036b9a2e2134f510d2f40b

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c687d0700f623d2ab286a372f65d981a6fc3d27b998dfd3007ae921a5f9b4454
MD5 b209cbae4f35b9bd6ea7be29654f53e9
BLAKE2b-256 4351060efbeaade0133f15da5566e956830256530928e2bf922283d22944abae

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71039f63f4f7a5af2784ed8a0623e84706d31ba67013e4567a05ab9dbd53dcac
MD5 13ecca619d6bfe6fb2dd165c35d46955
BLAKE2b-256 5655bf11cef6958cbc5c497f291285be32bd9f6db384e92a85b1eed0d4f22978

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c840138bfb03716a82963882a26ee7f04586b57693ad71818c88d5a849e72b0
MD5 51c7a30331df6308768d5e7b9fff8c14
BLAKE2b-256 2a5b3a9785390bae07856eb9474bb77cb26c642071c0852f295f57d848187938

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3586e6fcdda69949b4288c41b6b753f2951c00a45a213940242e8af1efa92127
MD5 4b6a10245b239aa55a696126fd1885b3
BLAKE2b-256 773c88f87eecb38cba926e1da52ae2e41819837ab4ac9e37e38e81a95c070c80

See more details on using hashes here.

File details

Details for the file ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ox_vox_nns-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c8b99d3a30e4d9b06ed91e72982ccafb978c47f140b4c2b5b490d042bae0df61
MD5 434499cc5c963a282c3e80910c6df349
BLAKE2b-256 e3372126f268523ea09bd3f98005065e4c36eff7146489ea8d7f5478731ed111

See more details on using hashes here.

Supported by

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