-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (45 loc) · 1.17 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
[project]
name = "seahorse"
version = "0.1.0"
description = "A small VLLM for research"
authors = [
{ name = "Tyler Romero", email = "tyler.alexander.romero@gmail.com" }
]
readme = "README.md"
requires-python = "~=3.11"
dependencies = [
"bitsandbytes~=0.43",
"datasets~=2.16",
"devtools>=0.12.2",
"numpy~=1.26",
"optuna~=3.6",
"pandas>=2.2.2",
"peft~=0.11",
"pillow~=10.4",
"pydantic~=2.9",
"schedulefree>=1.2.6",
"scikit-learn~=1.5",
"scipy~=1.14",
"timm~=1.0",
"torch==2.4.0",
"torchvision~=0.19.0",
"transformers~=4.39",
# due to lmms-eval
"triton~=3.0.0",
"wandb>=0.17.4",
"flash-attn @ https://github.com/Dao-AILab/flash-attention/releases/download/v2.6.3/flash_attn-2.6.3+cu123torch2.3cxx11abiFALSE-cp311-cp311-linux_x86_64.whl",
"lmms-eval @ git+https://github.com/EvolvingLMMs-Lab/lmms-eval.git@22ed307",
"liger-kernel>=0.2.1",
"accelerate>=0.34.2",
]
[tool.uv]
dev-dependencies = [
"matplotlib~=3.8",
"notebook >=7.0",
"pytest >=7.4",
]
override-dependencies = [
"transformers~=4.45", # override unneeded constraint from lmms-eval
]
[tool.setuptools]
packages = ["seahorse"]