├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt └── source │ ├── api.rst │ └── tutorial.rst ├── mypy.ini ├── nanopq ├── __init__.py ├── convert_faiss.py ├── opq.py └── pq.py ├── pyproject.toml ├── requirements-dev.txt ├── setup.py └── tests ├── __init__.py ├── test_convert_faiss.py ├── test_opq.py └── test_pq.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/docs/source/tutorial.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True -------------------------------------------------------------------------------- /nanopq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/nanopq/__init__.py -------------------------------------------------------------------------------- /nanopq/convert_faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/nanopq/convert_faiss.py -------------------------------------------------------------------------------- /nanopq/opq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/nanopq/opq.py -------------------------------------------------------------------------------- /nanopq/pq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/nanopq/pq.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | mypy -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_convert_faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/tests/test_convert_faiss.py -------------------------------------------------------------------------------- /tests/test_opq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/tests/test_opq.py -------------------------------------------------------------------------------- /tests/test_pq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsui528/nanopq/HEAD/tests/test_pq.py --------------------------------------------------------------------------------