-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 896 Bytes
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
[project]
name = "eager-embed-v1"
version = "0.1.0"
description = "Eagerworks embeddings model"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"torch==2.5.0+cu121",
"torchvision==0.20.0+cu121",
"accelerate>=1.11.0",
"datasets>=4.3.0",
"deepspeed>=0.18.1",
"faiss-cpu>=1.12.0",
"ninja>=1.13.0",
"peft>=0.17.1",
"pillow>=12.0.0",
"flash-attn==2.8.2",
"qwen-vl-utils>=0.0.14",
"qwen-omni-utils>=0.0.8",
"tevatron",
"mteb[eager-embed]",
]
[tool.uv.sources]
torch = { index = "pytorch" }
torchvision = { index = "pytorch" }
tevatron = { git = "https://github.com/eagerworks/tevatron" }
mteb = { git = "https://github.com/eagerworks/mteb", branch = "feat/eagerembed" }
[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu121"
explicit = true
[tool.uv.extra-build-dependencies]
flash-attn = ["torch"]