-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
21 lines (18 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
[tool.poetry]
name = "rankgen"
version = "0.1.1"
description = "RankGen is a suite of encoder models (100M-1.2B parameters) which map prefixes and generations from any pretrained English language model to a shared vector space. RankGen can be used to rerank multiple full-length samples from an LM, and it can also be incorporated as a scoring function into beam search to significantly improve generation quality (0.85 vs 0.77 MAUVE, 75% preference according to humans annotators who are English writers)."
authors = ["Kalpesh Krishna, Yapei Chang, John Wieting, Mohit Iyyer"]
license = "Apache License 2.0"
repository = 'https://github.com/martiansideofthemoon/rankgen'
readme = 'README.md'
[tool.poetry.dependencies]
python = "^3.7"
torch = "^1.12.0"
transformers = "^4.20.1"
sentencepiece = "^0.1.96"
gdown = "^4.5.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"