-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
99 lines (90 loc) · 2.65 KB
/
pyproject.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[project]
name = "iv-q4-birdclef-2024"
version = "1.0.0"
authors = [
{ name = "Emiel Witting", email = "[email protected]"},
{ name = "Jeffrey Lim", email = "[email protected]" },
{ name = "Hugo de Heer", email = "[email protected]"},
{ name = "Tolga Kopar", email = "[email protected]" },
{ name = "Kristóf Sándor", email = "[email protected]" },
]
description = "Team Epoch IV's solution to the BirdCLEF 2024 competition."
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26.2",
"pandas>=2.1.4",
"scikit-learn>=1.4.2",
"tqdm>=4.60.0",
"epochalyst==0.3.2",
"seaborn>=0.13.0",
"matplotlib>=3.8.2",
"plotly>=5.18.0",
"torch==2.2.2+cu121",
"torchvision==0.17.2+cu121",
"torchaudio==2.2.2+cu121",
"dask>=2024.4.0",
"dask-expr>=1.0.12",
"typing_extensions>=4.9.0",
"annotated-types>=0.6.0",
"hydra-core>=1.3.2",
"wandb>=0.16.2",
"randomname>=0.2.1",
"coloredlogs>=15.0.1",
"librosa>=0.10.1",
"onnx>=1.16.0",
"onnxruntime>=1.17.3",
"kornia>=0.7.2",
"timm>=0.9.16",
"sparsemax>=0.1.9",
"scipy>=1.12.0",
]
[project.scripts]
train = "train:run_train"
cv = "cv:run_cv"
submit = "submit:run_submit"
[project.urls]
Homepage = "https://teamepoch.ai/competitions#Bird"
Repository = "https://github.com/TeamEpochGithub/iv-q4-birdclef-2024.git"
Issues = "https://github.com/TeamEpochGithub/iv-q4-birdclef-2024/issues"
[tool.rye]
managed = true
lock-with-sources = true
dev-dependencies = [
"pre-commit>=3.7.0",
"notebook>=7.0.6",
"jupyter>=1.0.0",
"ipykernel>=6.27.1",
"pytest>=8.1.1",
"pytest-cov>=5.0.0",
"kaggle>=1.6.12",
"xeno-canto>=3.0",
"tensorflow[and-cuda]>=2.8.0",
"tensorflow-hub>=0.12.0",
"audiomentations>=0.36.0",
]
[[tool.rye.sources]]
name = "pytorch"
url = "https://download.pytorch.org/whl/torch_stable.html"
type = "find-links"
[tool.rye.scripts]
download-models = { call = "submission.download_models:download_models" }
manage-datasets = { call = "submission.manage_datasets:manage_datasets" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src", "external", "cv", "submit", "train"]
[tool.pydoclint]
style = "sphinx"
arg-type-hints-in-docstring = false
arg-type-hints-in-signature = true
skip-checking-short-docstrings = false
check-return-types = false
show-filenames-in-every-violation-message = true
ignore = [
"DOC103", # Docstring arguments are different from function arguments. Too often a false positive.
]