-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.16 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
[tool.poetry]
name = "simple-simcse-ja"
version = "0.1.0"
description = ""
authors = ["hppRC <hpp.ricecake@gmail.com>"]
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.dependencies]
python = "3.10.x"
torch = { url = "https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp310-cp310-linux_x86_64.whl" }
transformers = { extras = ["ja", "sentencepiece"], version = "^4.28.1" }
typed-argument-parser = "^1.8.0"
accelerate = "^0.18.0"
tokenizers = "^0.13.3"
datasets = { extras = ["tensorflow"], version = "^2.12.0" }
tqdm = "^4.65.0"
numpy = "^1.24.3"
pandas = "^2.0.1"
more-itertools = "^9.1.0"
scikit-learn = "^1.2.2"
konoha = "^5.0.0"
mwparserfromhell = "^0.6.4"
python-snappy = "^0.6.1"
mojimoji = "^0.0.12"
peft = "^0.3.0"
pysen = { extras = ["lint"], version = "^0.10.5" }
sentence-transformers = {git = "https://github.com/UKPLab/sentence-transformers.git"}
openai = "^0.28.1"
[tool.pysen]
version = "0.10"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
py_version = "py310"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"