-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 914 Bytes
/
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
[tool.poetry]
name = "ml-reproducibility-challenge-2022"
version = "0.1.0"
description = "Code for reproducing the experiments of 'If You Like Shapley Then You’ll Love the Core'"
authors = ["Anonymous"]
license = "LGPL-3.0"
readme = "README.md"
packages = [{include = "mlrc22", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
numpy = "^1.24.1"
pandas = "^1.5.2"
scikit-learn = "^1.2.0"
torch = "^1.13.1"
tqdm = "^4.64.1"
notebook = "^6.5.2"
ipywidgets = "^8.0.4"
pyDVL = "0.4.0"
matplotlib = "^3.6.2"
seaborn = "^0.12.2"
dvc = "^2.38.1"
requests = "^2.28.1"
datasets = "^2.8.0"
torchvision = "^0.14.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21.0"
[build-system]
requires = ["poetry-core==1.2.0"]
build-backend = "poetry.core.masonry.api"
# Black-compatible settings for isort
# See https://black.readthedocs.io/en/stable/compatible_configs.html
[tool.isort]
profile = "black"