zero-parameter-classifier / pyproject.toml
CharlesCNorton
Image-level person classification on EUPE-ViT-B features with no free parameters
e8b8483
Raw
History Blame Contribute Delete
637 Bytes
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "zero-parameter-classifier"
version = "0.0.0"
description = "Image-level person classification on EUPE-ViT-B features with no free parameters"
requires-python = ">=3.9"
dependencies = [
"torch>=2.0",
"numpy",
"pillow",
"transformers>=4.40",
"huggingface-hub",
"pycocotools",
]
[project.optional-dependencies]
dev = ["pytest>=7"]
synth = ["nosis"]
[tool.setuptools]
packages = ["common"]
py-modules = ["infer", "cache", "choose", "verify", "rtl_gen", "synth"]
[tool.pytest.ini_options]
testpaths = ["tests"]