Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -24,13 +24,14 @@ configs:
|
|
24 |
|
25 |
---
|
26 |
|
27 |
-
#
|
|
|
|
|
28 |
|
29 |
-
See the accompanying paper: **Ayaou et al., 2025 — “DAPFAM: A Domain‑Aware Patent Retrieval Dataset Aggregated at the Family Level” (arXiv:2506.22141).**
|
30 |
|
31 |
## Summary
|
32 |
|
33 |
-
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.
|
34 |
|
35 |
* Full text **(title · abstract · claims · description)** plus rich metadata for *every* family.
|
36 |
* Multi‑jurisdictional, English‑only text (families may originate in US, JP, EP, CN, …).
|
@@ -49,12 +50,25 @@ qrels_all.parquet # (all | in | out) four‑column tables → query_id · relev
|
|
49 |
```python
|
50 |
from datasets import load_dataset
|
51 |
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
```
|
55 |
|
56 |
## Citation
|
57 |
|
|
|
|
|
58 |
```
|
59 |
@misc{ayaou2025dapfam,
|
60 |
title={DAPFAM: A Domain-Aware Patent Retrieval Dataset Aggregated at the Family Level},
|
|
|
24 |
|
25 |
---
|
26 |
|
27 |
+
# **DAPFAM**
|
28 |
+
|
29 |
+
For more details on the dataset construction and baseline experimentations, see the accompanying paper: **Ayaou et al., 2025 — “DAPFAM: A Domain‑Aware Patent Retrieval Dataset Aggregated at the Family Level” (arXiv:2506.22141).**
|
30 |
|
|
|
31 |
|
32 |
## Summary
|
33 |
|
34 |
+
DAPFAM provides **1 247 domain balanced full-text query patent families** and **45 336 full-text 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.
|
35 |
|
36 |
* Full text **(title · abstract · claims · description)** plus rich metadata for *every* family.
|
37 |
* Multi‑jurisdictional, English‑only text (families may originate in US, JP, EP, CN, …).
|
|
|
50 |
```python
|
51 |
from datasets import load_dataset
|
52 |
|
53 |
+
#According to your usage, you might not need to load all 3 subsets
|
54 |
+
|
55 |
+
ds = load_dataset("datalyes/DAPFAM_patent", "corpus")
|
56 |
+
|
57 |
+
from datasets import load_dataset
|
58 |
+
|
59 |
+
|
60 |
+
ds = load_dataset("datalyes/DAPFAM_patent", "queries")
|
61 |
+
|
62 |
+
from datasets import load_dataset
|
63 |
+
|
64 |
+
|
65 |
+
ds = load_dataset("datalyes/DAPFAM_patent", "relations")
|
66 |
```
|
67 |
|
68 |
## Citation
|
69 |
|
70 |
+
If you find our paper or dataset helpful, please consider citing as follows:
|
71 |
+
|
72 |
```
|
73 |
@misc{ayaou2025dapfam,
|
74 |
title={DAPFAM: A Domain-Aware Patent Retrieval Dataset Aggregated at the Family Level},
|