dmahata commited on
Commit
7e345a5
1 Parent(s): ca86a49

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -20
README.md CHANGED
@@ -1,8 +1,10 @@
1
- ## Dataset Summary
2
-
3
- A dataset for benchmarking keyphrase extraction and generation techniques from abstracts of english scientific papers. For more details about the dataset please refer the original paper - [https://dl.acm.org/doi/pdf/10.3115/1119355.1119383](https://dl.acm.org/doi/pdf/10.3115/1119355.1119383)
4
  Data source - [https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec](https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec)
5
 
 
 
 
 
6
 
7
  ## Dataset Structure
8
 
@@ -20,7 +22,7 @@ Data source - [https://github.com/boudinfl/ake-datasets/tree/master/datasets/Ins
20
 
21
  |Split| #datapoints |
22
  |--|--|
23
- | Train | 1000 |
24
  | Test | 500 |
25
  | Validation | 500 |
26
 
@@ -165,22 +167,6 @@ print("Abstractive/absent Keyphrases: ", test_sample["abstractive_keyphrases"])
165
  print("\n-----------\n")
166
  ```
167
 
168
- ## Model Benchmarking
169
-
170
- Below are the performance of the different supervised models on this corpus as reported by [https://arxiv.org/pdf/2112.08547.pdf](https://arxiv.org/pdf/2112.08547.pdf)
171
-
172
- ### Keyphrase Extraction
173
-
174
- <br>
175
- <p align="center">
176
- <img src="https://huggingface.co/datasets/midas/inspec/resolve/main/inspec_performance.png" alt="Model Benchmarks" width="50%"/>
177
- <br>
178
- </p>
179
- <br>
180
-
181
-
182
- ### Keyphrase Generation
183
-
184
 
185
 
186
  ## Citation Information
 
1
+ A dataset for benchmarking keyphrase extraction and generation techniques from abstracts of English scientific papers. For more details about the dataset please refer the original paper - [https://dl.acm.org/doi/pdf/10.3115/1119355.1119383](https://dl.acm.org/doi/pdf/10.3115/1119355.1119383)
 
 
2
  Data source - [https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec](https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec)
3
 
4
+ ## Dataset Summary
5
+ The Inspec dataset was originally proposed by *Hulth* in the paper titled - [Improved automatic keyword extraction given more linguistic knowledge](https://aclanthology.org/W03-1028.pdf) in the year 2003. The dataset consists of abstracts of 2,000 English scientific papers from the [Inspec database](https://clarivate.com/webofsciencegroup/solutions/webofscience-inspec/). The abstracts are from papers belonging to the scientific domains of *Computers and Control* and *Information Technology* published between 1998 to 2002. Each abstract has two sets of keyphrases annotated by professional indexers - *controlled* and *uncontrolled*. The *controlled* keyphrases are obtained from the Inspec thesaurus and therefore are often not present in the abstract's text. Only 18.1% of the *controlled* keyphrases are actually present in the abstract's text. The *uncontrolled* keyphrases are those selected by the indexers after reading the full-length scientific articles and 76.2% of them are present in the abstract's text. There is no information in the original paper about how these 2,000 scientific papers were selected. It is unknown whether the papers were randomly selected out of all the papers published between 1998-2002 in the *Computers and Control* and *Information Technology* domains or were there only 2,000 papers in this domain that were indexed by Inspec. The train, dev and test splits of the data were arbitrarily chosen.
6
+
7
+ One of the key aspect of this dataset which makes it unique is that it provides keyphrases assigned by professional indexers, which is uncommon in the keyphrase literature. Most of the datasets in this domain have author assigned keyphrases as the ground truth. The dataset shared over here does not explicitly presents the *controlled* and *uncontrolled* keyphrases instead it only categorizes the keyphrases into *extractive* and *abstractive*. **Extractive keyphrases** are those that could be found in the input text and the **abstractive keyphrases** are those that are not present in the input text. In order to get all the meta-data about the documents and keyphrases please refer to the [original source](https://github.com/boudinfl/ake-datasets/tree/master/datasets/Inspec) from which the dataset was taken from. The main motivation behind making this dataset available in the form as presented over here is to make it easy for the researchers to programmatically download it and evaluate their models for the tasks of keyphrase extraction and generation. As keyphrase extraction by treating it as a sequence tagging task and using contextual language models has become popular we have also made the token tags available in the BIO tagging format.
8
 
9
  ## Dataset Structure
10
 
 
22
 
23
  |Split| #datapoints |
24
  |--|--|
25
+ | Train | 1,000 |
26
  | Test | 500 |
27
  | Validation | 500 |
28
 
 
167
  print("\n-----------\n")
168
  ```
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
 
171
 
172
  ## Citation Information