File size: 5,672 Bytes
42d8a10 d9c356d |
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
---
language: pl
size_categories: 100K<n<1M
source_datasets:
- pl-court-raw
pretty_name: Polish Court Judgments Graph
viewer: false
tags:
- graph
- bipartite
- polish court
---
# Polish Court Judgments Graph
## Dataset description
We introduce a graph dataset of Polish Court Judgments. This dataset is primarily based on the [`JuDDGES/pl-court-raw`](https://huggingface.co/datasets/JuDDGES/pl-court-raw). The dataset consists of nodes representing either judgments or legal bases, and edges connecting judgments to the legal bases they refer to. Also, the graph was cleaned from small disconnected components, leaving single giant component. Consequently, the resulting graph is bipartite. We provide the dataset in both `JSON` and `PyG` formats, each has different purpose. While structurally graphs in these formats are the same, their attributes differ.
The `JSON` format is intended for analysis and contains most of the attributes available in [`JuDDGES/pl-court-raw`](https://huggingface.co/datasets/JuDDGES/pl-court-raw). We excluded some less-useful attributes and text content, which can be easily retrieved from the raw dataset and added to the graph as needed.
The `PyG` format is designed for machine learning applications, such as link prediction on graphs, and is fully compatible with the [`Pytorch Geometric`](https://github.com/pyg-team/pytorch_geometric) framework.
In the following sections, we provide a more detailed explanation and use case examples for each format.
## Dataset statistics
| feature | value |
|----------------------------|----------------------|
| #nodes | 369033 |
| #edges | 1131458 |
| #nodes (type=`judgment`) | 366212 |
| #nodes (type=`legal_base`) | 2819 |
| avg(degree) | 6.132015294025195 |

## `JSON` format
The `JSON` format contains graph node types differentiated by `node_type` attrbute. Each `node_type` has its additional corresponding attributes (see [`JuDDGES/pl-court-raw`](https://huggingface.co/datasets/JuDDGES/pl-court-raw) for detailed description of each attribute):
| node_type | attributes |
|--------------|---------------------------------------------------------------------------------------------------------------------|
| `judgment` | `_id`,`chairman`,`court_name`,`date`,`department_name`,`judges`,`node_type`,`publisher`,`recorder`,`signature`,`type` |
| `legal_base` | `isap_id`,`node_type`,`title` |
### Loading
Graph the `JSON` format is saved in node-link format, and can be readily loaded with `networkx` library:
```python
import json
import networkx as nx
from huggingface_hub import hf_hub_download
DATA_DIR = "<your_local_data_directory>"
JSON_FILE = "data/judgment_graph.json"
hf_hub_download(repo_id="JuDDGES/pl-court-graph", repo_type="dataset", filename=JSON_FILE, local_dir=DATA_DIR)
with open(f"{DATA_DIR}/{JSON_FILE}") as file:
g_data = json.load(file)
g = nx.node_link_graph(g_data)
```
### Example usage
```python
# TBD
```
## `PyG` format
The `PyTorch Geometric` format includes embeddings of the judgment content, obtained with [sdadas/mmlw-roberta-large](https://huggingface.co/sdadas/mmlw-roberta-large) for judgment nodes,
and one-hot-vector identifiers for legal-base nodes (note that for efficiency one can substitute it with random noise identifiers,
like in [(Abboud et al., 2021)](https://arxiv.org/abs/2010.01179)).
### Loading
In order to load graph as pytorch geometric, one can leverage the following code snippet
```python
import torch
import os
from torch_geometric.data import InMemoryDataset, download_url
class PlCourtGraphDataset(InMemoryDataset):
URL = (
"https://huggingface.co/datasets/JuDDGES/pl-court-graph/resolve/main/"
"data/pyg_judgment_graph.pt?download=true"
)
def __init__(self, root_dir: str, transform=None, pre_transform=None):
super(PlCourtGraphDataset, self).__init__(root_dir, transform, pre_transform)
data_file, index_file = self.processed_paths
self.load(data_file)
self.judgment_idx_2_iid, self.legal_base_idx_2_isap_id = torch.load(index_file).values()
@property
def raw_file_names(self) -> str:
return "pyg_judgment_graph.pt"
@property
def processed_file_names(self) -> list[str]:
return ["processed_pyg_judgment_graph.pt", "index_map.pt"]
def download(self) -> None:
os.makedirs(self.root, exist_ok=True)
download_url(self.URL + self.raw_file_names, self.raw_dir)
def process(self) -> None:
dataset = torch.load(self.raw_paths[0])
data = dataset["data"]
if self.pre_transform is not None:
data = self.pre_transform(data)
data_file, index_file = self.processed_paths
self.save([data], data_file)
torch.save(
{
"judgment_idx_2_iid": dataset["judgment_idx_2_iid"],
"legal_base_idx_2_isap_id": dataset["legal_base_idx_2_isap_id"],
},
index_file,
)
def __repr__(self) -> str:
return f"{self.__class__.__name__}({len(self)})"
ds = PlCourtGraphDataset(root_dir="data/datasets/pyg")
print(ds)
```
## Licensing Information
We license the actual packaging of these data under Attribution 4.0 International (CC BY 4.0) https://creativecommons.org/licenses/by/4.0/
|