-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 947 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
[tool.poetry]
name = "linc"
version = "0.1.0"
description = "Paper implementation of LINC"
authors = ["menamerai <[email protected]>", "arnavkomaragiri <[email protected]>", "ckinateder <[email protected]>"]
readme = "README.md"
# package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
transformers = "^4.38.2"
datasets = "^2.14.6"
nltk = "^3.8.1"
matplotlib = "^3.8.3"
torch = "^2.1.0"
accelerate = "^0.28.0"
diskcache = "^5.6.3"
google-generativeai = "^0.4.1"
python-dotenv = "^1.0.1"
cohere = "^4.56"
bitsandbytes = "^0.43.0"
scikit-learn = "^1.4.1.post1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.2"
black = "^24.2.0"
isort = "^5.13.2"
# [tool.poetry.group.gpu-win.dependencies]
# torch = { url = "https://download.pytorch.org/whl/cu121/torch-2.2.1%2Bcu121-cp310-cp310-win_amd64.whl" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"