-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.01 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "complexity-aware-fine-tuning"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"accelerate==1.3.0",
"datasets>=3.6.0",
"ipywidgets>=8.1.7",
"loguru>=0.7.3",
"matplotlib>=3.10.1",
"mistral-common>=1.9.1",
"mistralai>=1.6.0",
"numpy>=2.2.4",
"openai>=1.78.1",
"pandas>=2.2.3",
"peft>=0.17.1",
"protobuf>=6.30.2",
"pyarrow>=19.0.1",
"pydraconf>=0.1.0",
"scikit-learn>=1.6.1",
"seaborn>=0.13.2",
"sentencepiece>=0.2.1",
"torch==2.10.0",
"tqdm>=4.67.1",
"transformers==4.52.3",
]
[project.optional-dependencies]
evals = [
"flash-attn>=2.8.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"src/core"
]
[tool.uv]
no-build-isolation-package = ["flash-attn", "xformers"]
[dependency-groups]
dev = [
"huggingface-hub[cli]>=0.29.3",
"ipykernel>=6.29.5",
"pytest>=9.0.2",
]