slinusc's picture
Update README.md
ffce62a verified
|
raw
history blame
2.19 kB
metadata
license: cc0-1.0
language:
  - en
tags:
  - pubmed
pretty_name: PubMedAbstractSubset

PubMed Abstracts Subset (10%)

This dataset contains a probabilistic sample of all publicly available PubMed metadata from the National Library of Medicine (NLM).


πŸ“„ Description

Each entry in the dataset includes:

  • id: Local unique identifier
  • title: Title of the publication
  • abstract: Abstract text
  • PMID: PubMed identifier

The dataset is split into 24 .jsonl files, each containing approximately 100,000 entries, for a total of ~2.39 million samples.


πŸ” How to Access

▢️ Option 1: Load using Hugging Face datasets (streaming)

from datasets import load_dataset

dataset = load_dataset("slinusc/PubMedAbstractsSubset", streaming=True)

for doc in dataset:
    print(doc["title"], doc["abstract"])
    break

Streaming is recommended for large-scale processing and avoids loading the entire dataset into memory.


πŸ’Ύ Option 2: Clone using Git and Git LFS

git lfs install
git clone https://huggingface.co/datasets/slinusc/PubMedAbstractsSubset
cd PubMedAbstractsSubset

After cloning, run git lfs pull if needed to retrieve the full data files.


πŸ“¦ Format

Each file is in .jsonl (JSON Lines) format, where each line is a valid JSON object:

{
  "id": "pubmed23n1166_0",
  "title": "...",
  "abstract": "...",
  "PMID": 36464820
}

πŸ“š Source and Licensing

This dataset is derived from public domain PubMed metadata (titles and abstracts), redistributed in accordance with NLM data usage policies.


🏷️ Version

  • v1.0 – Initial release (2.39M entries, 24 JSONL files)

πŸ“¬ Contact

Maintained by @slinusc.
For questions or issues, please open a discussion or pull request on the Hugging Face dataset page.