-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.5 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
[tool.poetry]
name = "adalayers"
version = "0.1.0"
description = "adaptive layers selection for transfer learning"
authors = ["alexdremov <dremov.me@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.11.*"
numpy = "^1.26.2"
wandb = "^0.17.1"
torch = [
{ markers = "sys_platform == 'darwin' and platform_machine == 'arm64'", url = "https://download.pytorch.org/whl/cpu/torch-2.1.1-cp311-none-macosx_11_0_arm64.whl#sha256=e312f7e82e49565f7667b0bbf9559ab0c597063d93044740781c02acd5a87978" },
{ markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'", url = "https://download.pytorch.org/whl/cpu/torch-2.1.1-cp311-none-macosx_10_9_x86_64.whl#sha256=a70593806f1d7e6b53657d96810518da0f88ef2608c98a402955765b8c79d52c" },
{ markers = "sys_platform == 'linux'", url = "https://download.pytorch.org/whl/cu118/torch-2.1.1%2Bcu118-cp311-cp311-linux_x86_64.whl#sha256=f3c0ba02b50d0021ff26f030e22d4c45965537cf91f322e52a65b8c58396f81c" },
]
torchvision = "^0.16.1"
torchdata = "^0.7.1"
transformers = "^4.35.2"
omegaconf = "^2.3.0"
hydra-core = "^1.3.2"
hydra-colorlog = "^1.2.0"
datasets = "^2.16.1"
lightning = "^2.2.0"
scikit-learn = "^1.4.0"
black = "^24.1.1"
matplotlib = "^3.8.4"
jupyterlab = "^4.1.6"
ipywidgets = "^8.1.2"
pytorch-crf = "^0.7.2"
seaborn = "^0.13.2"
tikzplotlib = "^0.10.1"
latex = "^0.7.0"
clearml = {extras = ["s3"], version = "^1.16.1"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"