Skip to content

Commit

Permalink
✨ feat(monitor): Add support for tensorboard
Browse files Browse the repository at this point in the history
  • Loading branch information
KarhouTam committed May 18, 2024
1 parent 1c5cbe3 commit 05aca78
Show file tree
Hide file tree
Showing 5 changed files with 340 additions and 113 deletions.
201 changes: 195 additions & 6 deletions .environment/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions .environment/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ version = "0.2.0"
description = "Benchmark of federated learning that aim solving image classification tasks."
authors = ["KarhouTam <karhoutam@qq.com>"]
license = "GPL-2.0-or-later"
readme = ["README.md", "data/README.md"]
readme = ["../README.md", "../data/README.md"]
repository = "https://github.com/KarhouTam/FL-bench"

[[tool.poetry.source]]
name = "mirrors"
url = "https://mirrors.sustech.edu.cn/pypi/simple"
priority = "default"
priority = "primary"

[tool.poetry.dependencies]
python = ">=3.10, <3.12"
Expand All @@ -29,6 +29,7 @@ faiss-cpu = "1.7.4"
pynvml = "11.5.0"
PyYAML = "6.0.1"
ray = "2.10.0"
tensorboard = "2.16.2"

[build-system]
requires = ["poetry-core"]
Expand Down
3 changes: 2 additions & 1 deletion .environment/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ faiss-cpu~=1.7.4
scikit-learn~=1.4.0
pynvml~=11.5.0
PyYAML~=6.0.1
ray[default]~=2.10.0
ray[default]~=2.10.0
tensorboard~=2.16.2
Loading

0 comments on commit 05aca78

Please sign in to comment.