forked from TUDB-Labs/mLoRA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (35 loc) · 980 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mlora"
version = "0.1"
description = "A tool for fine-tuning large language models (LLMs) using the LoRA or QLoRA methods more efficiently."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"torch==2.0.1",
"einops==0.6.1",
"datasets==2.14.5",
"accelerate==0.24.1",
"transformers==4.36.2",
"bitsandbytes==0.41.1",
"sentencepiece==0.1.99",
"scipy==1.10.1",
"protobuf==3.20.2",
"xformers==0.0.21",
"nltk",
"jieba",
"rouge",
"rouge_chinese"
]
[project.urls]
"Homepage" = "https://github.com/TUDB-Labs/multi-lora-fine-tune"
"Bug Tracker" = "https://github.com/TUDB-Labs/multi-lora-fine-tune/issues"
[tool.setuptools.packages.find]
include = ["mlora"]