forked from LINs-lab/client2vec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 805 Bytes
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
[tool.poetry]
name = "fl-bench"
version = "0.1.0"
description = "Benchmark of federated learning that aim solving image classification tasks."
authors = ["KarhouTam <787992532@qq.com>"]
license = "GPL-2.0-or-later"
readme = ["README.md", "data/README.md"]
repository = "https://github.com/KarhouTam/FL-bench"
[tool.poetry.dependencies]
python = ">=3.10, <3.12"
torch = "1.13.1"
torchvision = "0.14.1"
torchaudio = "0.13.1"
rich = "13.3.5"
numpy = "1.24.3"
pandas = "2.0.1"
visdom = "0.2.4"
Pillow = "9.4.0"
scipy = "1.10.1"
matplotlib = "3.7.1"
scikit-learn = "1.2.2"
faiss-cpu = "1.7.4"
pynvml = "11.5.0"
[[tool.poetry.source]]
name = "mirrors"
url = "https://mirrors.sustech.edu.cn/pypi/simple"
priority = "default"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"