forked from DBD-research-group/BirdSet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.85 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
[tool.poetry]
name = "birdset"
version = "0.2.0"
description = "BirdSet: A Large-Scale Dataset for Audio Classification in Avian Bioacoustics"
authors = ["Lukas Rauch <[email protected]>", "Raphael Schwinger <[email protected]>", "Moritz Wirth <[email protected]>", "Rene Heinrich <[email protected]>", "Jonas Lange <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
scipy = "^1.11.3"
ffprobe = "^0.5"
# --------- pytorch --------- #
torch = "2.2.0"
torchvision = "0.17.0"
lightning= "^2.0"
torchmetrics= "1.2.0"
# --------- hydra --------- #
hydra-core = "1.3.2"
hydra-colorlog = "1.2"
# --------- loggers --------- #
# wandb
# neptune-client
# mlflow
# comet-ml
# aim>=3.16.2 # no lower than 3.16.2, see https://github.com/aimhubio/aim/issues/2550
# --------- others --------- #
# rootutils # standardizing the project root setup
# pre-commit # hooks for applying linters on commit
# rich # beautiful text formatting in terminal
# pytest # tests
# sh # for running bash commands in some tests (linux/macos only)
rootutils = "^1.0.7"
pre-commit = "^3.5.0"
rich = "13.7.0"
matplotlib = "^3.8.0"
tensorboard = "^2.14.1"
ipywidgets = "^8.1.1"
jupyter = "^1.0.0"
datasets = "2.18.0"
audiomentations = "0.34.1"
torch-audiomentations = "0.11.0"
wandb = "^0.16.0"
transformers = "4.38.0"
pyrootutils = "^1.0.4"
mlflow = "^2.11.0"
pydub = "^0.25.1"
ipython = "8.18.1"
librosa = "^0.10.2"
numpy = "1.26.4"
torchaudio = "2.2.0"
scikit-learn = "1.3.2"
pillow = "10.1.0"
pandas = "2.1.3"
soundfile = "0.12.1"
black = {extras = ["jupyter"], version = "^24.10.0"}
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.2"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"