The recognition of dataset names is a critical task for automatic information extraction in scientific literature, enabling researchers to understand and identify research opportunities. However, existing corpora for dataset mention detection are limited in size and naming diversity. In this paper, we introduce the Dataset Mentions Detection Dataset (DMDD), the largest publicly available corpus for this task. DMDD consists of the DMDD main corpus, comprising 31,219 scientific articles with over 449,000 dataset mentions weakly annotated in the format of in-text spans, and an evaluation set, which comprises 450 scientific articles manually annotated for evaluation purposes. We use DMDD to establish baseline performance for dataset mention detection and linking. By analyzing the performance of various models on DMDD, we are able to identify open problems in dataset mention detection. We invite the community to use our dataset as a challenge to develop novel dataset mention detection models.

As the volume of scientific literature continues to grow, the automatic extraction of scientific entities from publications becomes increasingly valuable for knowledge management and scientific discovery. In particular, accurate and efficient detection of dataset mentions in the literature can greatly improve the accessibility and usability of scientific data.

Dataset mention detection (DMD) presents distinct challenges compared to other Named Entity Recognition (NER) tasks, because the vocabulary used in scientific literature is complex and diverse across different subjects. Domain expertise is often needed to recognize datasets mentioned in the literature. Furthermore, the mention of dataset entities can be potentially ambiguous as the same names may be used to refer to method or task entities. For example, ‘SGD’ is used to represent the stochastic gradient descent method and the Schema-Guided Dialogue dataset. Lastly, it is crucial for dataset mentions to include linking annotation, which allows linking Dataset mention to its definition website, such as on GitHub. However, datasets have very diverse ways of being mentioned in the literature, which creates additional challenges for linking. All of these unique issues pose non-trivial challenges both to the annotation generation process and to mention recognition models.

There are a number of manually compiled corpora that aim to aid the study of dataset name detection in scientific literature (Duck et al., 2013; Augenstein et al., 2017; Gábor et al., 2018; Luan et al., 2018; Hou et al., 2019; Zhao et al., 2019; Yao et al., 2019; Heddes et al., 2021; Färber et al., 2021). These corpora have certain limitations. For instance, many of them have only a few hundred instances, which limits their usefulness for training and evaluating dataset mention detection models. Additionally, some of these corpora lack diversity in dataset naming conventions, as they may include mostly capitalized dataset names, whereas many dataset names are not capitalized. Furthermore, these corpora lack entity linking information. Those limitations limit their usefulness for developing dataset mention detection algorithms, despite being suitable for testing such algorithms.

Manual labeling can be prohibitively expensive for NER in general, and for dataset mention detection in particular, because it requires domain expertise. Consequently, there is a need to develop labeled dataset mention data with less human effort to facilitate the training of robust detection models. One potential alternative to manual labeling is to utilize web pages such as GitHub and the Papers with Code (PwC) website,1 which provide metadata about scientific papers. However, these metadata are not always sufficient for building robust dataset mention detection models for two reasons. First, they are often created based on optional manual inputs, which may be prone to human errors and may not be available for new papers or arXiv papers. Second, the metadata is only available at the document level, whereas in-text level mention annotations are required for mention detection models.

In this paper, our objective is to enable the creation of robust dataset detection models by creating a large corpus, called Dataset Mentions Detection Dataset (DMDD). To construct the main corpus of DMDD, we employ distant supervision (Mintz et al., 2009) to develop in-paper annotation by taking the dataset mentions from the PwC website and matching them with those in papers. We also add entity linking annotations to each dataset mention. Although the labels obtained by distant supervision may not be as precise as human-generated labels, their vast quantity and diversity of mentions provide an advantage in (pre)training competitive models (Abdul-Mageed and Ungar, 2017; Su et al., 2019). DMDD comprises 31,219 scientific articles with over 449,000 dataset mentions automatically annotated in the format of in-text span. Additionally, it includes an evaluation set of 450 scientific papers where we carefully annotated the occurrence of each dataset mention. The DMDD corpus can be accessed at the following URL: https://www.kaggle.com/datasets/panhuitong/dmdd-corpus. Overall, our paper makes the following contributions:

  • We create a large and diverse annotated corpus, the Dataset Mentions Detection Dataset (DMDD), consisting of over 31,000 documents with automatic in-text dataset mention and entity linking annotations.

  • We conduct a comprehensive analysis of existing corpora for dataset mention detection.

  • We establish baseline performance for dataset mention detection and entity linking on DMDD, identify related challenges, and demonstrate the effectiveness of DMDD for training robust models.

2.1 Related Corpora

There have been several attempts to create evaluation data for the task of information extraction from scientific papers (Färber et al., 2021; Augenstein et al., 2017; Gábor et al., 2018). The following are the publicly accessible corpora containing annotations for dataset mentions: SciERC (Luan et al., 2018), SciREX (Jain et al., 2020), TDMSci (Hou et al., 2021), bioNerDS (Duck et al., 2013), RCC,2 and Heddes (Heddes et al., 2021). These related corpora cover papers from diverse domains, including AI (ML/NLP), biomedical, and social science. A few datasets, including bioNerDS and Heddes, were specifically designed for dataset mention detection, whereas others were not. For instance, SciERC and SciREX were also developed for salient entity identification and relation identification tasks, while RCC was initially designed for entity linking.

All of these related corpora are created with manual annotations. In terms of the data generation process, some prior works (Heddes et al., 2021; Hou et al., 2019) began by sampling instances (e.g., sentences and abstracts) with a high likelihood of containing scientific entity mentions, while others employed trained models (Jain et al., 2020) or rule-based systems (Duck et al., 2013) to generate initial noisy annotations before proceeding with manual annotation. As we show below, DMDD is the first large-scale dataset, and hence more suitable for training SOTA deep learning models.

2.2 Dataset Mentions Detection Models

There already are approaches for dataset mention detection. For example, Yao et al. (2019) proposed utilizing a Long Short Term Memory (LSTM) model and conditional random field (CRF) for this task. Other researchers have examined using a mixture of neural network architectures and pre-trained word embeddings for dataset mention detection. For instance, Kim et al. (2019) suggested using Bidirectional LSTM (BiLSTM) with ELMo vectors (Peters et al., 2018) and GloVe (Pennington et al., 2014). Additionally, Zhao et al. (2019) proposed a model that is based on one of the popular choice of NLP models, BERT. Furthermore, Hou et al. (2019) used a transformer-based method in their TDMS-IE System.

In addition to the previously mentioned models, there have been several studies on multi-task learning for dataset mention detection. In this approach, the model is trained to jointly perform dataset mention detection and other relevant tasks such as entity linking and relation extraction. For instance, Jain et al. (2020) proposed a multi-task model based on BERT that performs scientific mention identification, salient mention detection, pairwise coreference, and salient entity clustering, achieving state-of-the-art performance on the SciREX dataset.

In this section, we provide a detailed description of the development of DMDD’s main corpus and DMDD’s evaluation set. We also present a comprehensive comparison between DMDD and related corpora.

For the purposes of this study, we define dataset mentions as in-text spans that exclusively comprise the necessary texts (i.e., the name of the dataset) for finding the datasets in knowledge bases. As such, we exclude pronominal references to dataset entities, such as ‘the dataset’ and ‘the images’. Additionally, it is important to note that the dataset entity in DMDD is distinct from the material entity in other related works, such as SciREX (Jain et al., 2020), as the dataset entity is only one of the components of the experimental materials that is annotated as the material entity.

