-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
51 lines (47 loc) · 1.07 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
[tool.poetry]
name = "lora-instruct"
version = "0.1.0"
description = ""
authors = ["Han Lee <[email protected]>"]
license = "LICENSE"
readme = "README.md"
packages = [{include = "lora_instruct"}]
[tool.poetry.dependencies]
python = "^3.10"
sentencepiece = "^0.1.99"
accelerate = "^0.25.0"
loralib = "^0.1.1"
bitsandbytes = "^0.41.3"
datasets = "^2.15.0"
fire = "^0.5.0"
peft = "^0.7.0"
transformers = "^4.35.2"
einops = "^0.7.0"
python-dotenv = "^1.0.0"
wandb = "^0.16.1"
vllm = "^0.2.3"
openai = "^1.3.8"
tiktoken = "^0.5.2"
num2words = "^0.5.13"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.22.0"
ipywidgets = "^8.0.6"
pytest = "^7.3.1"
ruff = "^0.0.292"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"