Datasets:
YAML tags:
- copy-paste the tags obtained with the tagging app: https://github.com/huggingface/datasets-tagging
Dataset Card for [Dataset Name]
Table of Contents
- Dataset Card for [Dataset Name]
Dataset Description
- Homepage:
- Repository:
- Paper:
- Leaderboard:
- Point of Contact:
Dataset Summary
This dataset is based on the content of the SourceData (https://sourcedata.embo.org) database, which contains manually annotated figure legends written in English and extracted from scientific papers in the domain of cell and molecular biology (Liechti et al, Nature Methods, 2017, https://doi.org/10.1038/nmeth.4471).
The dataset is pre-tokenized with the roberta-base
tokenizer.
Supported Tasks and Leaderboards
Tags are provided as IOB2-style tags.
PANELIZATION
: figure captions (or figure legends) are usually composed of segments that each refer to one of several 'panels' of the full figure. Panels tend to represent results obtained with a coherent method and depicts data points that can be meaningfully compared to each other. PANELIZATION
provide the start (B-PANEL_START) of these segments and allow to train for recogntion of the boundary between consecutive panel lengends.
NER
: biological and chemical entities are labeled. Specifically the following entities are tagged:
SMALL_MOLECULE
: small moleculesGENEPROD
: gene products (genes and proteins)SUBCELLULAR
: subcellular componentsCELL
: cell types and cell lines.TISSUE
: tissues and organsORGANISM
: speciesEXP_ASSAY
: experimental assays
ROLES
: the role of entities with regard to the causal hypotheses tested in the reported results. The tags are:
CONTROLLED_VAR
: entities that are associated with experimental variables and that subjected to controlled and targeted perturbations.MEASURED_VAR
: entities that are associated with the variables measured and the object of the measurements.
BORING
: entities are marked with the tag BORING
when they are more of descriptive value and not directly associated with causal hypotheses ('boring' is not an ideal choice of word, but it is short...). Typically, these entities are so-called 'reporter' geneproducts, entities used as common baseline across samples, or specify the context of the experiment (cellular system, species, etc...).
Languages
The text in the dataset is English.
Dataset Structure
Data Instances
Data Fields
tokens
: tokens as alist
ofstring
produced byroberta-base
tokenizerinput_ids
: token id inroberta-base
tokenizers' vocabulary provided as alist
ofint
label_ids
:entity_types
:list
ofstrings
for the IOB2 tags for entity type; possible value in["O", "I-SMALL_MOLECULE", "B-SMALL_MOLECULE", "I-GENEPROD", "B-GENEPROD", "I-SUBCELLULAR", "B-SUBCELLULAR", "I-CELL", "B-CELL", "I-TISSUE", "B-TISSUE", "I-ORGANISM", "B-ORGANISM", "I-EXP_ASSAY", "B-EXP_ASSAY"]
geneprod_roles
:list
ofstrings
for the IOB2 tags for experimental roles; values in["O", "I-CONTROLLED_VAR", "B-CONTROLLED_VAR", "I-MEASURED_VAR", "B-MEASURED_VAR"]
boring
:list
ofstrings
for IOB2 tags for entities unrelated to causal design; values in["O", "I-BORING", "B-BORING"]
panel_start
:list
ofstrings
for IOB2 tags["O", "B-PANEL_START"]
Data Splits
- train:
- features: ['input_ids', 'labels', 'tag_mask'],
- num_rows: 31410
- test:
- features: ['input_ids', 'labels', 'tag_mask'],
- num_rows: 4224
- validation:
- features: ['input_ids', 'labels', 'tag_mask'],
- num_rows: 8861
Dataset Creation
Curation Rationale
The dataset was built to train models for the automatic extraction of a knowledge graph based from the scientific literature. The dataset can be used to train models for text segmentation, named entity recognition and semantic role labeling.
Source Data
Initial Data Collection and Normalization
Figure legends were annotated according to the SourceData framework described in Liechti et al 2017 (Nature Methods, 2017, https://doi.org/10.1038/nmeth.4471). The curation tool at https://curation.sourcedata.io was used to segment figure legends into panel legends, tag enities, assign experiemental roles and normalize with standard identifiers (not available in this dataset). The source data was downloaded from the SourceData API (https://api.sourcedata.io) on 21 Jan 2021.
Who are the source language producers?
The examples are extracted from the figure legends from scientific papers in cell and molecular biology.
Annotations
Annotation process
The annotations were produced manually with expert curators from the SourceData project (https://sourcedata.embo.org)
Who are the annotators?
Curators of the SourceData project.
Personal and Sensitive Information
None known.
Considerations for Using the Data
Social Impact of Dataset
Not applicable.
Discussion of Biases
The examples are heavily biased towards cell and molecular biology and are enriched in examples from papers published in EMBO Press journals (https://embopress.org)
Other Known Limitations
[More Information Needed]
Additional Information
Dataset Curators
Thomas Lemberger, EMBO.
Licensing Information
CC BY 4.0
Citation Information
[More Information Needed]
Contributions
Thanks to @tlemberger for adding this dataset.