-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (41 loc) · 946 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
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
authors = []
description = "Finetuning vision models using accelerate on modal."
name = "isic2024-scd"
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
python = ">=3.10,<3.11.dev0"
kaggle = "^1.6.17"
pillow = "^10.4.0"
h5py = "^3.11.0"
torch = "^2.4.0"
albumentations = "^1.4.12"
timm = "^1.0.7"
accelerate = "^0.33.0"
pandas = "^2.2.2"
scikit-learn = "^1.5.1"
tqdm = "^4.66.4"
isic-cli = "^11.0.0"
einops = "^0.8.0"
libauc = "^1.4.0"
imblearn = "^0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
modal = "^0.63.89"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
ruff = "^0.1.15"
pre-commit = "^3.6.0"
[tool.ruff]
target-version = "py310"
[tool.ruff.flake8-annotations]
mypy-init-return = true
[tool.ruff.pydocstyle]
convention = "google"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]