Datasets:
Upload folder using huggingface_hub
Browse files- README.md +103 -0
- article_retrieval_performance.parquet +3 -0
- difficulty_stratification.csv +6 -0
- temporal_metrics.csv +361 -0
- temporal_metrics.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- uk
|
| 4 |
+
license: cc-by-nc-sa-4.0
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-retrieval
|
| 7 |
+
tags:
|
| 8 |
+
- legal
|
| 9 |
+
- court-decisions
|
| 10 |
+
- citation-graph
|
| 11 |
+
- statute-retrieval
|
| 12 |
+
- ukrainian
|
| 13 |
+
- benchmark
|
| 14 |
+
pretty_name: UA-StatuteRetrieval
|
| 15 |
+
size_categories:
|
| 16 |
+
- 1K<n<10K
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# UA-StatuteRetrieval: Legal Article Prediction Benchmark
|
| 20 |
+
|
| 21 |
+
A large-scale benchmark for evaluating legal statute retrieval methods on Ukrainian court decisions. Ground truth is derived exhaustively from 37M+ codex citations extracted from the Ukrainian Unified State Register of Court Decisions (EDRSR).
|
| 22 |
+
|
| 23 |
+
## Dataset Description
|
| 24 |
+
|
| 25 |
+
Instead of manual annotations, this benchmark exploits **implicit relevance judgments**: when a judge cites Article 625 of the Civil Code, that constitutes a relevance judgment for that article given the case context.
|
| 26 |
+
|
| 27 |
+
### Key Statistics (2024)
|
| 28 |
+
- **37.5M** codex citations extracted
|
| 29 |
+
- **2.25M** court decisions
|
| 30 |
+
- **3,671** statutory articles evaluated
|
| 31 |
+
- **1.8M** retrieval predictions (leave-one-out protocol)
|
| 32 |
+
|
| 33 |
+
## Files
|
| 34 |
+
|
| 35 |
+
| File | Description |
|
| 36 |
+
|------|-------------|
|
| 37 |
+
| `article_retrieval_performance.parquet` | Per-article metrics: degree, mean rank, Hit@5, MRR for 3,667 articles (year 2024) |
|
| 38 |
+
| `temporal_metrics.parquet` | Retrieval metrics by year (2007-2026) showing temporal degradation |
|
| 39 |
+
| `temporal_metrics.csv` | Same as above in CSV format |
|
| 40 |
+
| `difficulty_stratification.csv` | Performance by article frequency bin (hub/high/mid/low/rare) |
|
| 41 |
+
|
| 42 |
+
## Evaluation Protocol
|
| 43 |
+
|
| 44 |
+
**Leave-one-out on the full bipartite citation graph:**
|
| 45 |
+
|
| 46 |
+
For each court decision with cited articles {a1, ..., an}:
|
| 47 |
+
1. Mask each article ai in turn
|
| 48 |
+
2. Score all candidate articles using remaining citations as seed
|
| 49 |
+
3. Compute rank of masked article among non-seed candidates
|
| 50 |
+
|
| 51 |
+
### Baselines
|
| 52 |
+
|
| 53 |
+
| Method | Hit@10 | MRR |
|
| 54 |
+
|--------|:------:|:---:|
|
| 55 |
+
| Adamic-Adar | 0.545 | 0.272 |
|
| 56 |
+
| Common Neighbors | 0.534 | 0.266 |
|
| 57 |
+
| Degree Baseline | 0.111 | 0.059 |
|
| 58 |
+
|
| 59 |
+
### Difficulty Stratification
|
| 60 |
+
|
| 61 |
+
| Bin | Articles | Hit@10 (AA) | MRR (AA) |
|
| 62 |
+
|-----|:--------:|:-----------:|:--------:|
|
| 63 |
+
| Hub (>100K cites) | 21 | 0.890 | 0.536 |
|
| 64 |
+
| High (10K-100K) | 354 | 0.601 | 0.274 |
|
| 65 |
+
| Mid (1K-10K) | 864 | 0.138 | 0.074 |
|
| 66 |
+
| Low (100-1K) | 1,689 | 0.041 | 0.020 |
|
| 67 |
+
| Rare (<100) | 739 | 0.012 | 0.010 |
|
| 68 |
+
|
| 69 |
+
### Temporal Degradation
|
| 70 |
+
|
| 71 |
+
MRR degrades from 0.42-0.56 (2008-2012) to 0.27-0.28 (2024-2026), demonstrating that co-citation patterns become less predictive over time as legal practice evolves.
|
| 72 |
+
|
| 73 |
+
## Usage
|
| 74 |
+
|
| 75 |
+
```python
|
| 76 |
+
from datasets import load_dataset
|
| 77 |
+
|
| 78 |
+
ds = load_dataset("overthelex/ua-statute-retrieval")
|
| 79 |
+
|
| 80 |
+
# Per-article performance
|
| 81 |
+
articles = ds["train"].to_pandas()
|
| 82 |
+
print(articles[["target_article", "degree", "mrr_aa", "hit5_aa"]].head(20))
|
| 83 |
+
```
|
| 84 |
+
|
| 85 |
+
## Citation
|
| 86 |
+
|
| 87 |
+
```bibtex
|
| 88 |
+
@article{keshchenko2025statute,
|
| 89 |
+
title={UA-StatuteRetrieval: A Full-Graph Benchmark for Legal Article Prediction from 37M Citation Records},
|
| 90 |
+
author={Keshchenko, Volodymyr},
|
| 91 |
+
year={2025}
|
| 92 |
+
}
|
| 93 |
+
```
|
| 94 |
+
|
| 95 |
+
## Source Data
|
| 96 |
+
|
| 97 |
+
Derived from the Ukrainian Unified State Register of Court Decisions (EDRSR). Raw citation data (502M records) is not published.
|
| 98 |
+
|
| 99 |
+
## Related Datasets
|
| 100 |
+
|
| 101 |
+
- [overthelex/ua-court-citation-graph](https://huggingface.co/datasets/overthelex/ua-court-citation-graph) - Co-citation graph
|
| 102 |
+
- [overthelex/ukrainian-court-decisions](https://huggingface.co/datasets/overthelex/ukrainian-court-decisions) - Court decision metadata
|
| 103 |
+
- [overthelex/ua-case-outcome](https://huggingface.co/datasets/overthelex/ua-case-outcome) - Case outcome prediction
|
article_retrieval_performance.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06f544bb07da66d5313825c63754057d962a5693653d7c545f1135e5217cddbd
|
| 3 |
+
size 225154
|
difficulty_stratification.csv
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
degree_bin,n_predictions,n_articles,hit1_cn,hit5_cn,hit10_cn,mrr_cn,hit1_aa,hit5_aa,hit10_aa,mrr_aa,hit1_dg,hit5_dg,mrr_dg
|
| 2 |
+
hub(>100K),298925,21,0.363398845864347,0.79773187254328,0.898024588107385,0.543821656383038,0.355192774107218,0.788294722756544,0.890056034122272,0.535525984923118,0.181329764991219,0.381881742912102,0.301099276199947
|
| 3 |
+
high(10K-100K),1127489,354,0.124254870779227,0.408409305988795,0.59020797542149,0.266446459130413,0.131266025655239,0.418518495524125,0.600500758765717,0.274310921368596,0,0,0.0141067798050333
|
| 4 |
+
mid(1K-10K),316972,864,0.0228726827606224,0.073321933798569,0.113347551203261,0.0637024796806887,0.028901606451043,0.089257095263935,0.138037429173555,0.0744873734279912,0,0,0.00173933988002968
|
| 5 |
+
low(100-1K),68807,1689,0.00283401398113564,0.0114523231647943,0.0182975569346142,0.0140961569097905,0.00472335663522607,0.0182684901245513,0.0409842021887308,0.0202480131879962,0,0,0.000597797580154083
|
| 6 |
+
rare(<100),5338,739,0.00337204945672537,0.00824278756088423,0.00974147620831772,0.0079957420334313,0.00505807418508805,0.0104908205320345,0.011989509179468,0.0104316586511722,0,0,0.00031162620737795
|
temporal_metrics.csv
ADDED
|
@@ -0,0 +1,361 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
method,metric,value,year
|
| 2 |
+
CommonNeighbors,Hit@1,0.198317985153284,2007
|
| 3 |
+
CommonNeighbors,Hit@3,0.394775800199609,2007
|
| 4 |
+
CommonNeighbors,Hit@5,0.484719555371374,2007
|
| 5 |
+
CommonNeighbors,Hit@10,0.602989597171902,2007
|
| 6 |
+
CommonNeighbors,Hit@20,0.729387889439804,2007
|
| 7 |
+
CommonNeighbors,MRR,0.333934417796607,2007
|
| 8 |
+
AdamicAdar,Hit@1,0.199076843946919,2007
|
| 9 |
+
AdamicAdar,Hit@3,0.402139861873042,2007
|
| 10 |
+
AdamicAdar,Hit@5,0.490911016977384,2007
|
| 11 |
+
AdamicAdar,Hit@10,0.613351117767689,2007
|
| 12 |
+
AdamicAdar,Hit@20,0.737080412382124,2007
|
| 13 |
+
AdamicAdar,MRR,0.337503438666965,2007
|
| 14 |
+
DegreeBaseline,Hit@1,0.127854048601608,2007
|
| 15 |
+
DegreeBaseline,Hit@3,0.205238324301204,2007
|
| 16 |
+
DegreeBaseline,Hit@5,0.239628818778657,2007
|
| 17 |
+
DegreeBaseline,Hit@10,0.287159762761686,2007
|
| 18 |
+
DegreeBaseline,Hit@20,0.355832152960349,2007
|
| 19 |
+
DegreeBaseline,MRR,0.188197074825572,2007
|
| 20 |
+
CommonNeighbors,Hit@1,0.291034705382921,2008
|
| 21 |
+
CommonNeighbors,Hit@3,0.468776233894359,2008
|
| 22 |
+
CommonNeighbors,Hit@5,0.55842822502008,2008
|
| 23 |
+
CommonNeighbors,Hit@10,0.68592578726753,2008
|
| 24 |
+
CommonNeighbors,Hit@20,0.80094186545134,2008
|
| 25 |
+
CommonNeighbors,MRR,0.41644587220315,2008
|
| 26 |
+
AdamicAdar,Hit@1,0.291363240888154,2008
|
| 27 |
+
AdamicAdar,Hit@3,0.475480650309291,2008
|
| 28 |
+
AdamicAdar,Hit@5,0.563007666146804,2008
|
| 29 |
+
AdamicAdar,Hit@10,0.693673112902563,2008
|
| 30 |
+
AdamicAdar,Hit@20,0.810778829706868,2008
|
| 31 |
+
AdamicAdar,MRR,0.420072068036764,2008
|
| 32 |
+
DegreeBaseline,Hit@1,0.129598661408825,2008
|
| 33 |
+
DegreeBaseline,Hit@3,0.141180493013368,2008
|
| 34 |
+
DegreeBaseline,Hit@5,0.23928558808333,2008
|
| 35 |
+
DegreeBaseline,Hit@10,0.307418503616278,2008
|
| 36 |
+
DegreeBaseline,Hit@20,0.389987880478019,2008
|
| 37 |
+
DegreeBaseline,MRR,0.181037269057596,2008
|
| 38 |
+
CommonNeighbors,Hit@1,0.431163556691265,2009
|
| 39 |
+
CommonNeighbors,Hit@3,0.621731125177927,2009
|
| 40 |
+
CommonNeighbors,Hit@5,0.684273936932517,2009
|
| 41 |
+
CommonNeighbors,Hit@10,0.761973931588638,2009
|
| 42 |
+
CommonNeighbors,Hit@20,0.904927541864431,2009
|
| 43 |
+
CommonNeighbors,MRR,0.55240456592089,2009
|
| 44 |
+
AdamicAdar,Hit@1,0.433330256554753,2009
|
| 45 |
+
AdamicAdar,Hit@3,0.63051937641795,2009
|
| 46 |
+
AdamicAdar,Hit@5,0.690390248879,2009
|
| 47 |
+
AdamicAdar,Hit@10,0.78076009385794,2009
|
| 48 |
+
AdamicAdar,Hit@20,0.90902289609071,2009
|
| 49 |
+
AdamicAdar,MRR,0.559714083988701,2009
|
| 50 |
+
DegreeBaseline,Hit@1,0.184125765753511,2009
|
| 51 |
+
DegreeBaseline,Hit@3,0.355431080969477,2009
|
| 52 |
+
DegreeBaseline,Hit@5,0.561515329644438,2009
|
| 53 |
+
DegreeBaseline,Hit@10,0.632652069781338,2009
|
| 54 |
+
DegreeBaseline,Hit@20,0.70901609479069,2009
|
| 55 |
+
DegreeBaseline,MRR,0.325553467920398,2009
|
| 56 |
+
CommonNeighbors,Hit@1,0.220218715865025,2010
|
| 57 |
+
CommonNeighbors,Hit@3,0.404201217534675,2010
|
| 58 |
+
CommonNeighbors,Hit@5,0.487488070375335,2010
|
| 59 |
+
CommonNeighbors,Hit@10,0.610893612618641,2010
|
| 60 |
+
CommonNeighbors,Hit@20,0.743315596686831,2010
|
| 61 |
+
CommonNeighbors,MRR,0.350165673789697,2010
|
| 62 |
+
AdamicAdar,Hit@1,0.225289676820748,2010
|
| 63 |
+
AdamicAdar,Hit@3,0.409407474859083,2010
|
| 64 |
+
AdamicAdar,Hit@5,0.494592456166298,2010
|
| 65 |
+
AdamicAdar,Hit@10,0.620587862721937,2010
|
| 66 |
+
AdamicAdar,Hit@20,0.752509780799986,2010
|
| 67 |
+
AdamicAdar,MRR,0.355732244154176,2010
|
| 68 |
+
DegreeBaseline,Hit@1,0.0740435906329814,2010
|
| 69 |
+
DegreeBaseline,Hit@3,0.111768728101387,2010
|
| 70 |
+
DegreeBaseline,Hit@5,0.126164527016496,2010
|
| 71 |
+
DegreeBaseline,Hit@10,0.24275683594851,2010
|
| 72 |
+
DegreeBaseline,Hit@20,0.354675451203441,2010
|
| 73 |
+
DegreeBaseline,MRR,0.12751771924389,2010
|
| 74 |
+
CommonNeighbors,Hit@1,0.22902643959662,2011
|
| 75 |
+
CommonNeighbors,Hit@3,0.510849494092973,2011
|
| 76 |
+
CommonNeighbors,Hit@5,0.627958579316114,2011
|
| 77 |
+
CommonNeighbors,Hit@10,0.739174017795632,2011
|
| 78 |
+
CommonNeighbors,Hit@20,0.856508664226528,2011
|
| 79 |
+
CommonNeighbors,MRR,0.407339511789169,2011
|
| 80 |
+
AdamicAdar,Hit@1,0.25237622997762,2011
|
| 81 |
+
AdamicAdar,Hit@3,0.529139067277645,2011
|
| 82 |
+
AdamicAdar,Hit@5,0.636790638674648,2011
|
| 83 |
+
AdamicAdar,Hit@10,0.747385974986409,2011
|
| 84 |
+
AdamicAdar,Hit@20,0.863244915888608,2011
|
| 85 |
+
AdamicAdar,MRR,0.424236054524705,2011
|
| 86 |
+
DegreeBaseline,Hit@1,0.09188446066786,2011
|
| 87 |
+
DegreeBaseline,Hit@3,0.189963061484927,2011
|
| 88 |
+
DegreeBaseline,Hit@5,0.240312910741225,2011
|
| 89 |
+
DegreeBaseline,Hit@10,0.364127663055903,2011
|
| 90 |
+
DegreeBaseline,Hit@20,0.489373773271991,2011
|
| 91 |
+
DegreeBaseline,MRR,0.180354918378086,2011
|
| 92 |
+
CommonNeighbors,Hit@1,0.315254809199853,2012
|
| 93 |
+
CommonNeighbors,Hit@3,0.564856030757066,2012
|
| 94 |
+
CommonNeighbors,Hit@5,0.641859466386726,2012
|
| 95 |
+
CommonNeighbors,Hit@10,0.7491300154058,2012
|
| 96 |
+
CommonNeighbors,Hit@20,0.833774148250147,2012
|
| 97 |
+
CommonNeighbors,MRR,0.461658370816321,2012
|
| 98 |
+
AdamicAdar,Hit@1,0.317811081269002,2012
|
| 99 |
+
AdamicAdar,Hit@3,0.571340440905806,2012
|
| 100 |
+
AdamicAdar,Hit@5,0.647951914818198,2012
|
| 101 |
+
AdamicAdar,Hit@10,0.75774891273228,2012
|
| 102 |
+
AdamicAdar,Hit@20,0.840133301067499,2012
|
| 103 |
+
AdamicAdar,MRR,0.464902977492425,2012
|
| 104 |
+
DegreeBaseline,Hit@1,0.180869882343318,2012
|
| 105 |
+
DegreeBaseline,Hit@3,0.213354135707372,2012
|
| 106 |
+
DegreeBaseline,Hit@5,0.216660247583471,2012
|
| 107 |
+
DegreeBaseline,Hit@10,0.311668359486837,2012
|
| 108 |
+
DegreeBaseline,Hit@20,0.396310788149804,2012
|
| 109 |
+
DegreeBaseline,MRR,0.224202136758747,2012
|
| 110 |
+
CommonNeighbors,Hit@1,0.241005931672991,2013
|
| 111 |
+
CommonNeighbors,Hit@3,0.443159264292118,2013
|
| 112 |
+
CommonNeighbors,Hit@5,0.536276521964669,2013
|
| 113 |
+
CommonNeighbors,Hit@10,0.654615371603525,2013
|
| 114 |
+
CommonNeighbors,Hit@20,0.752996848093915,2013
|
| 115 |
+
CommonNeighbors,MRR,0.37759844444652,2013
|
| 116 |
+
AdamicAdar,Hit@1,0.248364138187682,2013
|
| 117 |
+
AdamicAdar,Hit@3,0.454040811263413,2013
|
| 118 |
+
AdamicAdar,Hit@5,0.548132819856444,2013
|
| 119 |
+
AdamicAdar,Hit@10,0.663888544315574,2013
|
| 120 |
+
AdamicAdar,Hit@20,0.761963428867851,2013
|
| 121 |
+
AdamicAdar,MRR,0.385799425710856,2013
|
| 122 |
+
DegreeBaseline,Hit@1,0.0355040512424374,2013
|
| 123 |
+
DegreeBaseline,Hit@3,0.0697471990888229,2013
|
| 124 |
+
DegreeBaseline,Hit@5,0.126191832108845,2013
|
| 125 |
+
DegreeBaseline,Hit@10,0.184273031750238,2013
|
| 126 |
+
DegreeBaseline,Hit@20,0.271978765512847,2013
|
| 127 |
+
DegreeBaseline,MRR,0.0851354127204378,2013
|
| 128 |
+
CommonNeighbors,Hit@1,0.233702506831557,2014
|
| 129 |
+
CommonNeighbors,Hit@3,0.409692968991727,2014
|
| 130 |
+
CommonNeighbors,Hit@5,0.493731558733221,2014
|
| 131 |
+
CommonNeighbors,Hit@10,0.608522900321944,2014
|
| 132 |
+
CommonNeighbors,Hit@20,0.723500735985546,2014
|
| 133 |
+
CommonNeighbors,MRR,0.357883247679886,2014
|
| 134 |
+
AdamicAdar,Hit@1,0.244786188781655,2014
|
| 135 |
+
AdamicAdar,Hit@3,0.420671293899525,2014
|
| 136 |
+
AdamicAdar,Hit@5,0.502576100784305,2014
|
| 137 |
+
AdamicAdar,Hit@10,0.617554541948149,2014
|
| 138 |
+
AdamicAdar,Hit@20,0.730677730367109,2014
|
| 139 |
+
AdamicAdar,MRR,0.36796677675747,2014
|
| 140 |
+
DegreeBaseline,Hit@1,0.10193596592729,2014
|
| 141 |
+
DegreeBaseline,Hit@3,0.1519581575112,2014
|
| 142 |
+
DegreeBaseline,Hit@5,0.168808623776662,2014
|
| 143 |
+
DegreeBaseline,Hit@10,0.215188125898033,2014
|
| 144 |
+
DegreeBaseline,Hit@20,0.318018415684394,2014
|
| 145 |
+
DegreeBaseline,MRR,0.149362678078499,2014
|
| 146 |
+
CommonNeighbors,Hit@1,0.212821135053657,2015
|
| 147 |
+
CommonNeighbors,Hit@3,0.393342959913678,2015
|
| 148 |
+
CommonNeighbors,Hit@5,0.480701958918283,2015
|
| 149 |
+
CommonNeighbors,Hit@10,0.5984233359459,2015
|
| 150 |
+
CommonNeighbors,Hit@20,0.709153509319387,2015
|
| 151 |
+
CommonNeighbors,MRR,0.340552214074677,2015
|
| 152 |
+
AdamicAdar,Hit@1,0.217030176731596,2015
|
| 153 |
+
AdamicAdar,Hit@3,0.404727584461204,2015
|
| 154 |
+
AdamicAdar,Hit@5,0.490415765626772,2015
|
| 155 |
+
AdamicAdar,Hit@10,0.606923788023461,2015
|
| 156 |
+
AdamicAdar,Hit@20,0.71641336172731,2015
|
| 157 |
+
AdamicAdar,MRR,0.346932764862257,2015
|
| 158 |
+
DegreeBaseline,Hit@1,0.0207347416695126,2015
|
| 159 |
+
DegreeBaseline,Hit@3,0.0833248324588521,2015
|
| 160 |
+
DegreeBaseline,Hit@5,0.174762350397809,2015
|
| 161 |
+
DegreeBaseline,Hit@10,0.23481548455935,2015
|
| 162 |
+
DegreeBaseline,Hit@20,0.290631064793137,2015
|
| 163 |
+
DegreeBaseline,MRR,0.0923542554350188,2015
|
| 164 |
+
CommonNeighbors,Hit@1,0.217280614565609,2016
|
| 165 |
+
CommonNeighbors,Hit@3,0.399487861992284,2016
|
| 166 |
+
CommonNeighbors,Hit@5,0.485977863508482,2016
|
| 167 |
+
CommonNeighbors,Hit@10,0.599940699809633,2016
|
| 168 |
+
CommonNeighbors,Hit@20,0.715793729678734,2016
|
| 169 |
+
CommonNeighbors,MRR,0.345101591821889,2016
|
| 170 |
+
AdamicAdar,Hit@1,0.225792213480685,2016
|
| 171 |
+
AdamicAdar,Hit@3,0.407967789214778,2016
|
| 172 |
+
AdamicAdar,Hit@5,0.493418689667953,2016
|
| 173 |
+
AdamicAdar,Hit@10,0.608007547296956,2016
|
| 174 |
+
AdamicAdar,Hit@20,0.722735221280682,2016
|
| 175 |
+
AdamicAdar,MRR,0.352900701949195,2016
|
| 176 |
+
DegreeBaseline,Hit@1,0.0643319462928958,2016
|
| 177 |
+
DegreeBaseline,Hit@3,0.0692653178119578,2016
|
| 178 |
+
DegreeBaseline,Hit@5,0.16081066055695,2016
|
| 179 |
+
DegreeBaseline,Hit@10,0.203568793274819,2016
|
| 180 |
+
DegreeBaseline,Hit@20,0.288529119425866,2016
|
| 181 |
+
DegreeBaseline,MRR,0.105878731389872,2016
|
| 182 |
+
CommonNeighbors,Hit@1,0.199579573380127,2017
|
| 183 |
+
CommonNeighbors,Hit@3,0.375949665259951,2017
|
| 184 |
+
CommonNeighbors,Hit@5,0.461362303996104,2017
|
| 185 |
+
CommonNeighbors,Hit@10,0.580368048635565,2017
|
| 186 |
+
CommonNeighbors,Hit@20,0.701776987299861,2017
|
| 187 |
+
CommonNeighbors,MRR,0.325595407589782,2017
|
| 188 |
+
AdamicAdar,Hit@1,0.211520112854838,2017
|
| 189 |
+
AdamicAdar,Hit@3,0.385013253297444,2017
|
| 190 |
+
AdamicAdar,Hit@5,0.46990647922812,2017
|
| 191 |
+
AdamicAdar,Hit@10,0.589288053770143,2017
|
| 192 |
+
AdamicAdar,Hit@20,0.710485918950429,2017
|
| 193 |
+
AdamicAdar,MRR,0.335741273749562,2017
|
| 194 |
+
DegreeBaseline,Hit@1,0.0509653138113519,2017
|
| 195 |
+
DegreeBaseline,Hit@3,0.0575330736930978,2017
|
| 196 |
+
DegreeBaseline,Hit@5,0.138873119030888,2017
|
| 197 |
+
DegreeBaseline,Hit@10,0.17329530040587,2017
|
| 198 |
+
DegreeBaseline,Hit@20,0.251618119765345,2017
|
| 199 |
+
DegreeBaseline,MRR,0.0903486898862642,2017
|
| 200 |
+
CommonNeighbors,Hit@1,0.178862273716794,2018
|
| 201 |
+
CommonNeighbors,Hit@3,0.336833204355824,2018
|
| 202 |
+
CommonNeighbors,Hit@5,0.432437482069715,2018
|
| 203 |
+
CommonNeighbors,Hit@10,0.565263222605539,2018
|
| 204 |
+
CommonNeighbors,Hit@20,0.685486534506908,2018
|
| 205 |
+
CommonNeighbors,MRR,0.301250952415742,2018
|
| 206 |
+
AdamicAdar,Hit@1,0.185670357593159,2018
|
| 207 |
+
AdamicAdar,Hit@3,0.346834988343808,2018
|
| 208 |
+
AdamicAdar,Hit@5,0.443452402477333,2018
|
| 209 |
+
AdamicAdar,Hit@10,0.574524892659372,2018
|
| 210 |
+
AdamicAdar,Hit@20,0.695391886711941,2018
|
| 211 |
+
AdamicAdar,MRR,0.309422431454076,2018
|
| 212 |
+
DegreeBaseline,Hit@1,0.036319222952693,2018
|
| 213 |
+
DegreeBaseline,Hit@3,0.0537281732686276,2018
|
| 214 |
+
DegreeBaseline,Hit@5,0.0746496512785649,2018
|
| 215 |
+
DegreeBaseline,Hit@10,0.143512190182762,2018
|
| 216 |
+
DegreeBaseline,Hit@20,0.211876900007473,2018
|
| 217 |
+
DegreeBaseline,MRR,0.0713319410813138,2018
|
| 218 |
+
CommonNeighbors,Hit@1,0.181385320553183,2019
|
| 219 |
+
CommonNeighbors,Hit@3,0.336800420014193,2019
|
| 220 |
+
CommonNeighbors,Hit@5,0.43312117200209,2019
|
| 221 |
+
CommonNeighbors,Hit@10,0.566217170234387,2019
|
| 222 |
+
CommonNeighbors,Hit@20,0.686664734010502,2019
|
| 223 |
+
CommonNeighbors,MRR,0.302862620540981,2019
|
| 224 |
+
AdamicAdar,Hit@1,0.186421305503085,2019
|
| 225 |
+
AdamicAdar,Hit@3,0.347843641961289,2019
|
| 226 |
+
AdamicAdar,Hit@5,0.444242561889621,2019
|
| 227 |
+
AdamicAdar,Hit@10,0.575872449617069,2019
|
| 228 |
+
AdamicAdar,Hit@20,0.696686233271599,2019
|
| 229 |
+
AdamicAdar,MRR,0.310430045459895,2019
|
| 230 |
+
DegreeBaseline,Hit@1,0.0326458863044229,2019
|
| 231 |
+
DegreeBaseline,Hit@3,0.046241568479732,2019
|
| 232 |
+
DegreeBaseline,Hit@5,0.0723896677985631,2019
|
| 233 |
+
DegreeBaseline,Hit@10,0.119246116376676,2019
|
| 234 |
+
DegreeBaseline,Hit@20,0.198810000818609,2019
|
| 235 |
+
DegreeBaseline,MRR,0.0637121086055991,2019
|
| 236 |
+
CommonNeighbors,Hit@1,0.159058004991303,2020
|
| 237 |
+
CommonNeighbors,Hit@3,0.320566891023217,2020
|
| 238 |
+
CommonNeighbors,Hit@5,0.4157489223323,2020
|
| 239 |
+
CommonNeighbors,Hit@10,0.556677909702791,2020
|
| 240 |
+
CommonNeighbors,Hit@20,0.683541707630644,2020
|
| 241 |
+
CommonNeighbors,MRR,0.284276914190054,2020
|
| 242 |
+
AdamicAdar,Hit@1,0.164829161309839,2020
|
| 243 |
+
AdamicAdar,Hit@3,0.329949935718067,2020
|
| 244 |
+
AdamicAdar,Hit@5,0.425086591545035,2020
|
| 245 |
+
AdamicAdar,Hit@10,0.567302427588293,2020
|
| 246 |
+
AdamicAdar,Hit@20,0.693618089692203,2020
|
| 247 |
+
AdamicAdar,MRR,0.291782070797159,2020
|
| 248 |
+
DegreeBaseline,Hit@1,0.0356046282991757,2020
|
| 249 |
+
DegreeBaseline,Hit@3,0.0460942297511911,2020
|
| 250 |
+
DegreeBaseline,Hit@5,0.0717452922937306,2020
|
| 251 |
+
DegreeBaseline,Hit@10,0.124495802767904,2020
|
| 252 |
+
DegreeBaseline,Hit@20,0.198577024880889,2020
|
| 253 |
+
DegreeBaseline,MRR,0.0641178751449093,2020
|
| 254 |
+
CommonNeighbors,Hit@1,0.150041031542409,2021
|
| 255 |
+
CommonNeighbors,Hit@3,0.312624981134923,2021
|
| 256 |
+
CommonNeighbors,Hit@5,0.407533414767582,2021
|
| 257 |
+
CommonNeighbors,Hit@10,0.547517002150619,2021
|
| 258 |
+
CommonNeighbors,Hit@20,0.676169163145186,2021
|
| 259 |
+
CommonNeighbors,MRR,0.27569007180345,2021
|
| 260 |
+
AdamicAdar,Hit@1,0.155006673520978,2021
|
| 261 |
+
AdamicAdar,Hit@3,0.321417875603682,2021
|
| 262 |
+
AdamicAdar,Hit@5,0.416960057915786,2021
|
| 263 |
+
AdamicAdar,Hit@10,0.557862138733776,2021
|
| 264 |
+
AdamicAdar,Hit@20,0.686701181897072,2021
|
| 265 |
+
AdamicAdar,MRR,0.282540864083212,2021
|
| 266 |
+
DegreeBaseline,Hit@1,0.032707327195895,2021
|
| 267 |
+
DegreeBaseline,Hit@3,0.0423927756187745,2021
|
| 268 |
+
DegreeBaseline,Hit@5,0.0611918248188953,2021
|
| 269 |
+
DegreeBaseline,Hit@10,0.115562155712345,2021
|
| 270 |
+
DegreeBaseline,Hit@20,0.186820857229098,2021
|
| 271 |
+
DegreeBaseline,MRR,0.0604699924324271,2021
|
| 272 |
+
CommonNeighbors,Hit@1,0.147574747424168,2022
|
| 273 |
+
CommonNeighbors,Hit@3,0.307652505251813,2022
|
| 274 |
+
CommonNeighbors,Hit@5,0.400967859621011,2022
|
| 275 |
+
CommonNeighbors,Hit@10,0.54138380796368,2022
|
| 276 |
+
CommonNeighbors,Hit@20,0.671720567791902,2022
|
| 277 |
+
CommonNeighbors,MRR,0.27229218118398,2022
|
| 278 |
+
AdamicAdar,Hit@1,0.152952937557675,2022
|
| 279 |
+
AdamicAdar,Hit@3,0.317261355480365,2022
|
| 280 |
+
AdamicAdar,Hit@5,0.413148965494219,2022
|
| 281 |
+
AdamicAdar,Hit@10,0.552688618171153,2022
|
| 282 |
+
AdamicAdar,Hit@20,0.682289170416258,2022
|
| 283 |
+
AdamicAdar,MRR,0.279850468633772,2022
|
| 284 |
+
DegreeBaseline,Hit@1,0.0183986322634181,2022
|
| 285 |
+
DegreeBaseline,Hit@3,0.0285314715329094,2022
|
| 286 |
+
DegreeBaseline,Hit@5,0.0577693446739107,2022
|
| 287 |
+
DegreeBaseline,Hit@10,0.106395408449159,2022
|
| 288 |
+
DegreeBaseline,Hit@20,0.157488810836976,2022
|
| 289 |
+
DegreeBaseline,MRR,0.0473595776456839,2022
|
| 290 |
+
CommonNeighbors,Hit@1,0.151248281909095,2023
|
| 291 |
+
CommonNeighbors,Hit@3,0.316515593156074,2023
|
| 292 |
+
CommonNeighbors,Hit@5,0.412813995923977,2023
|
| 293 |
+
CommonNeighbors,Hit@10,0.550318735485094,2023
|
| 294 |
+
CommonNeighbors,Hit@20,0.678211645101664,2023
|
| 295 |
+
CommonNeighbors,MRR,0.277818232722648,2023
|
| 296 |
+
AdamicAdar,Hit@1,0.156361675908811,2023
|
| 297 |
+
AdamicAdar,Hit@3,0.32322207213612,2023
|
| 298 |
+
AdamicAdar,Hit@5,0.420064339542158,2023
|
| 299 |
+
AdamicAdar,Hit@10,0.559667519787668,2023
|
| 300 |
+
AdamicAdar,Hit@20,0.689337764822977,2023
|
| 301 |
+
AdamicAdar,MRR,0.284046570633975,2023
|
| 302 |
+
DegreeBaseline,Hit@1,0.0097765296933504,2023
|
| 303 |
+
DegreeBaseline,Hit@3,0.0482025214465141,2023
|
| 304 |
+
DegreeBaseline,Hit@5,0.0639663017204607,2023
|
| 305 |
+
DegreeBaseline,Hit@10,0.0989525569932224,2023
|
| 306 |
+
DegreeBaseline,Hit@20,0.168063059860657,2023
|
| 307 |
+
DegreeBaseline,MRR,0.0461742405515537,2023
|
| 308 |
+
CommonNeighbors,Hit@1,0.140953854432194,2024
|
| 309 |
+
CommonNeighbors,Hit@3,0.303873221419607,2024
|
| 310 |
+
CommonNeighbors,Hit@5,0.39779899214924,2024
|
| 311 |
+
CommonNeighbors,Hit@10,0.53431495803923,2024
|
| 312 |
+
CommonNeighbors,Hit@20,0.664277528141198,2024
|
| 313 |
+
CommonNeighbors,MRR,0.266395367298606,2024
|
| 314 |
+
AdamicAdar,Hit@1,0.145081431898548,2024
|
| 315 |
+
AdamicAdar,Hit@3,0.309617277504483,2024
|
| 316 |
+
AdamicAdar,Hit@5,0.405561720817967,2024
|
| 317 |
+
AdamicAdar,Hit@10,0.544560725511697,2024
|
| 318 |
+
AdamicAdar,Hit@20,0.675147769143965,2024
|
| 319 |
+
AdamicAdar,MRR,0.272030547172853,2024
|
| 320 |
+
DegreeBaseline,Hit@1,0.0298228750981414,2024
|
| 321 |
+
DegreeBaseline,Hit@3,0.0449021227148258,2024
|
| 322 |
+
DegreeBaseline,Hit@5,0.0628071818307363,2024
|
| 323 |
+
DegreeBaseline,Hit@10,0.111150786424,2024
|
| 324 |
+
DegreeBaseline,Hit@20,0.174768958548713,2024
|
| 325 |
+
DegreeBaseline,MRR,0.0585989775981326,2024
|
| 326 |
+
CommonNeighbors,Hit@1,0.141648927366374,2025
|
| 327 |
+
CommonNeighbors,Hit@3,0.304566442760918,2025
|
| 328 |
+
CommonNeighbors,Hit@5,0.399421854490214,2025
|
| 329 |
+
CommonNeighbors,Hit@10,0.536686074744863,2025
|
| 330 |
+
CommonNeighbors,Hit@20,0.663963301088502,2025
|
| 331 |
+
CommonNeighbors,MRR,0.267337540724517,2025
|
| 332 |
+
AdamicAdar,Hit@1,0.145871946013533,2025
|
| 333 |
+
AdamicAdar,Hit@3,0.310541814767292,2025
|
| 334 |
+
AdamicAdar,Hit@5,0.406906500914141,2025
|
| 335 |
+
AdamicAdar,Hit@10,0.547201833634587,2025
|
| 336 |
+
AdamicAdar,Hit@20,0.67375747058062,2025
|
| 337 |
+
AdamicAdar,MRR,0.272780137877299,2025
|
| 338 |
+
DegreeBaseline,Hit@1,0.0356605001089758,2025
|
| 339 |
+
DegreeBaseline,Hit@3,0.0535669513148386,2025
|
| 340 |
+
DegreeBaseline,Hit@5,0.0649015311788345,2025
|
| 341 |
+
DegreeBaseline,Hit@10,0.122301482344548,2025
|
| 342 |
+
DegreeBaseline,Hit@20,0.187654211738692,2025
|
| 343 |
+
DegreeBaseline,MRR,0.0654861391577392,2025
|
| 344 |
+
CommonNeighbors,Hit@1,0.150592801847997,2026
|
| 345 |
+
CommonNeighbors,Hit@3,0.316595294020486,2026
|
| 346 |
+
CommonNeighbors,Hit@5,0.408107576350109,2026
|
| 347 |
+
CommonNeighbors,Hit@10,0.543857134876084,2026
|
| 348 |
+
CommonNeighbors,Hit@20,0.670676651550078,2026
|
| 349 |
+
CommonNeighbors,MRR,0.276862517764698,2026
|
| 350 |
+
AdamicAdar,Hit@1,0.154809577132253,2026
|
| 351 |
+
AdamicAdar,Hit@3,0.321941076880849,2026
|
| 352 |
+
AdamicAdar,Hit@5,0.415109949500715,2026
|
| 353 |
+
AdamicAdar,Hit@10,0.553528998831642,2026
|
| 354 |
+
AdamicAdar,Hit@20,0.679436662140596,2026
|
| 355 |
+
AdamicAdar,MRR,0.28218612624985,2026
|
| 356 |
+
DegreeBaseline,Hit@1,0.0496884784388215,2026
|
| 357 |
+
DegreeBaseline,Hit@3,0.0759481064590018,2026
|
| 358 |
+
DegreeBaseline,Hit@5,0.0861985625071353,2026
|
| 359 |
+
DegreeBaseline,Hit@10,0.16219816414818,2026
|
| 360 |
+
DegreeBaseline,Hit@20,0.242200787487642,2026
|
| 361 |
+
DegreeBaseline,MRR,0.0862064100881934,2026
|
temporal_metrics.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:403673356929bc906ebbc408e12e9981c671cd68f2ead2007bf8f1a25006205b
|
| 3 |
+
size 5625
|