Initial commit

This commit is contained in:
Chris Proctor
2026-06-08 12:27:01 -04:00
commit 395180d6b2
19 changed files with 1461 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[project]
name = "classification-neural"
version = "0.1.0"
description = "Classification: Neural Networks lab"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"scikit-learn>=1.3",
"torch>=2.0",
"torchvision>=0.15",
]
[project.scripts]
digits = "cli.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cli", "models"]