Add dataset card, paper link, and task metadata

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - biomedical
9
+ - causal-relation-extraction
10
+ - nlp
11
+ ---
12
+
13
+ # PubMedCausal: A Span-Level Annotated Corpus for Causal Relation Extraction in Biomedical Text
14
+
15
+ PubMedCausal is a comprehensive benchmark suite for causal relation extraction (CRE) and detection on biomedical text. Built from PubMed abstracts, it features 30,000 annotated rows designed to evaluate models on their ability to detect and extract causal claims as they are actually expressed in scientific literature.
16
+
17
+ - **Paper:** [PubMedCausal: A Span-Level Annotated Corpus for Causal Relation Extraction in Biomedical Text](https://huggingface.co/papers/2605.28363)
18
+ - **Repository:** [https://github.com/josiahpaul07/PubMedCausal_Exp](https://github.com/josiahpaul07/PubMedCausal_Exp)
19
+
20
+ ## Dataset Summary
21
+
22
+ The corpus contains 30,000 paragraph-level rows, including 3,945 causal rows and 6,491 adjudicated cause–effect pairs. Each causal relation is annotated with:
23
+ - **Full-text cause and effect spans.**
24
+ - **Causality type:** (e.g., Explicit vs. Implicit).
25
+ - **Sententiality:** (Intra-sentential vs. Inter-sentential).
26
+
27
+ It supports two primary tasks:
28
+ 1. **Causal Detection:** Binary classification to identify if a text contains a causal claim.
29
+ 2. **Causal Extraction:** Identifying specific cause-effect spans and their attributes.
30
+
31
+ ### Dataset Statistics
32
+
33
+ | Task | Split | Train | Test |
34
+ |------|-------|-------|------|
35
+ | Detection | - | 15,000 | 15,000 |
36
+ | Extraction | Combined | 1,972 | 1,973 |
37
+ | Extraction | X_only (multi-pair) | 1,206 | 1,207 |
38
+ | Extraction | Y_only (single-pair) | 766 | 766 |
39
+
40
+ ## Data Format
41
+
42
+ ### Raw Data (30k_train.json / 30k_test.json)
43
+ Each sample contains a sentence and up to 16 cause-effect pairs:
44
+
45
+ ```json
46
+ {
47
+ "s/n": 6350,
48
+ "Sentence": "Insulin resistance causes hyperglycemia.",
49
+ "Cause 1": "Insulin resistance",
50
+ "Effect 1": "hyperglycemia",
51
+ "Sententiality 1": "Intra",
52
+ "Causality 1": "Explicit",
53
+ "Cause 2": "",
54
+ ...
55
+ }
56
+ ```
57
+
58
+ ### Extraction Task Format
59
+ ```json
60
+ {
61
+ "s/n": 17500,
62
+ "sentence": "Insulin resistance causes hyperglycemia.",
63
+ "pairs": [
64
+ {
65
+ "cause": "Insulin resistance",
66
+ "effect": "hyperglycemia",
67
+ "sententiality": "Intra",
68
+ "causality": "Explicit"
69
+ }
70
+ ],
71
+ "num_pairs": 1
72
+ }
73
+ ```
74
+
75
+ ## Citation
76
+ If you use this dataset in your research, please cite the following paper:
77
+ ```bibtex
78
+ @article{paul2025pubmedcausal,
79
+ title={PubMedCausal: A Span-Level Annotated Corpus for Causal Relation Extraction in Biomedical Text},
80
+ author={Paul, Josiah and others},
81
+ journal={arXiv preprint arXiv:2605.28363},
82
+ year={2025}
83
+ }
84
+ ```