ordvec 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ordvec-0.0.0/.gitignore +9 -0
- ordvec-0.0.0/PKG-INFO +27 -0
- ordvec-0.0.0/README.md +9 -0
- ordvec-0.0.0/ordvec/__init__.py +10 -0
- ordvec-0.0.0/pyproject.toml +31 -0
ordvec-0.0.0/.gitignore
ADDED
ordvec-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ordvec
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Training-free ordinal & sign quantization for vector retrieval — name reservation ahead of the first release. See the repository.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Fieldnote-Echo/ordvec
|
|
6
|
+
Project-URL: Repository, https://github.com/Fieldnote-Echo/ordvec
|
|
7
|
+
Author: Nelson Spence
|
|
8
|
+
License: MIT OR Apache-2.0
|
|
9
|
+
Keywords: ann,embeddings,nearest-neighbor,ordinal,quantization,rank,simd,vector-search
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Requires-Python: >=3.9
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# ordvec (name reservation)
|
|
20
|
+
|
|
21
|
+
Training-free ordinal & sign vector quantization for compressed
|
|
22
|
+
nearest-neighbour retrieval.
|
|
23
|
+
|
|
24
|
+
This `0.0.0` release reserves the PyPI name. The first functional release
|
|
25
|
+
lands alongside the **OrdVec / RankQuant** paper.
|
|
26
|
+
|
|
27
|
+
Source & docs: <https://github.com/Fieldnote-Echo/ordvec>
|
ordvec-0.0.0/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# ordvec (name reservation)
|
|
2
|
+
|
|
3
|
+
Training-free ordinal & sign vector quantization for compressed
|
|
4
|
+
nearest-neighbour retrieval.
|
|
5
|
+
|
|
6
|
+
This `0.0.0` release reserves the PyPI name. The first functional release
|
|
7
|
+
lands alongside the **OrdVec / RankQuant** paper.
|
|
8
|
+
|
|
9
|
+
Source & docs: <https://github.com/Fieldnote-Echo/ordvec>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""ordvec — name reservation.
|
|
2
|
+
|
|
3
|
+
Training-free ordinal & sign vector quantization for compressed
|
|
4
|
+
nearest-neighbour retrieval. The first functional release lands alongside
|
|
5
|
+
the OrdVec / RankQuant paper.
|
|
6
|
+
|
|
7
|
+
Source & docs: https://github.com/Fieldnote-Echo/ordvec
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
__version__ = "0.0.0"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ordvec"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Training-free ordinal & sign quantization for vector retrieval — name reservation ahead of the first release. See the repository."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT OR Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Nelson Spence" }]
|
|
13
|
+
keywords = ["vector-search", "quantization", "nearest-neighbor", "ann", "simd", "ordinal", "rank", "embeddings"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Intended Audience :: Science/Research",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"License :: OSI Approved :: Apache Software License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/Fieldnote-Echo/ordvec"
|
|
25
|
+
Repository = "https://github.com/Fieldnote-Echo/ordvec"
|
|
26
|
+
|
|
27
|
+
[tool.hatch.build.targets.wheel]
|
|
28
|
+
packages = ["ordvec"]
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.sdist]
|
|
31
|
+
include = ["ordvec", "README.md"]
|