-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (51 loc) · 1.46 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
[tool.poetry]
name = "audiolm"
version = "0.1.0"
description = "Implementation of AudioLM"
authors = [
"Jose Manuel Del Valle Delgado <[email protected]>",
"Valerio Belli <[email protected]>",
]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
pandas = "2.0.3"
matplotlib = "^3.8.3"
numpy = "^1.23.5"
ipykernel = "5.5.6"
sounddevice = "^0.4.6"
tensorboard = "^2.15"
requests = "2.31.0"
tqdm = "^4.66.2"
transformers = "^4.40.1"
datasets = "^2.19.0"
soundfile = "^0.12.1"
fairseq = "^0.12.2"
iprogress = "^0.4"
torchinfo = "^1.8.0"
ipywidgets = "^8.1.2"
joblib = "^1.4.2"
scikit-learn = "^1.5.0"
# Enabled this if you want to use cuda local
# torch = { url = "https://download.pytorch.org/whl/cu121/torch-2.3.0%2Bcu121-cp39-cp39-win_amd64.whl" }
# torchaudio = { url = "https://download.pytorch.org/whl/cu121/torchaudio-2.3.0%2Bcu121-cp39-cp39-win_amd64.whl" }
# Enable this if you want to use on cpu locally.
# Keeping commented avoids overwrite of colabs pytorch version that ships with cuda
# torch = "2.2.1"
# torchaudio = "2.2.1"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
black = "^24.2.0"
textual-dev = "^1.5.1"
ruff = "^0.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# https://pylint.readthedocs.io/en/stable/user_guide/configuration/all-options.html
[tool.pylint]
disable = [
"W0237", # arguments-renamed
"C0301", # line-too long
"R0913", # too many arguments
]