Update inspec.py
Browse files
inspec.py
CHANGED
@@ -3,16 +3,23 @@ import datasets
|
|
3 |
|
4 |
# _SPLIT = ['train', 'test', 'valid']
|
5 |
_CITATION = """\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"""
|
7 |
|
8 |
_DESCRIPTION = """\
|
9 |
-
|
10 |
"""
|
11 |
|
12 |
-
_HOMEPAGE = ""
|
13 |
|
14 |
-
#
|
15 |
-
_LICENSE = ""
|
16 |
|
17 |
# TODO: Add link to the official dataset URLs here
|
18 |
|
|
|
3 |
|
4 |
# _SPLIT = ['train', 'test', 'valid']
|
5 |
_CITATION = """\
|
6 |
+
@inproceedings{hulth2003improved,
|
7 |
+
title={Improved automatic keyword extraction given more linguistic knowledge},
|
8 |
+
author={Hulth, Anette},
|
9 |
+
booktitle={Proceedings of the 2003 conference on Empirical methods in natural language processing},
|
10 |
+
pages={216--223},
|
11 |
+
year={2003}
|
12 |
+
}
|
13 |
"""
|
14 |
|
15 |
_DESCRIPTION = """\
|
16 |
+
Benchmark dataset for automatic identification of keyphrases from text published with the work - Improved automatic keyword extraction given more linguistic knowledge. Anette Hulth. In Proceedings of EMNLP 2003. p. 216-223.
|
17 |
"""
|
18 |
|
19 |
+
_HOMEPAGE = "https://aclanthology.org/W03-1028.pdf"
|
20 |
|
21 |
+
# The license information was obtained from https://github.com/boudinfl/ake-datasets as the dataset shared over here is taken from here
|
22 |
+
_LICENSE = "Apache 2.0 License"
|
23 |
|
24 |
# TODO: Add link to the official dataset URLs here
|
25 |
|