-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (73 loc) · 1.99 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fisheradaptune"
version = "0.1.0"
description = "Fisher-guided Adaptive Fine-Tuning: model-agnostic progressive parameter freezing via Fisher Information Matrix statistics."
requires-python = ">=3.9"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Ghodsieh Rostami", email = "ghodsieh.rostami@gmail.com"},
]
keywords = [
"fine-tuning",
"fisher-information",
"adaptive-training",
"parameter-efficiency",
"deep-learning",
"pytorch",
"transfer-learning",
"pruning",
"jensen-shannon-divergence",
"sam2",
"segmentation",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: Free for non-commercial use",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"pyyaml>=6.0",
]
[project.optional-dependencies]
logging = ["wandb"]
plotting = ["matplotlib"]
dev = [
"ruff==0.4.4",
"mypy==1.10.0",
"pre-commit==3.7.1",
]
[project.urls]
Homepage = "https://github.com/Mahdi-S-Hosseini/FisherAdapTune"
Repository = "https://github.com/Mahdi-S-Hosseini/FisherAdapTune"
"Bug Tracker" = "https://github.com/Mahdi-S-Hosseini/FisherAdapTune/issues"
[tool.setuptools.packages.find]
include = ["scripts*"]
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.ruff.lint]
select = ["E9", "F", "I"]
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
pretty = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = ["torch.*"]
follow_imports = "skip"