File size: 2,166 Bytes
0ec1013
420e5eb
0ec1013
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202e832
 
 
 
 
 
 
 
 
0ec1013
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
license: cc-by-sa-3.0
task_categories:
- summarization
language:
- en
tags:
- biomedical
- health
- NLP
- summarization
- LLM
- factuality
size_categories:
- 1K<n<10K
---

PlainFact is a high-quality human-annotated dataset with fine-grained explanation (i.e., added information) annotations designed for Plain Language Summarization tasks, along with [PlainQAFact](https://github.com/zhiwenyou103/PlainQAFact) factuality evaluation framework. It is collected from the [Cochrane database](https://www.cochranelibrary.com/) sampled from CELLS dataset ([Guo et al., 2024](https://doi.org/10.1016/j.jbi.2023.104580)). 

We also provided a summary-level version [PlainFact-summary](https://huggingface.co/datasets/uzw/PlainFact-summary) that aggregrated all the sentences as complete summaries. In total, we have 200 plain language summary-abstract pairs.

Currently, we only released the annotation for **Explanation** sentences. We will release the full version of PlainFact soon (including Category and Relation information). Stay tuned!

Here are explanations for the headings:
- **Target_Sentence**: The plain language sentence/summary.
- **Original_Abstract**: The scientific abstract corresponding to each sentence/summary.
- **External**: Whether the sentence includes information does not explicitly present in the scientific abstract. (yes: explanation, no: simplification)

You can load our dataset as follows:
```python
from datasets import load_dataset
plainfact = load_dataset("uzw/PlainFact")
```

For detailed information regarding the dataset or factuality evaluation framework, please refer to our [Github repo](https://github.com/zhiwenyou103/PlainQAFact) and paper.

Citation
If you use data from PlainFact or PlainFact-summary, please cite with the following BibTex entry:
```
@misc{you2025plainqafactautomaticfactualityevaluation,
      title={PlainQAFact: Automatic Factuality Evaluation Metric for Biomedical Plain Language Summaries Generation}, 
      author={Zhiwen You and Yue Guo},
      year={2025},
      eprint={2503.08890},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2503.08890}, 
}
```