-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (36 loc) · 1.11 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
[project]
name = "tame"
version = "0.1.0"
description = "Official implementation of LCMP & TAME (KDD 2026)"
readme = "README.md"
requires-python = "==3.13.*"
dependencies = [
"colorama==0.4.6",
"einops==0.8.1",
"icecream==2.1.8",
"loguru==0.7.3",
"numpy==2.3.5",
"openai==2.9.0",
"pillow==12.0.0",
"pydantic==2.12.5",
"python-dotenv==1.2.1",
"pyyaml==6.0.3",
"qwen-vl-utils==0.0.14",
"requests==2.32.5",
"sentence-transformers==5.1.1",
"torch==2.8.0",
"torchvision==0.23.0",
"tqdm==4.67.1",
"transformers==4.57.0",
"accelerate>=1.0",
"flash-attn==2.8.3",
"peft>=0.19.1",
"timm>=1.0.27",
]
# This repo is a collection of scripts, not an installable package.
[tool.uv]
package = false
# flash-attn: use a prebuilt wheel (matches torch 2.8 + CUDA 12.8 + cp313 + linux x86_64)
# instead of compiling from source. From mjun0812/flash-attention-prebuild-wheels.
[tool.uv.sources]
flash-attn = { url = "https://github.com/mjun0812/flash-attention-prebuild-wheels/releases/download/v0.7.16/flash_attn-2.8.3%2Bcu128torch2.8-cp313-cp313-linux_x86_64.whl" }