3.1 DMDD’s Main Corpus

We present the construction of our primary corpus in this subsection. An illustrative example of a DMDD data entry, which includes the parsed scientific article and the in-text annotation for dataset mentions, is displayed in Figure 1.

Figure 1: 

Example of paper-level annotation (left) and dictionary entries (right) in DMDD. We mark each occurrence of dataset (D) in papers with in-text spans and entity indexs. We can generate the BIO tags. For example, the dataset mention ‘ImageNet’ spans from 12182 to 12190 and has a BIO tag as ‘B-D’.

Figure 1: 

Example of paper-level annotation (left) and dictionary entries (right) in DMDD. We mark each occurrence of dataset (D) in papers with in-text spans and entity indexs. We can generate the BIO tags. For example, the dataset mention ‘ImageNet’ spans from 12182 to 12190 and has a BIO tag as ‘B-D’.

Close modal

3.1.1 Data Collection

We built DMDD’s main corpus by combining data from S2ORC (Lo et al., 2020) and Papers with Code (PwC). The parsed scientific articles are obtained from S2ORC (Lo et al., 2020), which is a dataset based on the Semantic Scholar website. S2ORC is a unified resource that combines aspects of citation graphs (i.e., rich paper metadata, abstracts) with a full-text corpus that preserves important scientific paper structure (i.e., sections, inline citation, references to tables and figures). For in-text level annotation of dataset mentions, we used distant supervision to derive the annotations from existing data sources with document-level annotation. We sourced the document-level annotation from Papers with Code (PwC), which is a free and open-source website with machine-learning papers, code, datasets, methods, and evaluation tables. For each available paper listed in PwC’s data files, we obtained the publication details, PDF web links, and links to related GitHub code. Most of these publication details are edited by the authors of those papers. However, the information about datasets mentioned in the papers is not organized for download. To obtain such information, we conduct web scraping of the ‘Dataset Section’ of each paper’s webpage in PwC, which contains human annotations on the document-level about the datasets mentioned in the paper.

3.1.2 Annotation Procedure

We describe our distant supervision procedure to create the in-text mention annotation for dataset mentions in this subsection. The document-level annotations are based on the data provided by PwC’s users. Our premise is that we can take the names supplied by authors in PwC and match them in the main text of a paper. For the most part, this is a correct assumption. However, users do not often give complete information about the artifacts used in their papers. For example, they may only give a partial spelling of an entity name (e.g., ‘CIFAR’ instead of ‘CIFAR10’) or use a different spelling (e.g., ‘CIFAR-10’ in PwC and ‘CIFAR10’ in the paper). Thus, we cannot proceed with a strict matching procedure of dataset names collected from PwC in the text of the papers.

We commence by creating a dictionary that defines all dataset entities in DMDD. For each dataset entity, we store the following information: name, full name, and web page link in PwC. Next, we create regular expressions (regex) for each dataset entity. The regular expression creation process is described in detail in Section 3.1.3. We use regex as an approximate matching procedure to label the parsed text of a paper. Data engineers refer to such data labeling rules as labeling functions (Ratner et al., 2016). Two example DMDD dictionary entries containing its regex can be found in Figure 1.

Using the document-level annotation on dataset mentions and the regex, we annotated 31,219 scientific articles. For each article, we have the concatenated full-text, section span, document-level dataset annotations, in-text dataset mention span, and the entity index for each mention. Example data can be visualized in Figure 1. In addition, we also store section information for each document, which includes the section names and their corresponding starting and ending indices in the concatenated full text. The reason we include section span is that we believe ‘section’ may provide additional semantic information and can impact the detection accuracy. For example, a detection algorithm should be more sensitive to candidates in experiment sections where authors typically describe their datasets.

3.1.3 Regular Expression Rules

The regex objective is to incorporate as much variety in dataset mentions as possible. However, we do not seek to have an optimal regular expression. First, such a rule is difficult to create manually, and second, we seek to generate enough (weak labeled) data to enable training NER recognizer. Instead of constructing regex for each dataset individually, we use a set of rules to construct regex for all dataset entities, using their short name and full name listed in PwC as base names.

For the 6,675 dataset entities listed in the PwC dataset definition file, there are 8,708 listed name variants. Using an exact match with the base names, we match 7,989 variants. These matched variants are just the short names and full names of the entities. To enhance the exact match, we used a set of rules to customize the regular expression for each base name. The number of additional variants matched with the added rule compared to the exact match is shown as #Matched.

