-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.57 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 = "amuletml"
version = "0.3.0"
description = "Amulet is a Python machine learning (ML) package to evaluate the susceptibility of different risks to security, privacy, and fairness."
authors = [
"Asim Waheed <asim.waheed29@gmail.com>",
"Sebastian Szyller <contact@sebszyller.com>",
"Vasisht Duddu <nvduddu@uwaterloo.ca>"
]
readme = "README.md"
license = "Apache-2.0"
packages = [
{include = "amulet"}
]
package-mode = true
[tool.poetry.dependencies]
python = "^3.11"
captum = "0.7.0"
cleverhans = "4.0.0"
gdown = "5.2.0"
matplotlib = "3.8.3"
numpy = "1.26.4"
opacus = "1.4.1"
pandas = "2.2.1"
scikit-learn = "1.4.1.post1"
scipy = "1.12.0"
torch = {version = "^2.2.0", source = "pytorch-gpu-src"}
torchvision = {version = "^0.18.0", source = "pytorch-gpu-src"}
tqdm = "4.66.2"
ucimlrepo = "0.0.3"
wget = "3.2.0"
[[tool.poetry.source]]
name = "pytorch-gpu-src"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
pre-commit = "3.7.1"
basedpyright = "1.12.5"
[tool.basedpyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
deprecateTypingAliases = true
reportDeprecated = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/ssg-research/amulet"
Issues = "https://github.com/ssg-research/amulet/issues"