-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.32 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "DriverNet"
version = "0.1.0"
description = "A deep learning pipeline for detecting driver distraction."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"kaggle>=1.7.4.5",
"lightning>=2.5.5",
"matplotlib>=3.9.4",
"numpy>=2.0.2",
"pandas>=2.3.3",
"pyyaml>=6.0.3",
"scikit-learn>=1.6.1",
"scipy>=1.14.0",
"seaborn>=0.13.2",
"tensorboard>=2.20.0",
"torch>=2.8.0",
"torchmetrics>=1.8.2",
"torchvision>=0.23.0",
"tqdm>=4.67.1",
"omegaconf>=2.3.0",
"matplotlib-inline>=0.2.1",
"cloud-tpu-client>=0.10",
"opencv-python>=4.11.0.86",
"pillow-simd>=9.5.0.post1",
"segment-anything",
"transformers>=4.57.1",
"ultralytics>=8.3.225",
"timm>=1.0.22",
"wandb>=0.22.3",
"kornia>=0.8.2",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.uv.sources]
segment-anything = { git = "https://github.com/facebookresearch/segment-anything.git" }
[dependency-groups]
dev = [
"ipykernel>=7.1.0",
"ipywidgets>=8.1.8",
]
[project.scripts]
download-data = "scripts.download_data:main"
check-data = "scripts.test_datamodule:main"
batch-preprocess-data = "scripts.preprocess.run_batch:main"
test-teacher = "scripts.test_teacher_model:main"