Update README.md
#6
by
AbeHou
- opened
README.md
CHANGED
@@ -11,12 +11,9 @@ tags:
|
|
11 |
- legal
|
12 |
- law
|
13 |
size_categories:
|
14 |
-
-
|
15 |
---
|
16 |
|
17 |
-
README in progress
|
18 |
-
|
19 |
-
|
20 |
# Usage
|
21 |
The dataset is in folder according to the task and type (e.g. `generation` or `collection` for IR).
|
22 |
|
@@ -26,4 +23,10 @@ from datasets import load_dataset
|
|
26 |
dataset = load_dataset("jhu-clsp/CLERC", data_files={"data": f"generation/test.jsonl"})["data"]
|
27 |
```
|
28 |
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
- legal
|
12 |
- law
|
13 |
size_categories:
|
14 |
+
- 1M<n<10M
|
15 |
---
|
16 |
|
|
|
|
|
|
|
17 |
# Usage
|
18 |
The dataset is in folder according to the task and type (e.g. `generation` or `collection` for IR).
|
19 |
|
|
|
23 |
dataset = load_dataset("jhu-clsp/CLERC", data_files={"data": f"generation/test.jsonl"})["data"]
|
24 |
```
|
25 |
|
26 |
+
# Dataset Description:
|
27 |
+
CLERC is a large-scale dataset of federal case law from the paper (https://arxiv.org/abs/2406.17186). It has a few subsets:
|
28 |
+
1. collection: records 1.84M original federal case law, both in doc and passage forms. This can be used for doing retrieval or alternative tasks.
|
29 |
+
2. generation: includes data for the RAG task as described in the paper. Also see the github (https://github.com/bohanhou14/CLERC) for more details.
|
30 |
+
3. qrels and queries: qrels and queries used for the retrieval task, all following MSMARCO formats.
|
31 |
+
4. triples, teva_train_triples: triples in different formats for evaluation and training (with tevatron)
|
32 |
+
|