Datasets:
Upload folder using huggingface_hub
Browse files- README.md +41 -3
- data/filtered-00000-of-00003.parquet +3 -0
- data/filtered-00001-of-00003.parquet +3 -0
- data/filtered-00002-of-00003.parquet +3 -0
- data/raw-00000-of-00009.parquet +3 -0
- data/raw-00001-of-00009.parquet +3 -0
- data/raw-00002-of-00009.parquet +3 -0
- data/raw-00003-of-00009.parquet +3 -0
- data/raw-00004-of-00009.parquet +3 -0
- data/raw-00005-of-00009.parquet +3 -0
- data/raw-00006-of-00009.parquet +3 -0
- data/raw-00007-of-00009.parquet +3 -0
- data/raw-00008-of-00009.parquet +3 -0
README.md
CHANGED
|
@@ -5,21 +5,59 @@ tags:
|
|
| 5 |
- supramolecular
|
| 6 |
- host-guest
|
| 7 |
- molecular-recognition
|
|
|
|
| 8 |
size_categories:
|
| 9 |
- 100K<n<1M
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# EU-PMC Supramolecular Chemistry Corpus
|
| 13 |
|
| 14 |
-
A
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
## Columns
|
|
|
|
| 17 |
- `id` (string): PubMed ID (PMID), e.g. `35305722`
|
| 18 |
- `title` (string): Article title
|
| 19 |
- `abstract` (string): Article abstract
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
## Source
|
| 22 |
-
|
|
|
|
|
|
|
| 23 |
|
| 24 |
## Citation
|
| 25 |
-
|
|
|
|
|
|
|
|
|
| 5 |
- supramolecular
|
| 6 |
- host-guest
|
| 7 |
- molecular-recognition
|
| 8 |
+
- macrocyclic
|
| 9 |
size_categories:
|
| 10 |
- 100K<n<1M
|
| 11 |
+
configs:
|
| 12 |
+
- config_name: default
|
| 13 |
+
data_files:
|
| 14 |
+
- split: raw
|
| 15 |
+
path: data/raw-*.parquet
|
| 16 |
+
- split: filtered
|
| 17 |
+
path: data/filtered-*.parquet
|
| 18 |
---
|
| 19 |
|
| 20 |
# EU-PMC Supramolecular Chemistry Corpus
|
| 21 |
|
| 22 |
+
A collection of titles and abstracts from Europe PMC for supramolecular chemistry research.
|
| 23 |
+
Two splits are provided:
|
| 24 |
+
|
| 25 |
+
- **raw** (~420K articles): Unfiltered superset matched by 19 keyword-based search topics on Europe PMC
|
| 26 |
+
(supramolecular, host-guest, self-assembly, molecular recognition, cyclodextrin, crown ether,
|
| 27 |
+
calixarene, cucurbituril, pillararene, rotaxane, dendrimer, MOF, non-covalent, molecular cage,
|
| 28 |
+
inclusion complex, supramolecular polymer, metallosupramolecular, macrocyclic chemistry, and
|
| 29 |
+
binding-affinity-host queries). Includes biology/medical contamination from broad MeSH-tag matches.
|
| 30 |
+
|
| 31 |
+
- **filtered** (~134K articles): High-precision subset where the title or abstract literally contains
|
| 32 |
+
one of ~440 supramolecular-specific keywords (e.g., supramolecular, cyclodextrin, [n]rotaxane,
|
| 33 |
+
cucurbit[n]uril, calix[n]arene, pillar[n]arene, MOF, COF, cage, foldamer, etc.). Two-tier negative
|
| 34 |
+
filter rejects clear biology contamination (SARS-CoV-2, T-cell, etc.). Suitable for continued
|
| 35 |
+
pre-training of language models on supramolecular chemistry domain.
|
| 36 |
|
| 37 |
## Columns
|
| 38 |
+
|
| 39 |
- `id` (string): PubMed ID (PMID), e.g. `35305722`
|
| 40 |
- `title` (string): Article title
|
| 41 |
- `abstract` (string): Article abstract
|
| 42 |
|
| 43 |
+
## Usage
|
| 44 |
+
|
| 45 |
+
```python
|
| 46 |
+
from datasets import load_dataset
|
| 47 |
+
|
| 48 |
+
# High-precision filtered set (recommended for continued pre-training)
|
| 49 |
+
ds = load_dataset("SupraBench/EU-PMC", split="filtered")
|
| 50 |
+
|
| 51 |
+
# Full superset
|
| 52 |
+
ds_raw = load_dataset("SupraBench/EU-PMC", split="raw")
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
## Source
|
| 56 |
+
|
| 57 |
+
Articles are sourced from Europe PMC (https://europepmc.org/) under their respective open-access
|
| 58 |
+
licenses. See https://europepmc.org/Copyright for the licensing of individual articles.
|
| 59 |
|
| 60 |
## Citation
|
| 61 |
+
|
| 62 |
+
The Europe PMC Consortium. Europe PMC: a full-text literature database for the life sciences and
|
| 63 |
+
platform for innovation. *Nucleic Acids Research*, 2014.
|
data/filtered-00000-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c15bfa3b9a3ff7f2becfc1e247137dc2eb03a0b9e324cd043065ddc2f72b21b
|
| 3 |
+
size 23978162
|
data/filtered-00001-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5888c293e4d2c2aaa0616166c9cfe4fd695ff750ad374c24f182680eb4b2b991
|
| 3 |
+
size 27496319
|
data/filtered-00002-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a19d30c669aed77b72527941183dd0db4e8dd1917a867e3228734a88797deee9
|
| 3 |
+
size 19990841
|
data/raw-00000-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5466420196c3ce798fcc22a92aa5970423c9b31a3c6e52b60464f989ad2e48df
|
| 3 |
+
size 26197303
|
data/raw-00001-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3dc40c441f97e2efe490717604ceeee90101b5e8b1e11f2df8782ddf22b2f612
|
| 3 |
+
size 26464264
|
data/raw-00002-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2fd31bee3444c19f41558f85a1657a970dcfa5fa5b90b28c12174d24fd04823
|
| 3 |
+
size 27287469
|
data/raw-00003-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2999336dd7fef4e3765d5f30efd3dc5ac2ef0d83ed27c2a17123d1639765ed90
|
| 3 |
+
size 28421705
|
data/raw-00004-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06326b24009a37614018ee2c27b3c32c6fa2cca7a8b58f5f05b0b13dcb21912b
|
| 3 |
+
size 29131213
|
data/raw-00005-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef92d31e0ccab22219d3b3e5be810125b3c398999415eb5c5cc75f4c01b6d342
|
| 3 |
+
size 29689777
|
data/raw-00006-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:957f41303a1189d5384dee2b8744e85c2579f837e3d29f3032229e86c5b0b096
|
| 3 |
+
size 30265402
|
data/raw-00007-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:266bd2821835dfa86e5fde58c98c7f0fec86352760448514d6dedfff6f5d7c3f
|
| 3 |
+
size 31253168
|
data/raw-00008-of-00009.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c28e4fb42e18a6b2d536ba3c033ae222e483c42c31e0f1012844c5b4e9e0294
|
| 3 |
+
size 13238778
|