Files
lie_elicitation_prompts/pyproject.toml
T
wassname 42ba58ba0e wip
2024-06-14 09:21:51 +08:00

45 lines
1.2 KiB
TOML

[tool.poetry]
name = "lie_elicitation_prompts"
version = "0.1.0"
description = "A dataset of prompts designed to elicit lies using system prompts and multi shot examples. For a particular huggingface model, you can gent the subset of the dataset that the model can answer correctly, but doesn't."
authors = ["wassname"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
eleuther-elk = "0.1.1"
numpy = "^1.26.1"
pandas = "^2.1.1"
loguru = "^0.7.2"
tqdm = "^4.66.1"
torch = {version = "^2.3+cu121", source = "pytorch"}
peft = "^0.11.1"
transformers = "4.41.0"
bitsandbytes = "^0.43.1"
accelerate = "^0.31.0"
datasets = "^2.19.2"
simple-parsing = "^0.1.5"
ipywidgets = "^8.1.3"
ipykernel = "^6.29.4"
ruff = "^0.1.3"
scikit-learn = "^1.5.0"
jaxtyping = "^0.2.29"
einops = "^0.8.0"
[tool.poetry.group.dev.dependencies]
[[tool.poetry.source]]
# pytorch cuda needs to compe from another source https://python-poetry.org/docs/dependency-specification/#source-dependencies
name = "pytorch"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
create = true
in-project = true