-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.06 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
[project]
name = "zhyper"
version = "0.0.1"
authors = [{ name = "Mohamed Hesham Ibrahim Abdalla, Rujikorn Charakorn" }]
description = "The code repository for the paper 'Zhyper: Factorized Hypernetworks for Conditioned LLM Fine-Tuning."
readme = "README.md"
requires-python = ">= 3.10"
dependencies = [
"transformers==4.46.2",
"huggingface_hub[cli]",
"peft",
"accelerate",
"datasets",
"bitsandbytes",
"jupyter",
"matplotlib",
"hf_transfer",
"torchmetrics",
"inflect",
"zstandard",
"pre-commit",
"trl",
"tensorboardX",
"wandb",
"fasttext-wheel",
"rouge-score",
"evalplus",
"gradio>=5.29.0",
"vllm==0.5.4",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.black]
line-length = 119
[tool.pyright]
exclude = ["train_outputs", "data", "outputs", "plots", "tmp", "wandb"]
typeCheckingMode = "off"
[tool.uv.sources]
evalplus = { git = "https://github.com/evalplus/evalplus", rev = "1895d2f6aa8895044a7cf69defc24bd57695e885" }