forked from Beomi/BitNet-Transformers
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (33 loc) · 797 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
[tool.poetry]
name = "tritnet-transformers"
version = "0.1.0"
description = ""
authors = ["frodo821 <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
transformers = "^4.38.2"
accelerate = "^0.27.2"
datasets = "^2.17.1"
sentencepiece = "^0.2.0"
protobuf = "^4.25.3"
evaluate = "^0.4.1"
scikit-learn = "^1.4.1.post1"
torch = "^2.2.1"
wandb = "^0.16.3"
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
yapf = "^0.40.2"
flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.yapf]
based_on_style = "google"
column_limit = 120
indent_width = 2
continuation_indent_width = 2
split_before_closing_bracket = true
split_before_first_argument = true
dedent_closing_brackets = true
coalesce_brackets = true