Thomas Lemberger commited on
Commit
062c584
1 Parent(s): dd93e10

[WIP] card

Browse files
Files changed (1) hide show
  1. README.md +156 -0
README.md ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ YAML tags:
3
+ - copy-paste the tags obtained with the tagging app: https://github.com/huggingface/datasets-tagging
4
+ ---
5
+
6
+ # Dataset Card for [Dataset Name]
7
+
8
+ ## Table of Contents
9
+ - [Dataset Card for [Dataset Name]](#dataset-card-for-dataset-name)
10
+ - [Table of Contents](#table-of-contents)
11
+ - [Dataset Description](#dataset-description)
12
+ - [Dataset Summary](#dataset-summary)
13
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
14
+ - [Languages](#languages)
15
+ - [Dataset Structure](#dataset-structure)
16
+ - [Data Instances](#data-instances)
17
+ - [Data Fields](#data-fields)
18
+ - [Data Splits](#data-splits)
19
+ - [Dataset Creation](#dataset-creation)
20
+ - [Curation Rationale](#curation-rationale)
21
+ - [Source Data](#source-data)
22
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
23
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
24
+ - [Annotations](#annotations)
25
+ - [Annotation process](#annotation-process)
26
+ - [Who are the annotators?](#who-are-the-annotators)
27
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
28
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
29
+ - [Social Impact of Dataset](#social-impact-of-dataset)
30
+ - [Discussion of Biases](#discussion-of-biases)
31
+ - [Other Known Limitations](#other-known-limitations)
32
+ - [Additional Information](#additional-information)
33
+ - [Dataset Curators](#dataset-curators)
34
+ - [Licensing Information](#licensing-information)
35
+ - [Citation Information](#citation-information)
36
+ - [Contributions](#contributions)
37
+
38
+ ## Dataset Description
39
+
40
+ - **Homepage:**
41
+ - **Repository:**
42
+ - **Paper:**
43
+ - **Leaderboard:**
44
+ - **Point of Contact:**
45
+
46
+ ### Dataset Summary
47
+
48
+ 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 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. The dataset is pre-tokenized with the `roberta-base` tokenizer.
49
+
50
+ ### Supported Tasks and Leaderboards
51
+
52
+ Tags are provided as [IOB2-style tags](https://en.wikipedia.org/wiki/Inside%E2%80%93outside%E2%80%93beginning_(tagging)).
53
+
54
+ `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.
55
+
56
+ `NER`: biological and chemical entities are labeled. Specifically the following entities are tagged:
57
+ - `SMALL_MOLECULE`: small molecules
58
+ - `GENEPROD`: gene products (genes and proteins)
59
+ - `SUBCELLULAR`: subcellular components
60
+ - `CELL`: cell types and cell lines.
61
+ - `TISSUE`: tissues and organs
62
+ - `ORGANISM`: species
63
+ - `EXP_ASSAY`: experimental assays
64
+
65
+ `ROLES`: the role of entities with regard to the causal hypotheses tested in the reported results. The tags are:
66
+ - `CONTROLLED_VAR`: entities that are associated with experimental variables and that subjected to controlled and targeted perturbations.
67
+ - `MEASURED_VAR`: entities that are associated with the variables measured and the object of the measurements.
68
+
69
+ `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...).
70
+
71
+
72
+ ### Languages
73
+
74
+ The text in the dataset is English.
75
+
76
+ ## Dataset Structure
77
+
78
+ ### Data Instances
79
+
80
+ [More Information Needed]
81
+
82
+ ### Data Fields
83
+
84
+ - `tokens`:
85
+ - `input_ids`:
86
+ - `label_ids`:
87
+ - `entity_types`:
88
+ - `geneprod_roles`:
89
+ - `boring`:
90
+ - `panel_start`:
91
+
92
+ ### Data Splits
93
+
94
+ [More Information Needed]
95
+
96
+ ## Dataset Creation
97
+
98
+ ### Curation Rationale
99
+
100
+ [More Information Needed]
101
+
102
+ ### Source Data
103
+
104
+ #### Initial Data Collection and Normalization
105
+
106
+ [More Information Needed]
107
+
108
+ #### Who are the source language producers?
109
+
110
+ [More Information Needed]
111
+
112
+ ### Annotations
113
+
114
+ #### Annotation process
115
+
116
+ [More Information Needed]
117
+
118
+ #### Who are the annotators?
119
+
120
+ [More Information Needed]
121
+
122
+ ### Personal and Sensitive Information
123
+
124
+ [More Information Needed]
125
+
126
+ ## Considerations for Using the Data
127
+
128
+ ### Social Impact of Dataset
129
+
130
+ [More Information Needed]
131
+
132
+ ### Discussion of Biases
133
+
134
+ [More Information Needed]
135
+
136
+ ### Other Known Limitations
137
+
138
+ [More Information Needed]
139
+
140
+ ## Additional Information
141
+
142
+ ### Dataset Curators
143
+
144
+ [More Information Needed]
145
+
146
+ ### Licensing Information
147
+
148
+ [More Information Needed]
149
+
150
+ ### Citation Information
151
+
152
+ [More Information Needed]
153
+
154
+ ### Contributions
155
+
156
+ Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.