-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
33 lines (28 loc) · 888 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
[tool.poetry]
name = "activeft"
version = "0.1.1"
description = "Efficiently fine-tune large neural networks by intelligent active data selection"
authors = ["Jonas Hübotter <jonas.huebotter@inf.ethz.ch>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = ">=3.10"
torch = "^2.4.0"
[tool.poetry.extras]
logging = ["wandb"]
[tool.poetry.urls]
homepage = "https://github.com/jonhue/activeft"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = "(venv|^/activeft/model.py)"