-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 905 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
[tool.poetry]
name = "qlora-sam"
version = "0.1.0"
description = "Fine-tune SAM with Huggigface PEFT and Trainer apply QLoRA, DoRA, etc."
authors = ["Magnus Samuelsen"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
transformers = {git = "https://github.com/MagnusS0/transformers", rev = "sam_support_sdpa"}
pycocotools = "^2.0.8"
numpy = "^2.1.1"
peft = "^0.12.0"
bitsandbytes = "^0.43.3"
accelerate = "^0.34.2"
evaluate = "^0.4.3"
tensorboardx = "^2.6.2.2"
tensorboard = "^2.17.1"
torchvision = "^0.19.1"
segmentation-models-pytorch = {git = "https://github.com/qubvel/segmentation_models.pytorch"}
monai = "^1.3.2"
timm = "^1.0.9"
psutil = "^6.0.0"
packaging = "^24.1"
ninja = "^1.11.1.1"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.1.1"
fiftyone = "^0.25.2"
fvcore = "^0.1.5.post20221221"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"