-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (52 loc) · 1.1 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
54
55
56
57
58
59
60
[project]
name = "judge-from-scratch"
version = "0.1.0"
description = "judge-from-scratch — fine-tuning Gemma 4 E4B into a specialized social-bias evaluation judge."
readme = "README.md"
requires-python = "==3.11.*"
authors = [
{ name = "Krishna Kartik", email = "krishnakartik1@gmail.com" },
]
dependencies = [
"unsloth",
"trl",
"peft",
"transformers>=5.5.0",
"datasets",
"accelerate",
"bitsandbytes",
"openai",
"anthropic",
"together",
"python-dotenv",
"scikit-learn",
"pandas",
"tqdm",
"pytest",
"modal>=1.4.2",
"wandb>=0.26.1",
"huggingface-hub>=1.12.0",
"pyyaml>=6.0.3",
"mergekit>=0.1.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["scripts"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
[tool.black]
line-length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"black>=26.3.1",
"ruff>=0.15.12",
]