1) We allow optional space and ‘-’ between words. For example, dataset entity ‘CIFAR-10’ may be mentioned as ‘CIFAR 10’ and ‘CIFAR10’ in papers. To allow such variation, we customize the regex as ‘CIFAR-*∖s*10’. (#Matched = 77).

2) We create acronyms for names including multiple words by combining the initials of the words. For example, we create an acronym ‘WTQ’ for entity ‘WikiTableQuestions’. (#Matched = 14).

3) We ignore casing for units appearing in names. In particular, if ‘3D’/‘3k’/‘3m’ in names, we allow matching ‘3d’/‘3K’/‘3M’. For example, dataset entity ‘DBP15K’ may be mentioned as ‘DBP15k’ in papers. To allow such variation, we customize the regex as ‘DBP15[Kk]’. (#Matched = 4).

4) We allow optional decimal places for versions and numbers. For example, the dataset entity ‘OntoNotes 4.0’ may be mentioned as ‘OntoNotes 4’. To allow such variation, we customize the regex as ‘OntoNotes 4∖.*[0-9]*’. (#Matched = 5).

5) We ignore case for words that have a length greater than 4 and the lowercase of the name is not a common English word. For example, we ignore cases when matching for dataset entity ‘SciREX’, so that it matches ‘SCIREX’ and ‘scirex’ that may appear in text. We enforce case matching for dataset entity ‘SHAPES’. (#Matched = 286).

6) We allow optional suffixes including ‘ing’ and ‘ion’. For example, the dataset entity ‘Deep Soccer Captioning’ may be mentioned as ‘Deep Soccer Caption’. To allow such variation, we customize the regex as ‘Deep Soccer Captioni*n*g*’. (#Matched = 0).

7) We allow optional plural forms including ‘es’ and ‘s’. For example, the dataset entity ‘MovieLens’ may be mentioned as ‘MovieLen’ in papers. To allow such variation, we customize the regex as ‘MovieLens*’. (#Matched = 0).

While PwC’s listed variants do not include the patterns from rules 6 and 7, we observe many such variations in DMDD’s papers caused by typos and loose writing.

Using all the rules outlined above, we identify names with the corresponding patterns and customized the regex accordingly. This final set of customized regex allows us to cover most of the listed variants, leaving us with only 74 unmatched variants. To address these unmatched variants, we use them as the base names and created additional regex for their corresponding entities.

3.1.4 Data Preprocessing

With the help of the spaCy python library, we convert the original annotation in the span format to BIO format. After the first stage of preprocessing, we discover that we miss some of the annotations for dataset mentions in some sequences. This is because, on PwC websites, the authors or the editors often only annotate the datasets being used in experiments while missing the ones being mentioned. The missing mentions can introduce bias in training as the models may be negatively impacted by learning about the false negative. Thus, in the second stage of preprocessing, in order to reduce the number of missing annotations, we combine all regex to search for all possible mentions of the dataset entities in DMDD’s dictionary, which was obtained from the PwC website. We exclusively apply the second stage of preprocessing to sentences that contain detected dataset mentions from the first stage. This limits the addition of mentions to contexts where the occurrence of dataset mentions is highly likely; this helps mitigate false positives arising from ambiguous entities, such as ‘SGD’. While ‘SGD’ often appears as a method name in sentences without dataset mentions, it can also appear as a dataset name in co-occurrence with other dataset mentions.

To ensure a consistent comparison between our proposed corpus and existing corpora, we adopted a consistent data preprocessing strategy across all related corpora used in our experiments. In the case of NLP-TDMS and RCC, we used the original text of each paper and their corresponding dataset mention list to develop similar regex patterns to extract dataset mentions in BIO-format. For bioNerDS, the dataset mention span annotations were already provided in BIO-format, so no additional processing was necessary. For SciERC, SciREX, and Heddes, the sequences were already provided in BIO-format annotation.

3.2 Evaluation Set with Human Annotations

We manually annotated two sets of instances for evaluation purposes, one set is from DMDD and the other is from SciREX. As SciREX provides publicly available manually annotated documents with scientific entities, we only needed to refine their annotations to meet DMDD’s standards. All evaluation sets were manually annotated by three NLP researchers using the brat rapid annotation tool (Stenetorp et al., 2012). We aggregated the annotations by keeping the mentions where at least two annotators agreed.

For the DMDD evaluation set (DMDD-E), annotators were tasked with manually annotating 450 papers that were sampled from DMDD’s test set. The annotators were instructed to verify the detected mentions from DMDD’s main corpus and identify any missing mentions in each paper. Additionally, they were required to verify the entity linked to each mention. To ensure accuracy, annotators were directed to search the PwC website and Google to confirm dataset entities during the annotation process.

To assess the level of agreement between annotators, we used the relaxed span matches method, which considers a match when the dataset mention spans from the three annotators overlap. The resulting Fleiss kappa of 0.79 represents a substantial agreement between annotators. DMDD’s evaluation set contains 13,039 mentions for 682 DMDD entities, with 1,964 mentions that could not be linked to the DMDD dictionary. On average, each annotator required approximately 15 minutes to annotate a pre-annotated paper with weak labels.

When compared to DMDD’s evaluation set, the weak labels from DMDD’s main set obtains an F1 score of 77.9%, recall of 68.1%, and precision of 91.2%. The low recall indicates that most of the weak labeling errors are due to missing dataset mentions. We identify two main reasons for the missing mentions. First, mentions may contain rarely-used version names that distant supervision provides only partial annotation for, such as ‘KITTI 2012’, where only ‘KITTI’ is tagged and the version part of the name, i.e., ‘2012’, is ignored. Second, missing mentions may occur in contexts without mentions of the document-level annotated dataset, such as in related work sections where only one dataset is mentioned, or in sentences where the dataset is mentioned by itself as a pre-trained dataset in the description of methods.

3.3 Comparison with Related Corpora

We compare DMDD with seven related corpora containing dataset mentions annotations in Table 1, where ‘Inst.’ is used to represent ‘instance’ and ‘#’ is used to represent ‘number’. In order to compare corpora fairly, we exclude the negative instances from the calculation of ‘# Instances’, as some corpora do not contain negative instances.

Table 1: 

Summary of corpora for dataset mention detection. The numbers in the parentheses for SciERC relate to the corrected version of SciERC without annotation errors.

CorpusInst. Unit# Inst.# Mentions# Unique# UniqueEntity
MentionsEntitiesLinking
DMDD (ours) paper 31,219 449,798 10,807 6,675 explicit 
SciERC (Luan et al., 2018abstract 164 (69) 770 (122) 644 (116) – – 
SciREX (Jain et al., 2020paper 407 10,548 2,857 – – 
NLP-TDMS (Hou et al., 2019paper 153 1,164 67 99 explicit 
TDMSci (Hou et al., 2021sentence 445 612 478 – – 
bioNerDS (Duck et al., 2013paper 60 920 145 – – 
RCC paper 2,256 36,597 1,345 1,028 explicit 
Heddes (Heddes et al., 2021sentence 2,664 3,416 2,319 – – 
CorpusInst. Unit# Inst.# Mentions# Unique# UniqueEntity
MentionsEntitiesLinking
DMDD (ours) paper 31,219 449,798 10,807 6,675 explicit 
SciERC (Luan et al., 2018abstract 164 (69) 770 (122) 644 (116) – – 
SciREX (Jain et al., 2020paper 407 10,548 2,857 – – 
NLP-TDMS (Hou et al., 2019paper 153 1,164 67 99 explicit 
TDMSci (Hou et al., 2021sentence 445 612 478 – – 
bioNerDS (Duck et al., 2013paper 60 920 145 – – 
RCC paper 2,256 36,597 1,345 1,028 explicit 
Heddes (Heddes et al., 2021sentence 2,664 3,416 2,319 – – 

3.3.1 Corpora Size

DMDD has the largest size among the discussed corpora, in terms of the number of instances (# Inst. = 31K), instance unit (Inst. Unit = Paper), and the number of mentions (# Mentions = 450K). With paper-level annotations, DMDD allows for a larger input unit, such as a section, which can provide richer context and potentially benefit mention detection models.

SciERC samples instances from abstracts. Sampling instances from a specific section of papers may create corpora with limited variation in lexical and syntactic expressions (for example, the language of abstract sections is different from that of methodology sections). A benefit of DMDD over most of the other existing corpora is that an entity mention appears in multiple sentences across the 31K papers, offering diverse context learning opportunities in training. This is captured by the number of unique mentions and the number of mentions in Table 1. While the related corpora give better-labeled data (because they’re manually created), their data annotation processes are not scalable since they heavily depend on manual labeling.

3.3.2 Diversity of Dataset Mentions

Intuitively, dataset names (e.g., ‘CIFAR10’) that consist of a single word, that include capitalized letters, and do not have non-literals are easy to detect. However, many dataset names do not follow this pattern. They may contain non-literals (e.g., ‘YUP++’), may not be capitalized (e.g., ‘iris’), or may contain multiple words (e.g., ‘Atomic Visual Actions’). Such diversity of dataset naming poses detection difficulties. A (training) corpus needs to avoid being biased toward any of such categories and contain enough samples from each category. We perform an in-depth analysis of all annotated dataset mentions in related corpora to examine the diversity of mentions.

For each corpus, we perform the following evaluation steps and summarize the evaluation results in Table 2. First, we extract all in-text mentions of the dataset names, using the provided annotations. We derive the unique mentions from all the in-text mentions. Notably, unique mentions do not equal unique datasets as one dataset may be referred to as different text strings (e.g., ‘MHP’ may be referred to as ‘Multiple-Human Parsing’). Second, we find mentions with different characteristics, which are defined as follows.

Table 2: 

Distribution of different types of dataset mentions in DMDD and existing corpora. # and % indicate the number and percentage of the corpus’s unique mentions exhibiting certain characteristics. SciERCC represents the corrected version of SciERC without annotation errors.

CorpusLongAlpha. &All
MentionPunct.Lower
#%#%#%
DMDD 3,044 28 7,903 73 1072 10 
SciERC 552 86 612 95 353 55 
SciERCC 10 50 72 
SciREX 2,122 74 2,102 73 307 11 
NLP-TDMS 48 48 60 61 
TDMSci 335 70 317 66 10 
bioNerDS 34 31 104 95 
RCC 2,869 91 2,469 78 71 
Heddes 2,161 83 1,774 68 81 
CorpusLongAlpha. &All
MentionPunct.Lower
#%#%#%
DMDD 3,044 28 7,903 73 1072 10 
SciERC 552 86 612 95 353 55 
SciERCC 10 50 72 
SciREX 2,122 74 2,102 73 307 11 
NLP-TDMS 48 48 60 61 
TDMSci 335 70 317 66 10 
bioNerDS 34 31 104 95 
RCC 2,869 91 2,469 78 71 
Heddes 2,161 83 1,774 68 81 

1) Long mentions. If the mention contains white spaces, then it is a long mention containing multiple words. This is important as long mentions are often harder to be detected accurately than single-word mentions.

2) Character level composition. Alphabet and Punctuation Only (Alpha. & Punct.): Check if the mention contains only alphabet and punctuation. We want to see the number of mentions containing no numerical characters. From a reader standpoint, it is often easier to classify entities with a combination of alphabets and numerical values (e.g., ‘MediaEval2010’) as dataset names than those without (e.g., ‘English-Hungarian’).

3) Capitalization. All Lower-cased (All Lower): We seek to account for dataset names with all the characters being lowered-cased in a dataset mention. As commonly agreed, words including upper case letters often indicate that they are specialized words and are more likely to be dataset mentions than those without upper case letters.

As shown in Table 2, with the exception of DMDD, NLP-TDMS, and bioNerDS, the available corpora demonstrate an imbalanced distribution that skews towards long mentions. SciERC and bioNerDS, in particular, exhibit a prevalence of mentions that consist solely of letters and punctuation, with only a small fraction containing numeric characters. Additionally, with the exception of SciERC, all corpora are inclined towards mentions that feature uppercase letters. Hence, individually none of them have enough unique mentions from each category to enable training of robust models across all categories. We also note that the characteristics presented in Table 2 are non-exhaustive, non-exclusive, and may overlap.

3.3.3 Entity Linking

Entity Linking (EL) for datasets is the task of associating a dataset mention in text with a dataset entity in a knowledge base, such as Papers with Code. The entity linking information for dataset mention is important as it enables users to refer to the right dataset or download the correct dataset for empirical studies. We distinguish two categories of linking: explicit linking and non-linking. We categorize the type of linking for existing corpora in Table 1. We note that in Table 1, the “–” symbol represents non-linking.

DMDD is created based on PwC and each entity mentioned in DMDD’s main corpus has an explicit link to the PwC website with a unique identifier. RCC and NLP-TDMS also have explicit linking since they provide URL links to the knowledge bases with dataset information. Specifically, all the datasets from RCC can be linked to ICPSR3 and all the datasets in NLP-TDMS can be linked to NLP-Progress.4 However, all the other corpora do not provide such explicit linking information.

For the related corpora without explicit linking information, we attempted to link their annotated mentions to PwC and the other websites, like the ACL Anthology, but we were unsuccessful in linking a significant portion of the annotated mention. In addition, our early empirical studies with these corpora showed an unexpectedly low recall rate on detecting dataset mentions, which prompted us to manually verify some of the data. We asked two Ph.D. students with NLP expertise to manually go over the annotated data in SciERC. It was not our goal to verify all data sources, which would have taken substantial labor. Table 3 shows some example dataset mention annotations for related corpora. We identify four potential reasons contributing to the failure of linking. We exemplify them using mentions from SciERC.

Table 3: 

Dataset mention annotation examples from DMDD and existing corpora.

CorpusExamples
DMDD ‘MNIST’, ‘General Language 
Understanding Evaluation 
benchmark’ 
SciERC ‘image data’, ‘written texts’, 
SciREX ‘SQuAD) ’, 
‘augmented PASCAL train set’ 
NLP-TDMS ‘SemEval-2010 Task 8’, 
‘Quora Question Pairs’ 
TDMSci ‘forums’, ‘a separate set 
of 40 ACE 2005 newswire texts’ 
bioNerDS ‘String’, ‘Gene Ontology’ 
RCC ‘balance sheet data’, 
‘External Position Report’ 
Heddes ‘MNIST or the ImageNet dataset’, 
‘text datasets’ 
CorpusExamples
DMDD ‘MNIST’, ‘General Language 
Understanding Evaluation 
benchmark’ 
SciERC ‘image data’, ‘written texts’, 
SciREX ‘SQuAD) ’, 
‘augmented PASCAL train set’ 
NLP-TDMS ‘SemEval-2010 Task 8’, 
‘Quora Question Pairs’ 
TDMSci ‘forums’, ‘a separate set 
of 40 ACE 2005 newswire texts’ 
bioNerDS ‘String’, ‘Gene Ontology’ 
RCC ‘balance sheet data’, 
‘External Position Report’ 
Heddes ‘MNIST or the ImageNet dataset’, 
‘text datasets’ 

1) Mentions include extra characters or text strings [9 (1%)]. For example, the mention ‘aligned wordnets’ includes the descriptive text ‘aligned’ for the datasets. Additionally, in the original document, this mention actually refers to multiple wordnets that are being aligned by the proposed method. In Table 3, ‘SQuAD)’ includes the extra character ‘)’ which may be the result of human error.

2) Mentions include more than one dataset [8 (1%)]. For example, ‘SemCor and Senseval-3 datasets’.

3) Mentions do not include the actual dataset name [559 (87%)], for example, ‘records’ and ‘CD-covers’. This is because some related corpora are annotated with pronominal reference to entities, as defined in ACE 2005 (2005). Pronominal reference is not helpful in linking mentions to dataset entities, especially when the corpora are not annotated on the paper level and the proper name reference is missing from the annotated instance. Within this characteristic group, there are also confusing mentions not using the most commonly used dataset names or missing part of the names [5 (1%)]. For example, ‘treebank’ can denote many possible datasets, such as The Penn Treebank (Marcus et al., 1993) and CHILDES Treebank (Pearl and Sprouse, 2013). This further points toward the need to include linking attributes in the annotation whenever possible.

Among all of the unique mentions in SciERC, only 69 (11%) do not exhibit the three discussed characteristics. As shown in Table 1, when only considering the correct mentions, the number of mentions and instances with mentions are significantly reduced. Also, as shown in Table 2 for SciERCC, the percentage of long mentions and all-lower-case mentions drops significantly, yielding a more biased set of dataset mentions.

All existing corpora, except NLP-TDMS, share similar characteristics to SciERC. NLP-TDMS follows the NLP-Progress taxonomy website to annotate their entities, which means all the dataset names they used for labeling their instances are actual dataset names.

In contrast to the existing corpora, DMDD has the following advantages. DMDD is the largest corpus with more than 31K instances. DMDD has the largest number of mentions and the largest number of unique mentions, providing more mention examples than existing corpora. In terms of the diversity of dataset mentions, DMDD exhibits some biases on having a small percentage of all-lower cased mentions. However, since DMDD contains a significantly larger amount of mentions and unique mentions than existing corpora, DMDD can still provide enough examples with different characteristics. In terms of entity linking, all DMDD’s annotated mentions can be directly linked to Papers with Code web pages.

The experiments are designed to address the task of dataset entity mentions and entity linking, with three primary objectives in mind: establishing baseline performance on our dataset, providing insights into the difficulty of each task, and evaluating the effectiveness of using DMDD for training.

4.1 Mention Detection

We formulate the task of dataset mention detection as a token-level tagging task, and evaluate a broad range of models as baselines in our experiments. To explore the impact of input size, we evaluate models with different input lengths. Since most existing approaches for dataset mention detection operate at the sentence-level, we split the models into two categories: sentence-level models and beyond sentence-level models.

4.1.1 Sentence-Level

We conducted experiments on sentence-level inputs using various models, including Conditional Random Fields (CRF), Bidirectional Long Short-Term Memory (BiLSTM), BERT (Devlin et al., 2018), and SciBERT (Beltagy et al., 2019). For the CRF model, we used features that incorporate Part-of-Speech (POS) tags and keywords (Heddes et al., 2021).

For BERT and SciBERT, we used the pretrained weights: base-cased BERT (Devlin et al., 2018) and scivocab-cased SciBERT (Beltagy et al., 2019). Then, we fine-tuned them on our training corpora. All hyperparameters used for training the models were the same as in the original SciBERT (Beltagy et al., 2019), except for the batch size, which was set to 16.

For BiLSTM, we evaluated two additional variations: BiLSTM-G and BiLSTM-W, which utilize pre-trained embeddings initialized with GLoVe (Pennington et al., 2014) and Word2Vec (Mikolov et al., 2013), respectively. We loaded both pre-trained embeddings using the Gensim Python library and initialized tokens that were not mapped with pre-trained embeddings to zeros. The embedding layer was updated during training for all tokens. To ensure a fair comparison, we used a 300-dimensional embedding layer for BiLSTM, BiLSTM-G, and BiLSTM-W.

For BiLSTM-G, we used the embedding trained on Wikipedia and Gigaword, converting 30,428 tokens in the entire corpus, while 120,190 tokens were missing from the pre-trained embeddings. We observed that most dataset names were missing from the pre-trained embeddings.

Similarly, for BiLSTM-W, we used the embedding trained on Google News, converting 63,321 tokens while 87,297 were missing. We hypothesize that by incorporating additional learned semantic information from large corpora, these two versions of BiLSTM can outperform the regular BiLSTM in predicting dataset name mentions.

4.1.2 Beyond Sentence-Level

To evaluate model input sizes beyond sentence-level, we examined two models optimized for longer sequence length: SciBERT and LongFormer (Beltagy et al., 2020). Additionally, we evaluated two different input sizes, section-level and 512-tokens-level. For the section-level inputs, we cropped the documents based on their sections, whereas for 512-tokens-level inputs, we cropped the documents to sequences with a fixed length of 512 tokens. Notably, some of these sequences contain dataset mentions while others do not.

4.2 Entity Linking

Entity linking (EL) for dataset entities, as a special subproblem of EL, differs from the typical general EL task, which links general entities into a huge knowledge base (KB) like Wikipedia. In our work, we utilize PwC as the KB, which contains 7,795 entities. To evaluate the EL task on our dataset, we conduct baseline experiments for EL using two methods. Specifically, we consider the EL given true spans, then we take the span of the dataset mention as the query, and PwC as the KB. We then utilize an information retrieval approach to retrieve the top K most relevant dataset entities in the KB. We conduct experiments in both sparse retrieval and dense retrieval using Pyserini (Lin et al., 2021). In Pyserini, sparse retrieval is based on BM25 and uses bag of word representations, while dense retrieval employs transformer-encoded representations, with the encoder being ColBERTv2 (Santhanam et al., 2021). All parameters use the default settings of Pyserini.

4.3 Train-Test Split

For DMDD and all the corpora used in our experiments, we first perform a train-test split at the document level. Subsequently, we perform a train-test split at other levels, such as section-level and sentence-level, based on the document-level split. For DMDD, we used 70% of the documents for training and 30% for testing.

The DMDD-E set, which is a manually annotated test set of 450 documents, was sampled from the DMDD’s test set. We report results on this set in our paper. The DMDD-E set contains a zero-shot subset consisting of 10 dataset entities. These zero-shot entities were randomly selected from DMDD, and none of them appear in any corpus’s training set.

When training mention detection models, we use a split of 80% positive sequences and 20% negative sequences in most of the experiments, unless otherwise specified. The goal of negative sentences is to balance the fact that we only consider one type of NER and to facilitate better generalization for deep learning models. In particular, we seek to avoid false positive predictions, since the majority of sentences in scientific papers contain no dataset mentions. Table 4 summarizes the median sequence length in tokens and the number of sequences containing dataset mentions in DMDD.

Table 4: 

The median sequence length in tokens and the number of sequences containing dataset mentions in DMDD.

MedianN. AllN. TrainN. Test
Length
Sentence 30 792,554 532,349 260,205 
Section 372 245,506 167,954 77,552 
512-Token 512 150,207 101,969 48,238 
Document 5,729 31,210 21,847 9,363 
MedianN. AllN. TrainN. Test
Length
Sentence 30 792,554 532,349 260,205 
Section 372 245,506 167,954 77,552 
512-Token 512 150,207 101,969 48,238 
Document 5,729 31,210 21,847 9,363 

This section describes the experimental setup and results of the conducted experiments.

5.1 Mention Detection

All mention detection models discussed in Section 4.1 have been trained in 3 rounds with randomly shuffled training sets of DMDD. The average and standard deviation of scores are calculated based on the exact match.

5.1.1 Sentence-Level Performance

We evaluate the performance of the mention detection models with sentence-level inputs on three sets: the full set of DMDD-E, the positive subset of DMDD-E, and the zero-shot subset. DMDD-E’s full set comprises 80% positive and 20% negative sequences, with positive sequences including all occurrences in the documents and negative sequences randomly drawn from the documents. Including the negative sequences allowed us to assess the models’ ability to accurately classify both positive and negative sentences, which is crucial for real-world applications where the presence of a dataset mention may be rare. Model performance scores, including F1 score, precision, and recall, were computed based on exact match and are shown in Table 5. It is important to note that the relative importance of precision and recall may vary depending on the specific use case and application. For example, precision may be more important in scenarios where false positives can have significant consequences, as it may reduce the reliability of the tool and potentially lead to erroneous analysis or decision-making. On the other hand, in scenarios where missing a dataset mention may lead to missed opportunities for data analysis, recall may be more important.

Table 5: 

The performance of mention detection models with sentence-level input.

Positive and NegativePositiveZero-Shot
# Sentences10,7228,60289
ModelF1PrecisionRecallF1PrecisionRecallF1PrecisionRecall
CRF .681 ± .000 .550 ± .000 .893 ± .000 .682 ± .000 .550 ± .000 .898 ± .000 .342 ± .000 .215 ± .000 .842 ± .000 
BiLSTM .647 ± .013 .546 ± .020 .795 ± .009 .650 ± .014 .546 ± .020 .802 ± .006 .256 ± .020 .168 ± .012 .550 ± .096 
BiLSTM-G .652 ± .012 .548 ± .017 .804 ± .004 .653 ± .012 .548 ± .017 .810 ± .004 .268 ± .041 .181 ± .036 .522 ± .061 
BiLSTM-W .594 ± .019 .498 ± .019 .739 ± .017 .596 ± .017 .498 ± .019 .746 ± .003 .258 ± .037 .175 ± .024 .511 ± .041 
BERT .751 ± .006 .635 ± .009 .920 ± .002 .753 ± .006 .635 ± .009 .926 ± .002 .572 ± .012 .417 ± .012 .907 ± .004 
SciBERT .751 ± .002 .639 ± .002 .912 ± .002 .754 ± .002 .639 ± .002 .919 ± .002 .586 ± .008 .436 ± .011 .898 ± .010 
Positive and NegativePositiveZero-Shot
# Sentences10,7228,60289
ModelF1PrecisionRecallF1PrecisionRecallF1PrecisionRecall
CRF .681 ± .000 .550 ± .000 .893 ± .000 .682 ± .000 .550 ± .000 .898 ± .000 .342 ± .000 .215 ± .000 .842 ± .000 
BiLSTM .647 ± .013 .546 ± .020 .795 ± .009 .650 ± .014 .546 ± .020 .802 ± .006 .256 ± .020 .168 ± .012 .550 ± .096 
BiLSTM-G .652 ± .012 .548 ± .017 .804 ± .004 .653 ± .012 .548 ± .017 .810 ± .004 .268 ± .041 .181 ± .036 .522 ± .061 
BiLSTM-W .594 ± .019 .498 ± .019 .739 ± .017 .596 ± .017 .498 ± .019 .746 ± .003 .258 ± .037 .175 ± .024 .511 ± .041 
BERT .751 ± .006 .635 ± .009 .920 ± .002 .753 ± .006 .635 ± .009 .926 ± .002 .572 ± .012 .417 ± .012 .907 ± .004 
SciBERT .751 ± .002 .639 ± .002 .912 ± .002 .754 ± .002 .639 ± .002 .919 ± .002 .586 ± .008 .436 ± .011 .898 ± .010 

Overall, SciBERT and BERT performances are close. They have the top performance across all the evaluation metrics in all evaluation sets.

One interesting finding is that the CRF model outperforms the BiLSTM models in our experiments. This can be attributed to the CRF implementation (Heddes et al., 2021), which incorporates expert-designed features that leverage part-of-speech tags and capitalization patterns; they are particularly informative in detecting dataset mentions in scientific literature. In contrast, BiLSTM models rely entirely on learned features, which may not be as effective in capturing the unique nuances of dataset entities. For BiLSTM, the model variation using Word2Vec embedding (BiLSTM-W) and the model variation using GloVe embedding (GloVe) perform similarly to the original version of BiLSTM and bring no significant performance improvement.

5.1.2 Beyond Sentence-Level Performance

For models beyond sentence-level, we crop each evaluated document into overlapped sequences. Specifically, we used a 5% overlap between adjacent sequences. Then, we mapped the predicted results for each sequence back to document-level for evaluation purposes. We used argmax when computing the predicted results for the overlapping tokens. Table 6 presents the performance of mention detection models with sentence-level, section-level input, and 512-token-level input on DMDD-E. The table showcases the F1 score, precision, and recall metrics, which are computed based on exact match.

Table 6: 

The performance of mention detection models with different input sizes when evaluating on full documents.

ModelF1PrecisionRecall
Sentence-Level Input 
SciBERT .016 ± .003 .302 ± .059 .008 ± .002 
 
Section-Level Input 
Longformer .731 ± .004 .625 ± .005 .881 ± .002 
SciBERT .732 ± .003 .619 ± .003 .897 ± .000 
 
512-Token-Level Input 
Longformer .695 ± .004 .661 ± .006 .733 ± .005 
SciBERT .698 ± .002 .652 ± .006 .750 ± .009 
ModelF1PrecisionRecall
Sentence-Level Input 
SciBERT .016 ± .003 .302 ± .059 .008 ± .002 
 
Section-Level Input 
Longformer .731 ± .004 .625 ± .005 .881 ± .002 
SciBERT .732 ± .003 .619 ± .003 .897 ± .000 
 
512-Token-Level Input 
Longformer .695 ± .004 .661 ± .006 .733 ± .005 
SciBERT .698 ± .002 .652 ± .006 .750 ± .009 

The evaluation of the sentence-level model on entire documents in Table 6 shows significantly lower performance than the evaluation on mostly positive sentences containing mentions in Table 5. This highlights the challenges of sentence-level models in dealing with the highly sparse dataset mentions in scientific literature.

When considering input sizes beyond the sentence-level, we observed that SciBERT performed comparably to LongFormer. Furthermore, models trained with section-level input have superior performance compared to those trained with 512-token-level input. This may be attributed to the higher density of dataset mentions in section-level input, as sections are generally shorter than 512 tokens. This finding is also supported by the data presented in Table 4. The improved performance of section-level models may also suggest that splitting based on sections provides additional semantics that is advantageous for training when compared to splitting based on 512-token lengths, which ignores the semantic structure of the documents.

5.1.3 Error Analysis

Based on the performance of sentence-level inputs, we conduct an error analysis on the SciBERT model and aim to identify common patterns among the erroneous instances. As shown in Table 5, we observe that consistently the models have low precision and high recall, indicating a high number of false positives. After analyzing the false positives, we find that the model frequently misclassified mentions such as ‘SGD’ that have ambiguous meanings.

In addition, we identify three common patterns: long sequence length, multiple mentions, and unseen entities. The category of unseen entities includes not only the 10 zero-shot entities but also entities that are labeled by human annotators but cannot be linked to the DMDD dictionary. None of the unseen entities has any annotated mention in the training dataset.

Table 7 presents the F1, precision (P), and recall (R) of the SciBERT model on subsets of DMDD-E, grouped by the common patterns identified earlier. Performance scores are computed based on the exact match. SciBERT performed worse than average on all common patterns, with the poorest performance in the unseen category. This is consistent with the zero-shot performance presented in Table 5.

Table 7: 

SciBERT model performance on subsets of DMDD-E with instances in different categories. N represents the number of tested sequences in the related category.

CategoryNF1PR
Long Sequences 1,808 0.66 0.54 0.85 
Multiple mentions 4,326 0.69 0.55 0.91 
Unseen entities 1,650 0.54 0.39 0.84 
CategoryNF1PR
Long Sequences 1,808 0.66 0.54 0.85 
Multiple mentions 4,326 0.69 0.55 0.91 
Unseen entities 1,650 0.54 0.39 0.84 

5.1.4 Fine-Tuning with Strong Labels

To evaluate the efficacy of DMDD for training purposes, we conduct a comparative analysis of SciBERT models that are trained solely with weak labels from DMDD and those trained solely with human labels from SciREX. We also examine the minimum number of human labels required to fine-tune a model for achieving a similar level of performance. We split the DMDD-E and SciREX into training sets (DMDD-E-Tr and SciREX-Tr) and testing subsets (DMDD-E-Te and SciREX-Te), where all sequences containing zero-shot entities are allocated to the testing set. We do not train or test with negative sequences, which contain no dataset mention. This is done to investigate the effect of fine-tuning using human labels while isolating the influence from negative samples.

We developed three types of SciBERT models, as follows: (1) M_D, which is trained using DMDD; (2) M_S, which is trained using SciREX-Tr, which has 4900 manual annotated sequences; and (3) M_F, which is fine-tuned on top of M_D using N sequences that are randomly sampled from DMDD-E-Tr. We conduct experiments with different N values, including 10, 100, 200, 500, 1000, and 2000.

All models are then evaluated on DMDD-E-Te. Figure 2 depicts the performance of the models and the F1 trend when varying the number of human annotations. The performance patterns from the overall testing set and the zero-shot subset are similar. As anticipated, the model (M_D) trained with only weak labels underperforms the model (M_S) trained with human-annotated labels. We observed that for M_F, fine-tuning with 100 strong labels enables a better performance than M_S, which is trained solely with strong labels. In other words, fine-tuning the pre-trained model from DMDD with approximately 5 human-annotated documents yields a performance similar to the model trained with around 245 human-annotated documents. Furthermore, fine-tuning with 1,000 human-annotated sequences leads to a further improvement in performance, achieving 0.9 F1 scores on DMDD-E-Te.

Figure 2: 

Trend of F1 when varying the number of human annotations.

Figure 2: 

Trend of F1 when varying the number of human annotations.

Close modal

5.1.5 Train Size vs. Performance

As part of our ablation study, we investigate the training benefits resulting from the large size of DMDD. To this end, we trained SciBERT on sentence level using different sizes of DMDD, while maintaining an 80%-20% ratio between positive sequences and negative sequences. We then evaluate the trained models using DMDD-E and calculate their performance scores based on exact match. The results are presented in Figure 3.

Figure 3: 

Test performance of SciBERT when training on DMDD as the train size increases.

Figure 3: 

Test performance of SciBERT when training on DMDD as the train size increases.

Close modal

Our analysis reveals that the most significant improvement in model performance occurs when increasing the training size from 1000 to 10000. The recall score continues to improve as the training size increases, while the F1 score and precision remain stable beyond a training size of 10000. This suggests that the model is predicting more false positives when the training size increases. To better leverage the large size and the diverse mentions in DMDD and enhance the model’s performance, it can be beneficial to balance the training datasets before training. For instance, sampling more samples with the common features of the challenging cases discussed in Section 5.1.3 can be a fruitful strategy.

5.2 Entity Linking

Table 8 presents the experimental results for the Entity Linking (EL) task on our dataset, employing both sparse retrieval (BM25) and dense retrieval (ColBERTv2) methods. Despite not being fine-tuned, ColBERTv2 outperforms BM25, particularly in terms of R@10. However, there remains significant potential for model improvement in EL for dataset entities. For BM25, most of the errors occur due to the mentioned abbreviations that never appear in the KB. For instance, researchers may use ‘H3.6M’ to represent the ‘Human3.6m’ dataset, but this abbreviation never appears in any entity’s description text in the KB. For ColBERTv2, many errors occur when the sentences with dataset mention are not descriptive of the dataset, making it difficult for the model to disambiguate based on context. An example is the sentence ‘We test our method on H3.6M’.

Table 8: 

Entity linking performance evaluated by recall with top K entity (R@K).

EL methodR@1R@3R@5R@10R@50
BM25 0.340 0.531 0.541 0.541 0.720 
ColBERTv2 0.354 0.550 0.578 0.632 0.726 
EL methodR@1R@3R@5R@10R@50
BM25 0.340 0.531 0.541 0.541 0.720 
ColBERTv2 0.354 0.550 0.578 0.632 0.726 

The DMDD corpus is annotated through distant supervision, which prioritizes scale over accuracy. The current scope of DMDD is limited to dataset mentions that can be linked to the DMDD dictionary, resulting in missing labels for dataset mentions that are not listed on PwC websites or that have variations not included in the regular expression. This limitation may introduce annotation noise, especially when dealing with dataset subversions that are not explicitly listed in PwC. Furthermore, DMDD does not include annotations for ambiguous cases, where distinct datasets have the same name or share acronyms, nor does it consider changes in naming conventions over time. Similar limitations apply to other corpora created using distant supervision, as annotation accuracy heavily relies on manual correction. To address these limitations, future work can focus on developing more advanced methods for mention detection and exploring alternative approaches to distant supervision. Additionally, DMDD can be extended to include annotations for more challenging test instances, such as unseen mentions, ambiguous mentions, and mentions with diverse sub-versions. We also plan to periodically release revised versions that have larger sizes and additional (manual) annotations for scientific entities such as model and method names.

In terms of model performance, the baseline models showed limitations when presented with unseen entities, lengthy inputs, and multiple entities. These challenges highlight the difficulties of dataset mention detection and linking in scientific literature. To develop a more robust mention detection method, future research may also explore end-to-end framework for dataset entity mention detection and linking, advanced detection networks that are robust to noise in training data, or how to leverage the context out of the mention sentence to boost the performance of EL. In addition to these approaches, future work may also explore the use of footnotes and citations in literature to improve dataset entity recognition.

In conclusion, DMDD is a valuable resource for studying dataset mention detection in scientific literature. As the largest corpus created for this purpose, it addresses the limitations of existing corpora in terms of size, diversity of dataset mentions, and entity linking information. Our experiments with baseline models show that DMDD enables the training of more robust models with a small number of manual labels, as demonstrated by the improved performance of SciBERT trained on DMDD compared to other corpora. The analysis of DMDD instances and experimental results highlight the challenges and open problems in the task of dataset mention detection. We believe that DMDD will stimulate further research in this important area of scientific information extraction.

This work was supported by the National Science Foundation awards III-2107213 and III-2107518. We thank the TACL action editor and the anonymous reviewers for their valuable comments. We also thank undergraduate students Eric Reizas at Temple University and Kathan Parikh at UIC for their valuable contributions to our project.

ACE
.
2005
.
The ACE 2005 (ACE 05) evaluation plan evaluation of the detection and recognition of ace entities, values, temporal expressions, relations, and events 1
.
Muhammad
Abdul-Mageed
and
Lyle
Ungar
.
2017
.
EmoNet: Fine-grained emotion detection with gated recurrent neural networks
. In
ACL
, pages
718
728
,
Vancouver, Canada
.
Isabelle
Augenstein
,
Mrinal
Das
,
Sebastian
Riedel
,
Lakshmi
Vikraman
, and
Andrew
McCallum
.
2017
.
SemEval 2017 task 10: ScienceIE - extracting keyphrases and relations from scientific publications
. In
SemEval
, pages
546
555
.
Iz
Beltagy
,
Kyle
Lo
, and
Arman
Cohan
.
2019
.
Scibert: A pretrained language model for scientific text
. In
EMNLP
.
Association for Computational Linguistics
.
Iz
Beltagy
,
Matthew E.
Peters
, and
Arman
Cohan
.
2020
.
Longformer: The long-document transformer
.
arXiv preprint arXiv:2004.05150
.
Jacob
Devlin
,
Ming-Wei
Chang
,
Kenton
Lee
, and
Kristina
Toutanova
.
2018
.
BERT: Pre-training of deep bidirectional transformers for language understanding
.
CoRR
,
abs/1810.04805
.
Geraint
Duck
,
Goran
Nenadic
,
Andy
Brass
,
David L.
Robertson
, and
Robert
Stevens
.
2013
.
bioNerDS: Exploring bioinformatics’ database and software use through literature mining
.
BMC Bioinformatics
,
14
(
1
). ,
[PubMed]
Michael
Färber
,
Alexander
Albers
, and
Felix
Schüber
.
2021
.
Identifying used methods and datasets in scientific publications.
In
SDU@ AAAI
.
Kata
Gábor
,
Davide
Buscaldi
,
Anne-Kathrin
Schumann
,
Behrang
QasemiZadeh
,
Haïfa
Zargayouna
, and
Thierry
Charnois
.
2018
.
SemEval-2018 task 7: Semantic relation extraction and classification in scientific papers
. In
Proceedings of The 12th International Workshop on Semantic Evaluation
, pages
679
688
,
New Orleans, Louisiana
.
Association for Computational Linguistics
.
Jenny
Heddes
,
Pim
Meerdink
,
Miguel
Pieters
, and
Maarten
Marx
.
2021
.
The automatic detection of dataset names in scientific articles
.
Data
,
6
(
8
).
Yufang
Hou
,
Charles
Jochim
,
Martin
Gleize
,
Francesca
Bonin
, and
Debasis
Ganguly
.
2019
.
Identification of tasks, datasets, evaluation metrics, and numeric scores for scientific leaderboards construction
. In
ACL
, pages
5203
5213
,
Florence, Italy
.
Association for Computational Linguistics
.
Yufang
Hou
,
Charles
Jochim
,
Martin
Gleize
,
Francesca
Bonin
, and
Debasis
Ganguly
.
2021
.
TDMSci: A specialized corpus for scientific literature entity tagging of tasks datasets and metrics
. In
ACL
, pages
707
714
,
Online
.
Association for Computational Linguistics
.
Sarthak
Jain
,
Madeleine
van Zuylen
,
Hannaneh
Hajishirzi
, and
Iz
Beltagy
.
2020
.
SciREX: A challenge dataset for document-level information extraction
. In
ACL
, pages
7506
7516
,
Online
.
Association for Computational Linguistics
.
Hyungrok
Kim
,
Kinam
Park
, and
Sae
Park
.
2019
.
Rich context competition: Extracting research context and dataset usage information from scientific publications
. In
ACL
, pages
5203
5213
,
Florence, Italy
.
Association for Computing Machinery
.
Jimmy
Lin
,
Xueguang
Ma
,
Sheng-Chieh
Lin
,
Jheng-Hong
Yang
,
Ronak
Pradeep
, and
Rodrigo
Nogueira
.
2021
.
Pyserini: A Python toolkit for reproducible information retrieval research with sparse and dense representations
. In
Proceedings of the 44th International ACM SIGIR Conference on Research and Development in Information Retrieval
, pages
2356
2362
.
Kyle
Lo
,
Lucy Lu
Wang
,
Mark
Neumann
,
Rodney
Kinney
, and
Daniel
Weld
.
2020
.
S2ORC: The semantic scholar open research corpus
. In
ACL
, pages
4969
4983
,
Online
.
Association for Computational Linguistics
.
Yi
Luan
,
Luheng
He
,
Mari
Ostendorf
, and
Hannaneh
Hajishirzi
.
2018
.
Multi-task identification of entities, relations, and coreference for scientific knowledge graph construction
. In
EMNLP
.
Mitchell P.
Marcus
,
Mary Ann
Marcinkiewicz
, and
Beatrice
Santorini
.
1993
.
Building a large annotated corpus of english: The Penn treebank
.
Computational Linguistics
,
19
(
2
):
313
330
.
Tomas
Mikolov
,
Kai
Chen
,
Greg S.
Corrado
, and
Jeffrey
Dean
.
2013
.
Efficient estimation of word representations in vector space
.
Mike
Mintz
,
Steven
Bills
,
Rion
Snow
, and
Daniel
Jurafsky
.
2009
.
Distant supervision for relation extraction without labeled data
. In
Proceedings of the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing of the AFNLP
, pages
1003
1011
,
Suntec, Singapore
.
Association for Computational Linguistics
.
Lisa S.
Pearl
and
Jon
Sprouse
.
2013
.
Syntactic islands and learning biases: Combining experimental syntax and computational modeling to investigate the language acquisition problem
.
Language Acquisition
,
20
:
23
68
.
Jeffrey
Pennington
,
Richard
Socher
, and
Christopher
Manning
.
2014
.
GloVe: Global vectors for word representation
. In
EMNLP
, pages
1532
1543
,
Doha, Qatar
.
Association for Computational Linguistics
.
Matthew E.
Peters
,
Mark
Neumann
,
Mohit
Iyyer
,
Matt
Gardner
,
Christopher
Clark
,
Kenton
Lee
, and
Luke
Zettlemoyer
.
2018
.
Deep contextualized word representations
. In
ACL
, pages
2227
2237
,
New Orleans, Louisiana
.
Association for Computational Linguistics
.
Alexander J.
Ratner
,
Christopher M.
De Sa
,
Sen
Wu
,
Daniel
Selsam
, and
Christopher
.
2016
.
Data programming: Creating large training sets, quickly
. In
Advances in Neural Information Processing Systems
,
volume 29
.
Curran Associates, Inc.
Keshav
Santhanam
,
Omar
Khattab
,
Jon
Saad-Falcon
,
Christopher
Potts
, and
Matei
Zaharia
.
2021
.
Colbertv2: Effective and efficient retrieval via lightweight late interaction
.
arXiv preprint arXiv:2112.01488
.
Pontus
Stenetorp
,
Sampo
Pyysalo
,
Goran
Topić
,
Tomoko
Ohta
,
Sophia
Ananiadou
, and
Jun’ichi
Tsujii
.
2012
.
brat: A web-based tool for NLP-assisted text annotation
. In
Proceedings of the Demonstrations Session at EACL 2012
,
Avignon, France
.
Association for Computational Linguistics
.
Peng
Su
,
Gang
Li
,
Cathy
Wu
, and
K.
Vijay- Shanker
.
2019
.
Using distant supervision to augment manually annotated data for relation extraction
.
PLOS ONE
,
14
(
7
):
e0216913
. ,
[PubMed]
Rujing
Yao
,
Linlin
Hou
,
Yingchun
Ye
,
Ou
Wu
,
Ji
Zhang
, and
Jian
Wu
.
2019
.
Method and dataset mining in scientific papers
.
arXiv e-prints
,
arXiv:1911.13096
.
He
Zhao
,
Zhunchen
Luo
,
Chong
Feng
,
Anqing
Zheng
, and
Xiaopeng
Liu
.
2019
.
A context-based framework for modeling the role and function of on-line resource citations in scientific literature
. In
EMNLP
, pages
5206
5215
,
Hong Kong, China
.
Association for Computational Linguistics
.

Author notes

Action Editor: Roberto Navigli

This is an open-access article distributed under the terms of the Creative Commons Attribution 4.0 International License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. For a full description of the license, please visit https://creativecommons.org/licenses/by/4.0/legalcode.