-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (58 loc) · 1.6 KB
/
pyproject.toml
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
61
62
[build-system]
requires = ["setuptools >= 68.2.2"]
build-backend = "setuptools.build_meta"
[project]
name = "kolibrify"
dynamic = ["version"]
dependencies = [
"datasets ~= 3.1.0",
"rich ~= 13.7.0",
"typer ~= 0.12.3",
"transformers ~= 4.46.3",
"trl ~= 0.12.1",
"unsloth ~= 2024.11.11",
"vllm <= 0.6.4.post1",
"langdetect ~= 1.0.9",
"nltk ~= 3.8.1",
"pymorphy2 ~= 0.9.1",
"immutabledict ~= 4.1.0"
]
requires-python = ">=3.10"
authors = [
{name = "Igor Kilbas", email = "[email protected]"}
]
maintainers = [
{name = "Igor Kilbas", email = "[email protected]"}
]
description = "A small framework for curriculum training of LLMs"
readme = "README.rst"
license = {file = "LICENSE"}
keywords = [
"large language model",
"finetuning",
"llm finetuning",
"gpt",
"instruction following",
"dpo",
"direct preference optimization",
"curriculum learning"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: LLM Development",
"Programming Language :: Python"
]
[tool.setuptools.dynamic]
version = {attr = "kolibrify.__version__"}
[project.urls]
Homepage = "https://github.com/oKatanaaa/kolibrify"
Repository = "https://github.com/oKatanaaa/kolibrify"
"Bug Tracker" = "https://github.com/oKatanaaa/kolibrify/issues"
[project.scripts]
kolibrify-sft = "kolibrify.sft_run:run"
kolibrify-dpo = "kolibrify.dpo_run:run"
kolibrify-merge = "kolibrify.merge_lora:run"
kolibrify-push = "kolibrify.push_to_hub:run"
kolibrify-predict = "kolibrify.predict:run"
kolibrify-eval-ifeval = "kolibrify.eval.ifeval.evaluate:run"