File size: 662 Bytes
f5498f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "one-parameter-classifier"
version = "0.0.0"
description = "Image-level person classification on EUPE-ViT-B features with a single free parameter"
requires-python = ">=3.9"
dependencies = [
"torch>=2.0",
"numpy",
"pillow",
"safetensors",
"transformers>=4.40",
"huggingface-hub",
"pycocotools",
]
[project.optional-dependencies]
dev = ["pytest>=7"]
synth = ["nosis"]
[tool.setuptools]
packages = ["common"]
py-modules = ["infer", "head", "verify", "calibrate", "rtl_gen", "synth"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|