Datasets:
Adding information extraction data from neo4j
Browse files- .gitattributes +20 -0
- README.md +24 -0
- information_extraction/assayed_entities.csv +3 -0
- information_extraction/assayed_entities.json +3 -0
- information_extraction/chemicals.csv +3 -0
- information_extraction/chemicals.json +3 -0
- information_extraction/controlled_entities.csv +3 -0
- information_extraction/controlled_entities.json +3 -0
- information_extraction/diseases.csv +3 -0
- information_extraction/diseases.json +3 -0
- information_extraction/experimental_assay.csv +3 -0
- information_extraction/experimental_assay.json +3 -0
- information_extraction/hypothesis_tested.csv +3 -0
- information_extraction/hypothesis_tested.json +3 -0
- information_extraction/is_experiment.csv +3 -0
- information_extraction/is_experiment.json +3 -0
- information_extraction/ncbi_gene_linking.csv +3 -0
- information_extraction/ncbi_gene_linking.json +3 -0
- information_extraction/where_was_tested.csv +3 -0
- information_extraction/where_was_tested.json +3 -0
.gitattributes
CHANGED
@@ -141,3 +141,23 @@ token_classification/roles_small_mol/train.jsonl filter=lfs diff=lfs merge=lfs -
|
|
141 |
token_classification/roles_small_mol/validation.jsonl filter=lfs diff=lfs merge=lfs -text
|
142 |
image_segmentation/train/labels.cache filter=lfs diff=lfs merge=lfs -text
|
143 |
image_segmentation/clip_panel_image_captions/ filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
token_classification/roles_small_mol/validation.jsonl filter=lfs diff=lfs merge=lfs -text
|
142 |
image_segmentation/train/labels.cache filter=lfs diff=lfs merge=lfs -text
|
143 |
image_segmentation/clip_panel_image_captions/ filter=lfs diff=lfs merge=lfs -text
|
144 |
+
. filter=lfs diff=lfs merge=lfs -text
|
145 |
+
information_extraction/ filter=lfs diff=lfs merge=lfs -text
|
146 |
+
information_extraction/experimental_assay.json filter=lfs diff=lfs merge=lfs -text
|
147 |
+
information_extraction/hypothesis_tested.json filter=lfs diff=lfs merge=lfs -text
|
148 |
+
information_extraction/is_experiment.json filter=lfs diff=lfs merge=lfs -text
|
149 |
+
information_extraction/ncbi_gene_linking.csv filter=lfs diff=lfs merge=lfs -text
|
150 |
+
information_extraction/where_was_tested.csv filter=lfs diff=lfs merge=lfs -text
|
151 |
+
information_extraction/where_was_tested.json filter=lfs diff=lfs merge=lfs -text
|
152 |
+
information_extraction/controlled_entities.json filter=lfs diff=lfs merge=lfs -text
|
153 |
+
information_extraction/diseases.json filter=lfs diff=lfs merge=lfs -text
|
154 |
+
information_extraction/chemicals.csv filter=lfs diff=lfs merge=lfs -text
|
155 |
+
information_extraction/is_experiment.csv filter=lfs diff=lfs merge=lfs -text
|
156 |
+
information_extraction/diseases.csv filter=lfs diff=lfs merge=lfs -text
|
157 |
+
information_extraction/experimental_assay.csv filter=lfs diff=lfs merge=lfs -text
|
158 |
+
information_extraction/assayed_entities.csv filter=lfs diff=lfs merge=lfs -text
|
159 |
+
information_extraction/controlled_entities.csv filter=lfs diff=lfs merge=lfs -text
|
160 |
+
information_extraction/hypothesis_tested.csv filter=lfs diff=lfs merge=lfs -text
|
161 |
+
information_extraction/ncbi_gene_linking.json filter=lfs diff=lfs merge=lfs -text
|
162 |
+
information_extraction/assayed_entities.json filter=lfs diff=lfs merge=lfs -text
|
163 |
+
information_extraction/chemicals.json filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -172,6 +172,30 @@ The text in the dataset is English.
|
|
172 |
})
|
173 |
```
|
174 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
## Dataset Creation
|
176 |
|
177 |
### Curation Rationale
|
|
|
172 |
})
|
173 |
```
|
174 |
|
175 |
+
### Information Extraction
|
176 |
+
|
177 |
+
This folder contains `caption` `answer` pairse intended to be used for information extraction. Each of the files contains answers to given questions about the captions.
|
178 |
+
Each file is provided in `csv` and `json` format for convinience for different cases.
|
179 |
+
The list of files and questions they answer are shown below:
|
180 |
+
|
181 |
+
* `assayed_entities`: What is the assayed/measured entity?
|
182 |
+
|
183 |
+
* `chemicals`: Are there any chemical compounds or small molecules mentioned?
|
184 |
+
|
185 |
+
* `diseases`: Is there any disease term mentioned, or can be infered, in the figure legend?
|
186 |
+
|
187 |
+
* `experimental_assay`: What kind of experimental assay was used for this experiment?
|
188 |
+
|
189 |
+
* `hypothesis_tested`: Can you formulate the hypothesis that this experiment has tested.
|
190 |
+
|
191 |
+
* `is_experiment`: Does the legend describe an experiment or not?
|
192 |
+
|
193 |
+
* `ncbi_gene_linking`: Can you link the identified genes to their NCBI gene identifiers?
|
194 |
+
|
195 |
+
* `where_was_tested`: In what kind of cell/tissue/organism/subcellular component was the experiment performed?
|
196 |
+
|
197 |
+
We refer the interested reader to the [cypher queries](https://github.com/source-data/soda-data/blob/master/src/soda_data/sdneo/info_extraction_queries.py) used to generate this data for further information.
|
198 |
+
|
199 |
## Dataset Creation
|
200 |
|
201 |
### Curation Rationale
|
information_extraction/assayed_entities.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:467c1527dd8c9e81d38af5998dd7a9901f5b9b5492f2bb0936cf4678c68ac867
|
3 |
+
size 24151715
|
information_extraction/assayed_entities.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ff44baebda0620dc93695fea3f57bf38cfb714a954db133b5d50d476f88a63c0
|
3 |
+
size 26060444
|
information_extraction/chemicals.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6ed74da08bd0d24c9774689e13601353a4ae23ec71b89d6f812358ec2d3ea11
|
3 |
+
size 13170975
|
information_extraction/chemicals.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:734bcb8e16386f7f00462c79db8f0b85e4c070d837c71aa1e06ccb3e72b654ec
|
3 |
+
size 14247814
|
information_extraction/controlled_entities.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c11db3b159d40662674f9c9e38253eec04116c0ddf4c4a8197c2701b4bdba098
|
3 |
+
size 19378411
|
information_extraction/controlled_entities.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d72815932fb96031f66526b042da397faa1b118513f764e4fa270f9c53340b62
|
3 |
+
size 20885680
|
information_extraction/diseases.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:041230d5f10a439338212d9d082d4c1aef7e6517270c60b8cff947c1c55a1dbf
|
3 |
+
size 1608318
|
information_extraction/diseases.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0804a3001b56709e60ed979150f80bcd04ef69413521f9387b0d0508bde3fbc
|
3 |
+
size 1744745
|
information_extraction/experimental_assay.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8acf6507b2cde49f5c5d8ddeedb727ae6a2f61876e08c0a38188359aa15267f3
|
3 |
+
size 23098602
|
information_extraction/experimental_assay.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ed49fcc7e5d364406711071c29918dcc6ba5316d383e2981ca9633a1af2c70d4
|
3 |
+
size 24906564
|
information_extraction/hypothesis_tested.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:908ba978a2fdec0f5b7754b6fbdcfb73608324e4f2b30cd426f06fe6b6adc48e
|
3 |
+
size 19158853
|
information_extraction/hypothesis_tested.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f09b4302edc858c1698b44794b41c63edd62c151b3dcedd40cd460fe07b64429
|
3 |
+
size 20591703
|
information_extraction/is_experiment.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7df5fb80a83953193b2106c999091e9e876cb956c6428ebdafc5106713676189
|
3 |
+
size 27867907
|
information_extraction/is_experiment.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e866bb90f1f56b32a3ae706ba212751a321643e9a3fec6765d8ca0a04347ba75
|
3 |
+
size 31185074
|
information_extraction/ncbi_gene_linking.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ce76524d01b6a36365abe45729f315d1fd96524b5380eb903eb2e032a341874
|
3 |
+
size 16616842
|
information_extraction/ncbi_gene_linking.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f08e84eae4935749f5a5b3191dc2fedd21e99a45f574eafae007893b645a2dc2
|
3 |
+
size 18004635
|
information_extraction/where_was_tested.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f6a6ac5a5e76cba4f4a0d0c2848e65243b81c9b9f5c6fe73567f7064dc7ea1f9
|
3 |
+
size 58760
|
information_extraction/where_was_tested.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:523257469b4f337b5e6d641999f7c11c0414f61922c76681308c3a0ff19608d3
|
3 |
+
size 61848
|