-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
41 lines (39 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alignscore"
version = "0.1.3"
authors = [
{ name = "Yuheng Zha", email = "[email protected]" },
{ name = "Yichi Yang", email = "[email protected]" },
{ name = "Ruichen Li", email = "[email protected]" },
{ name = "Zhiting Hu", email = "[email protected]" },
]
description = "An automatic factual consistency evaluation metric based on a unifined alignment function"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"spacy>=3.4.0,<4",
"nltk>=3.7,<4",
"torch>=1.12.1,<2",
"transformers>=4.20.1,<5",
"tqdm>=4.64.0,<5",
"jsonlines>=2.0.0,<3",
"numpy>=1.23.1,<2",
"datasets>=2.3.2,<3",
"scikit-learn>=1.1.2,<2",
"pytorch_lightning>=1.7.7,<2",
"scipy>=1.8.1,<2",
"tensorboard>=2.12.0,<3",
"protobuf<=3.20"
]
[project.urls]
"Homepage" = "https://github.com/yuh-zha/AlignScore"
"Bug Tracker" = "https://github.com/yuh-zha/AlignScore/issues"