-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
34 lines (31 loc) · 935 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
[tool.poetry]
name = "image-hijacks"
version = "0.1.0"
description = ""
authors = ["Luke Bailey <[email protected]>", "Euan Ong <[email protected]>", "Stuart Russell <[email protected]>", "Scott Emmons <[email protected]>"]
readme = "README.md"
packages = [{include = "image_hijacks"}]
[tool.poetry.dependencies]
python = "^3.9"
llava = {git = "https://github.com/haotian-liu/LLaVA.git"}
lightning = {git = "https://github.com/Lightning-AI/lightning", rev = "2.1.0.rc0"}
pillow = "^10.0.0"
wandb = "^0.15.10"
tqdm = "^4.66.1"
matplotlib = "^3.7.2"
einops = "^0.6.1"
expecttest = "^0.1.6"
prettyprinter = "^0.18.0"
torchopt = "^0.7.2"
black = "^23.7.0"
levenshtein = "^0.21.1"
openai = "^0.28.0"
jaxtyping = "^0.2.21"
torch = "2.0.0"
torchvision = "<0.15.2"
pytest = "^7.4.2"
datasets = "^2.14.5"
tensorboard = "^2.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"