orionweller commited on
Commit
7d0d6ea
1 Parent(s): 3954243

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-generation
4
+ language:
5
+ - en
6
+ tags:
7
+ - report-generation
8
+ - information retrieval
9
+ - retrieval
10
+ - generation
11
+ - legal
12
+ - law
13
+ size_categories:
14
+ - 100K<n<1M
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
+
23
+ You can load a specific file (say the test set of the generation task) with this command:
24
+ ```python
25
+ from datasets import load_dataset
26
+ dataset = load_dataset("jhu-clsp/CLERC", data_files={"data": f"generation/test.jsonl"})["data"]
27
+ ```
28
+
29
+ Change the values in `data_files` to match the file you want to load.