-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (54 loc) · 1.27 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "separability"
version = "0.9.2"
description = "LLM Tools for looking at separability of LLM Capabilities"
authors = ["Nicky Pochinkov"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
repository = "https://github.com/pesvut/separability"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
ipykernel = "^6.21.1"
ipywidgets = "^8.0.4"
numpy = "^1.23"
numexpr = "^2.7.0"
torch = "^2.0.1"
tensorboardx = "^2.5.1"
tensorboard = "^2.11.2"
dict-deep = "^4.1.2"
pandas = "^1.5.3"
transformers = "^4.30.0"
tokenizers = "^0.13.3"
sentencepiece = "^0.1.99"
bitsandbytes = "^0.40.2"
scipy = "^1.11.1"
datasets = "^2.9.0"
evaluate = "^0.4.0"
zstandard = "^0.19.0"
welford-torch = "^0.2.1"
einops = "^0.6.0"
matplotlib = "^3.6.3"
wandb = "^0.13.9"
accelerate = "^0.21.0"
celery = "^5.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
mypy = "^0.991"
autopep8 = "^2.0.1"
sphinx = "^6.1.3"
sphinx-rtd-theme = "^1.2.0"
ansible = "^8.4.0"
bokeh = "3.0.*,>=2.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]