Datasets:
Tasks:
Text Retrieval
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
ArXiv:
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,69 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-sa-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-sa-4.0
|
| 3 |
+
pretty_name: "DAPFAM –\_Domain‑Aware Patent Retrieval at the Family level"
|
| 4 |
+
tags:
|
| 5 |
+
- patents
|
| 6 |
+
- retrieval
|
| 7 |
+
- information‑retrieval
|
| 8 |
+
- cross‑domain
|
| 9 |
+
- patent
|
| 10 |
+
- fulltext
|
| 11 |
+
size_categories:
|
| 12 |
+
- 10K<n<100K
|
| 13 |
+
language:
|
| 14 |
+
- en
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# Dataset Card for **DAPFAM**
|
| 18 |
+
|
| 19 |
+
See the accompanying paper: **Ayaou et al., 2025 — “DAPFAM: A Domain‑Aware Patent Retrieval Dataset Aggregated at the Family Level” (arXiv:2506.22141).**
|
| 20 |
+
|
| 21 |
+
## Summary
|
| 22 |
+
|
| 23 |
+
DAPFAM provides **1 247 balanced query patent families** and **45 336 target families** with forward/backward‑citation relevance labels (≈ 50 K pairs). Each relevant link is explicitly marked **in‑domain** or **out‑of‑domain** according to IPC 3‑char overlap, enabling rigorous cross‑domain evaluation.
|
| 24 |
+
|
| 25 |
+
* Full text **(title · abstract · claims · description)** plus rich metadata for *every* family.
|
| 26 |
+
* Multi‑jurisdictional, English‑only text (families may originate in US, JP, EP, CN, …).
|
| 27 |
+
* Parquet qrel file: `qrels_all.parquet`.
|
| 28 |
+
|
| 29 |
+
## Dataset Structure
|
| 30 |
+
|
| 31 |
+
```
|
| 32 |
+
corpus.parquet # 45 336 rows, targets – every original column from the paper
|
| 33 |
+
queries.parquet # 1 247 rows, queries – same columns + abstract_keywords
|
| 34 |
+
qrels_all.parquet # (all | in | out) four‑column tables → query_id · relevant_id · relevance_score · domain_rel
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
> **No columns are renamed or discarded.** Down‑stream loaders can combine fields as needed (e.g. `title_en + "
|
| 38 |
+
" + abstract_en + ...`).
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
## How to load
|
| 42 |
+
|
| 43 |
+
```python
|
| 44 |
+
from datasets import load_dataset
|
| 45 |
+
|
| 46 |
+
ds = load_dataset("datalyes/dapfam", data_files="queries.parquet", split="train")
|
| 47 |
+
print(ds[0].keys())
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
## Citation
|
| 51 |
+
|
| 52 |
+
```
|
| 53 |
+
@misc{ayaou2025dapfam,
|
| 54 |
+
title={DAPFAM: A Domain-Aware Patent Retrieval Dataset Aggregated at the Family Level},
|
| 55 |
+
author={Iliass Ayaou and Denis Cavallucci and Hicham Chibane},
|
| 56 |
+
year={2025},
|
| 57 |
+
eprint={2506.22141},
|
| 58 |
+
archivePrefix={arXiv},
|
| 59 |
+
primaryClass={cs.CL}
|
| 60 |
+
}
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## Quick Stats
|
| 64 |
+
|
| 65 |
+
* **Queries**: 1,247
|
| 66 |
+
* **Corpus (targets)**: 45,336
|
| 67 |
+
* **Qrels (all)**: 49,869
|
| 68 |
+
* **Qrels (in)**: 19,736
|
| 69 |
+
* **Qrels (out)**: 5,193
|