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.3.0.tar.gz (16.9 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.3.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.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

ox_vox_nns-0.3.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.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

ox_vox_nns-0.3.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.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

ox_vox_nns-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-cp312-none-win_amd64.whl (250.2 kB view details)

Uploaded CPython 3.12Windows x86-64

ox_vox_nns-0.3.0-cp312-none-win32.whl (244.2 kB view details)

Uploaded CPython 3.12Windows x86

ox_vox_nns-0.3.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.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

ox_vox_nns-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (387.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ox_vox_nns-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (396.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ox_vox_nns-0.3.0-cp311-none-win_amd64.whl (249.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ox_vox_nns-0.3.0-cp311-none-win32.whl (244.3 kB view details)

Uploaded CPython 3.11Windows x86

ox_vox_nns-0.3.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.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

ox_vox_nns-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (387.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ox_vox_nns-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (396.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ox_vox_nns-0.3.0-cp310-none-win_amd64.whl (249.5 kB view details)

Uploaded CPython 3.10Windows x86-64

ox_vox_nns-0.3.0-cp310-none-win32.whl (244.3 kB view details)

Uploaded CPython 3.10Windows x86

ox_vox_nns-0.3.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.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

ox_vox_nns-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (387.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ox_vox_nns-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (396.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ox_vox_nns-0.3.0-cp39-none-win_amd64.whl (249.7 kB view details)

Uploaded CPython 3.9Windows x86-64

ox_vox_nns-0.3.0-cp39-none-win32.whl (244.6 kB view details)

Uploaded CPython 3.9Windows x86

ox_vox_nns-0.3.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.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

ox_vox_nns-0.3.0-cp38-none-win_amd64.whl (249.3 kB view details)

Uploaded CPython 3.8Windows x86-64

ox_vox_nns-0.3.0-cp38-none-win32.whl (243.3 kB view details)

Uploaded CPython 3.8Windows x86

ox_vox_nns-0.3.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.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

ox_vox_nns-0.3.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.3.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.3.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.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for ox_vox_nns-0.3.0.tar.gz
Algorithm Hash digest
SHA256 65c4786f610dfad36a7f66183fbaaf75243d38c913b52f616211d6b039407548
MD5 18fc6f4e03da8387b8f7ecb416e90b15
BLAKE2b-256 0e2f1d4dea8e9e824c103d7ced0c0c1661b626d083ba63cb9b56d022ec270cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b3050b1ff49d5dbd394b8a8380e39fcdfdabbeb49842e04007a972780ca5d7e
MD5 08d222d2ae9500a887382e99d33dd3cc
BLAKE2b-256 4f221875e26fab5ffce3e02daa80a44eb92a9214229e77fab8f6c465e7f33a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da358c8d0b7e85d23a82c3e6b51aef26b3bedebd933be6861c4c131c08e73017
MD5 708a825b02ba8b5f911c28bbff7c1c68
BLAKE2b-256 a3e7dd35bcfb729b218c95c52e4d7fe5389c7449467b4e133707ce598350c43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71888e3f29145b08ffd62375eb044728783d7e226016f516999f08c3346c0999
MD5 807f5effed7aa60ff9e83af0c033cd6c
BLAKE2b-256 497e8d85b9138c1163361f1456b7b26c0e4da44f6f0dbf36dccd95397d5f7a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5dd3f5aa488880a0185dac44faccaebfa0bbb27dbf85cd6c58f580097ca1144
MD5 0e80e2085b88c94c61d71a0bf966bd84
BLAKE2b-256 0a444f28d8bc36d9d29acd7d2ef5c9a2b773459b56e303d4fb08207e257b0aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dff128e472a036249b41ff073405c9ff5b9bdf332ab23459059babb299dd1f0
MD5 bea337c9ebdad908cabf45dd96c34b12
BLAKE2b-256 0d21c3fa3b82ecbdba6eee6cd5edcc7b0cd874f91eeac0b7a9cf5da2a0711405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d092dcd0b613425812f5e4b6c6572ca6df8d3663d4b6659ebbf3d76580fdb19
MD5 799f44739ed32777f920fc62e9558e9a
BLAKE2b-256 e30766aa749f2055c7d09b2db22392410b34fa47dd9a50941ab40c6cd45ccc30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bcd93753257a0a6888b1800bf7c5be2b6f9069194ff8b122e5498496a2eb1b7
MD5 cbb5252c5575e26c92d566c51c4a71cd
BLAKE2b-256 28176672b7a39bcbda470602c6447ad410712e132646a506a44217dfc3d1e5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3288e555401979518f095fee68baa1590af532deed1baed3d4d843c89839a160
MD5 f5a2c32a4c312ac4788e5c4a36191db2
BLAKE2b-256 8fd2d3b35968d02b6f0761b0872dca198879f56524ebf74bddd0fa928cb3e3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 686dac8b2578f1a12b922cde46b7daf50fa47b6c7765990b705f949815a1004f
MD5 bee25ece3245d2918cc8fb1a1a07047d
BLAKE2b-256 f9974db75301334d83726fad1a0b767aeada7887431da6553646b2f64b333e7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c989f114dfc048162d81fdaab649de2b255a116a091b73cb4334deb326ab8f47
MD5 6b7d7956d3c872865e3e0eab8ff46bca
BLAKE2b-256 d40eda914ef5c921c8ea5621f22c5d7741679755cc8083c8f6a854a131d98004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a3b0297a4a6465850cae15438766d0ffdcb99ba1c9c99f5cff11e2166953659
MD5 8fd3f71e8c3daadaa2846456b71ae203
BLAKE2b-256 777b820428124da371c19298c82931e86c7536ba5c455d48c2b751d001e95d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2033e7ab96c1616314ec6002596635b1eb19f59644677791d82157029e8209b7
MD5 98c601ba983e6b9a5ea0ea6a408a965a
BLAKE2b-256 4a1c5a169cd5260eb17e116f2f104da17d87e698b903c14b9eee62955ce54567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bb6b289e178c5f35a8a3db4b8ae563e69289e3f584bbf932d0067962678b515
MD5 e107446abcc522d484b889f8dd0c1c25
BLAKE2b-256 6b1f3a2b0e58eca7d7f598e2e81485e73bcc3a542d8bc194e8097062bd19d6d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0353888eb072652c89297d1ca5a3b6b9a24c26013b6b4168a1ba685f45156219
MD5 0048a19af7a00d85dfd82b6c71856ca7
BLAKE2b-256 7bc3602c039e99165f54a0b635457e5e491ed5f76239e804c520f7bfa4f02b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a47bc84204fa9c0368b3089e768285daa4d8a15a6a045763666006f1844575bc
MD5 c193cd49ac14a25ae832a921410f1c60
BLAKE2b-256 9e9ad31dd757a5e64eafd27a345a0856fb5d21dca2db15cb07c7742afb9fdb82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c422975f8466d74453c63563e4b65e49c5d564686f3087814a1476985f4dbdd7
MD5 e106a78ec825c06f6bbc591cf8570910
BLAKE2b-256 bd31aba56d5594e4a1b4f2101f98c0e109e0f40f10b8d66057a27c1495a3cf22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7b928475196ffee004abed466df93477331057c150e7f58bce52024a61c0ca4
MD5 20c7d2c227b788dc95c7e67d7f1d8820
BLAKE2b-256 7fd45b8a4b3c7ac8b438027514d690fb4e15b6a85cee93277a6ef59826681b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c5b524b04245d1c1e51be3fb289de21fc8905ff05f8f7864dc152e0e63d9fef4
MD5 0d0380b24f1ff33a88b6ea48b74e2514
BLAKE2b-256 02b3d69bb0ccc03f4d2defb011cbeb2f8a2f60149a565827b066977dc7258a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 935326b355934baa582ffe145791514af2308686fb8219cf1e036dfed5529e62
MD5 090fc0de80b4f9fb3de34233f9e14d35
BLAKE2b-256 04e6630f361d46a65b604e8fd46bb70a83733e58acb4efcf3c39a465ab8320ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5612b15d7e532333cb2cc0e1707819a8504fae33280af22b0b9864913a872526
MD5 be56ee8f87f6f5b40b0d7f6222a83a17
BLAKE2b-256 5b6c7c2b4aa9f814db424a63fd739b09e1fbc130c823820dfcce33b3c4c2d78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff3859f670768dc47d2fe0234934c544200aeed31ce20704b59c34cd0c88b00a
MD5 46cf5520b7a7c4b34779280b61c14124
BLAKE2b-256 34d05b662a896dc5a54eabb8f27a79dc862056564cfa530b6db628f2a7d5718c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82951be639372f21e6a0b9c72e31ff18b1b2befc24a2f2d47cb96171cfcb0591
MD5 0d12506cfbae019bb6f9d3564c027f3e
BLAKE2b-256 ddc71e544afc01dc589dfd6297f7eb4b1e5bcb165b225db346ec387a32c5feda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 350e3494f59bd519b3fcd5f766128b15d8a31fbfc811df04b360bd984bcd0fff
MD5 9ea23dd1f75d44aa53b3488b04ac0f8e
BLAKE2b-256 afb7b38116e309220bc48300c14dba24d2b0673e59c29dac55f002db64af0fc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ox_vox_nns-0.3.0-cp312-none-win32.whl
  • Upload date:
  • Size: 244.2 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.3.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 35db947f25b2d2986670c9c964e34cb95e6f90b2fa6edc7153caa1c2dfaab028
MD5 0aceb84e48dccab210a042f94afb9b7e
BLAKE2b-256 b74db493324c607c97720865378749ff510a1c8afc196cc95ffa1d493c875f2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fdd90e18b524b6ba02ac93218c12ebbf007e25fb62491596543a77c7b1281a0
MD5 cb82cb95041de120eeff69fd699c85ee
BLAKE2b-256 dc5d231166e7154bddc6ec4d1808c65af1083544196f4ae4156d0de079ec698b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3283f73df1f784084a43c80993702b38ea0c34a3d890374e26db40883a9c7b25
MD5 6e8d7a8b5b93f8fac33e89708d8e10c1
BLAKE2b-256 49f2a1cb432195fdbce6e47ce4a44a2572ea996a0bda10d432a09ef1893f8f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69f362f51a3e3fb347e7ee9a9449b91a03a47e25616838e822d66dd32f72f856
MD5 2a8f0bc07467f4da973050d8b22e0c3e
BLAKE2b-256 082305ede75e01160e517d50f1133c5a435d422c00eae8c92e0bb083ef22abe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d724d81a9479d9f9fe689eec22d41e77fcc28ae73653b5a9a37af6933731e006
MD5 124d12ca6356826d89ea2cf04ca9feb5
BLAKE2b-256 5c0d34e993c6cb4b80540b99d37ceffc72ab67978c5048d6fb6175f3a056d33f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 752d77dec03e3b4629d6efecac0fe89f46ca146442945b2f94fd42790b38eadf
MD5 8723fdfe6ecd52a8b39fea96ea571312
BLAKE2b-256 2f9f9122509a8da6557d7ae75e3350b3480037ec7ce527243e18594330e5718c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2244930a9cd2dd5220dc2a461c93eaaf3779a148eeffb0e5cba22f96278c59b1
MD5 ac63eedb54b77c258f8b11aa18953017
BLAKE2b-256 086bcc4f7275702a6354a215e3361881df51872e67b1bb3b206ac3c3e6531440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f3926cbbd1e67333976384af3e84d8dab762df34ff7bd5f80260dcaebada18b
MD5 887691b8693a7106e53335da0ff6722d
BLAKE2b-256 5b20c4207d0f99868d7f4bdb45e990c33c4f9d197f45f34d7ee46805a7f63f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 adc29a1e8976d641aa02dd9510cec37b14ea3472ad051b9cc62ec69e90908d1f
MD5 e84ac5378e0bcc60927575be025c2984
BLAKE2b-256 28f6a24105077657937f199023e6721218ff197f49a7e800e3637d8031a155d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 431db2cb693cf7103a3d54fa54cbdcb0645d6a9e1de05bddb04db9df278aacba
MD5 c28566d96a914f55e87b97e1b8b9b78b
BLAKE2b-256 3c701062161b54cb2386a03d9bfe36360901528b7c83332240a5bd2745d68cdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ox_vox_nns-0.3.0-cp311-none-win32.whl
  • Upload date:
  • Size: 244.3 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.3.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d8fb6d1d38646fdf57e11717bab6395d30b5bed968a0a55c7260be1bcea02270
MD5 1c6574fb181c0a4c34efb3d687b03885
BLAKE2b-256 58084379813b3b8ee47b7206eb062caf725d6edac3882885a76c9a24202e2f1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17efbc4459732c505653010605891a5c0d25f64feb5cc4a7519c425f59e06354
MD5 c1bbe7dc4b5c222d6be1c3a2e780dccc
BLAKE2b-256 4a32d6a6105b87ce1425936ee8b9ecf8efe913bf0b7c72874fa099540ef8a558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffa59c1526aef5bbab766e3720c28757b5652c9df891b6225e310447bd789322
MD5 e127d089d0f589af40884bc3b7011f73
BLAKE2b-256 d4baa8c8b7b834b7dc17f4a63f73d022315e13534b439a352de821e79703db79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fbeee0046d89ecc7887c58a376a3a3a6f442a998403678f8f9bdfcff86e26d2
MD5 c521f0fd2051a7756294ee6f78572bb3
BLAKE2b-256 207a7e69c18aa1813d6a0c8e076c619a6e1673a19e87fe49919c815f09dda192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3572e130dee738e6f3f03c25b56ab864d2db19cce7c5d4e145c969a5fff59b2
MD5 0a279bfabedf8b03c77e7b2deaca6fec
BLAKE2b-256 af429375ece6a2cc54cc2e1c3fab8118b12c924f2c151c6409558bbc072c2cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12f3c7b1cce9cc3767cfce2adb236478e3b60e6823a09d28db19f5a89fad0bc4
MD5 01157142641404d542c94dc49d6ef94d
BLAKE2b-256 b2d3c3f841c76000d52bfcc8c716d457bfcc80b42f2b28716a175695c047faca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 91d09f8c13bdfe89b4b23d358af0a8e7b5db5dee808297675a37c2d062cd1dc9
MD5 eb1a09cc6830e1fd36daead878fd1306
BLAKE2b-256 6b8e9368a52ce274a53242b6eebdb7c8ba9308bb871a5805df5cfdd51884f887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d7e2431cc0274a375217014ebd6d900344b524af52fe139b07b6c5eae486da3
MD5 aaa0988ab4e3990b1a624875dc815d89
BLAKE2b-256 380e67bb2f11fe514b5461ad5fb3f35feea032095e73adca360d75e0186e74d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6be2902efe1adc2e7031cd3c305a928a9438c336f34c1d721935bea7a7551133
MD5 c0cb8ac15602564adea506eed7723894
BLAKE2b-256 bcb66147945c94938f91ac5e189210aa427095fde81161e3449d553413530e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c8b0d28f1b92dc55f3fa6c9af3500129f8766624196d0b09bded6df80e8fe1ea
MD5 13b36039853b9d7cacebaaf6e388a63b
BLAKE2b-256 8c7f8e47a7cb02b2706e0b9cea3f14472bd2b6b2f908d333796f8fe649f3923b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ox_vox_nns-0.3.0-cp310-none-win32.whl
  • Upload date:
  • Size: 244.3 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.3.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 befe2168ba0e6ff1f8373e0ccf746d0f5c47d96cc1d359210438f3c5b092d0d6
MD5 7d8bbc8c84d01034f9cd76019c8ecbbf
BLAKE2b-256 f368d697e4c002de01be0e21b88c2755237137cbe6f5b265e192f0104ef048c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74b8ef09e349abe8d5727bbb1de49adf832b49e62452554ca60bbc12132351ad
MD5 d4b8ee4416445af2d480dad4f81979ff
BLAKE2b-256 f762293ef2ac4fd8e2e00b3e71e4084ec071bd39d1172932372abdd2bc293d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a787818c2852598abec52fb8bc5250c8c5cffc0ab18c1e354c156acf2919691
MD5 c8cefa7344b622841e8bf7f0753a716f
BLAKE2b-256 4a408097201f6893bb25edc0d7bf4b3e8cf20eb834f48e90e2489aaef1f0f3d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65f990b881d16ee345dad51959dfbd7c7c44eeaf215425564e8171b6f39752ab
MD5 04d410da957a2fd3d1bf9eba1dda03c5
BLAKE2b-256 676d739124b2cc19acfad39273c3804793cbb65d0d2b5751e30bc35c08cf1fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e6c2a5d26afc686024b02e10f24dd5666bef70e8b8ee23109ccaede0ee8de26
MD5 425ec3c0b635fe286318bd8b2fe4f15f
BLAKE2b-256 d578d902e319ab7ef5d79fc56987381ac8bfd4a1859e0ac6d286057cd2d60ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f37564e7cfa0f85c79b4eb28e1fcabf770151e81064a709b0e2872e1584d5e5
MD5 5774cffebd286e874a9fd3d4cd9e8b0b
BLAKE2b-256 05691c2b7f4282edba3aa0a5693df4741fa1a8178d119a87e6d5f82e8b218498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 618e1160d54c5822a33cedbefad5c856cfd5b35211600ec9ebcb8a6913896fb5
MD5 bed47ef9717e0eb37d8f845980349b9a
BLAKE2b-256 28b60fb61e9e32e9324fc99a901656f1e87cb9f067682456d1dcafb3cf2759c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96570c86f94dccffd26a7375a47a4cc01fb61f68efafe112f0bf99f332ff38df
MD5 5a82dd9f7cbcd5390cef175847f3ebbc
BLAKE2b-256 d849c1c406b7b69409c913740367390fb8499cc3f840fb63817a31505672166a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7f99e66a3330d954ffc6dc1200c0cbc80eb4cb8c0b1fd9a5156bb8b4a997909
MD5 5464c425d20d246cc0c47fda30027db1
BLAKE2b-256 fb7d3ad8f07b1641b7edf7569957485aecec8ccad960e5ca3084ea6b77d29be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3b924fbf0e18dad1f1c380f6c168d972f54c18847526df02be3b0c214d14154a
MD5 d7945dbbb48ba942d7fb3e361cf14e7b
BLAKE2b-256 c8d4ed1f5c68a30a43d784bccb609c7508d73735a8bff6c9f795e336311594f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ox_vox_nns-0.3.0-cp39-none-win32.whl
  • Upload date:
  • Size: 244.6 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.3.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f04ca0041f74107d115c257f0b9e7001829e52f8295fdd9a79dc75683978deb4
MD5 e3edb4d4dd67a69c6ecde10b7fc1df0e
BLAKE2b-256 ac735b54bc09599e2567a2439d9ab45bcf88f033e6bfcfd6d91b5059f5dcd00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b8ef8b4a969d6d4fc098ceca2850ca108af986d468ed36462a56231e4a05732
MD5 df6e34decbf139145c2da3d5c699ed86
BLAKE2b-256 925776d90e11e805fadda97685a73cad7dc64ee73806ce256040503ebdea035c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0809b2677a0dda5e531989aeda9b19e9b25712cfabe18230f5a568780f632e2e
MD5 064c772990e96eb62b0f5707be241a18
BLAKE2b-256 07f35effb7a38aa9b3f834d6e1335eab066747e6838385d96318aa8ce7b6b8e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25c7e579c0c29b7423a59235d582c82c9d4a0e44b2cf4dfc0a72ebd0d94c5933
MD5 8f9255b5e2feb6a6b1836db7f4e2b685
BLAKE2b-256 79a2879f9f60b959dfa5621564b3b38eb2d0b2e4a1beb2c2a05e38ab1b37de16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c73ec5090536c466a685c198f72b2a79ace5793ab812d3b8121f27cda77f744
MD5 f515b8593b03ff71e2f98a008cb0a685
BLAKE2b-256 05f91cd3f1208bc9381837ae252bd15cb2eddac5ef837747b142358910bdc35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7135a152e67e6eedeb001403cad75d68db2058429576bf5ab501654bf39fe74
MD5 d872d17948a7853a1baca3e1b2264ea9
BLAKE2b-256 290f0136b08f3f94e64968e15bd0453d47118169874163a11d3a7626d831689d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1396ae875330ce7943ead24753d1728788beb45d7023cfd6db842f5c83ce1e4d
MD5 5bf3d7a11d2f9c89585d50a6784b6bc6
BLAKE2b-256 744389f21c85c6898b6d83ee8a4b6db504cbb62f944d7e95f494e5779f76ea68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 388679d54639e4c0b12ae797033defa5b389aff6e014d4dd1305332a06cb55bc
MD5 4718769b8a5944512a9a24ab675ded70
BLAKE2b-256 a82a391af54aa5591bf10be9a8146cfbf4d3f0a9fa87b2a03cb0a6ced5be7e69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ox_vox_nns-0.3.0-cp38-none-win32.whl
  • Upload date:
  • Size: 243.3 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.3.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c0961aa72a59cea62404f4e1d51cb65a6ac7b3a251faa6a0b645ffb4f7e0efb8
MD5 8dbed9578437646ba46e7cec40801217
BLAKE2b-256 c0a163560285f8e212ef0feefb4d74250006e2eba29d13393a41aeab7f5322b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99c52e3eb05b2e736029b53eb352d07fbe2e06d0be0df97cb140bd54fc7486da
MD5 0f08eed1018acc22b76edd7c6a3ac13a
BLAKE2b-256 c7aeb3493d1daa1ffd15f8fac5572f2093333b356d318a13460de0f1a979c62a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13d771fca70a24ffa694a893189551c25b20556972c0cc6fce704b331b47cde0
MD5 473809d8a42f7fd2f717308710b8c218
BLAKE2b-256 1e79b3bfdc255eac12120578a12e232e2bb0396c8ba918d335802e926dce4e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ae663918e9d679514d976e8f8ae037c26e337b4c2dd4a91c142405bb25e834c
MD5 9d2b2ee03bd79d21e3e94b7b3849f90a
BLAKE2b-256 efd9f6b3185864decf2656c9475fe9a7974587327ca6f67c987f6fe5d4ea350a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97d4aa467affe645cda2498ceaab66751ecf8551db24f4c60efec48085cd3a8f
MD5 5c68cbf34ae741d67d1b3bd5eab36cb0
BLAKE2b-256 ff14c5cd00d786a600436e17d87d893818b6aa5ed0cde4efdb2d4414af440ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a147e03a47f81d9f82414cecefdea58710b5f283bc57e3990550e9ac4d54e56
MD5 3e15f033dadd194e378d89ffe87432a4
BLAKE2b-256 c8c9fb5b68fcd03e472017092c269d137bfdb2497188170dd14f27a385f38ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ox_vox_nns-0.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5ac43555c1b90f827bc43725618c04918c44952127f4c81e55d3194d8b248c2
MD5 e25266e6fa6c7a8d0fda9abfc8aa2fc8
BLAKE2b-256 76f7a161995272b765417bf7f04144647dfc7b59699e78da0aef65abaa8de482

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