Datasets:
File size: 715 Bytes
48056e2 9796318 48056e2 9796318 48056e2 9796318 48056e2 |
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 |
[tool.poetry]
name = "dataset-aste-v2"
version = "0.1.0"
description = "Aspect Sentiment Triplet Extraction (ASTE) https://aclanthology.org/2021.acl-long.367/ dataset converted to use character level indices and the original Sem Eval 2014 Task 4 https://alt.qcri.org/semeval2014/task4/ text"
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
datasets = "^2.14.5"
huggingface-hub = "^0.17.3"
levenshtein = "^0.22.0"
pandas = "^2.1.1"
pyarrow = "^13.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
isort = "^5.12.0"
mypy = "^1.5.1"
pandas-stubs = "^2.1.1.230928"
pylint = "^3.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|