jcushman commited on
Commit
d0d248c
·
1 Parent(s): d731076

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -9
README.md CHANGED
@@ -8,25 +8,45 @@ tags:
8
  - legal
9
  - court
10
  - opinions
11
- viewer: false
 
12
  ---
13
 
14
  <a href="https://huggingface.co/datasets/harvard-lil/cold-cases/resolve/main/coldcases.png"><img src="https://huggingface.co/datasets/harvard-lil/cold-cases/resolve/main/coldcases-banner.webp"/></a>
15
 
16
  # Collaborative Open Legal Data (COLD) - Cases
17
 
18
- Re-packaged bulk data from [courtlistener.com](https://www.courtlistener.com/help/api/bulk-data), allowing for easy batch processing of open legal data, for example in the context of data science / AI experiments.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  Prepared by the [Harvard Library Innovation Lab](https://lil.law.harvard.edu) in collaboration with the [Free Law Project](https://free.law/).
21
 
22
  ---
23
 
24
- ## Summary
 
 
 
 
 
25
  - [Formats](#formats)
26
  - [File structure](#file-structure)
27
  - [Data dictionary](#data-dictionary)
28
- - [Data nutrition label](https://datanutrition.org/labels/v3/?id=c29976b2-858c-4f4e-b7d0-c8ef12ce7dbe) (DRAFT). ([Archive](https://perma.cc/YV5P-B8JL)).
29
- - [Pipeline source code](https://github.com/harvard-lil/cold-cases-export)
30
 
31
  ---
32
 
@@ -102,9 +122,18 @@ Partial glossary of the fields in the data.
102
 
103
  [☝️ Go back to Summary](#summary)
104
 
105
- ## Exploring this data
 
 
106
 
107
- We have disabled the dataset viewer in this repo to avoid harmful personal information being indexed on the open web. If you'd like to explore the data,
108
- instructions for loading this data in [Elasticsearch](https://www.elastic.co/elasticsearch/) and exploring it in [Kibana](https://www.elastic.co/kibana/) are available in the
109
- [Github Repo](https://github.com/harvard-lil/cold-cases-export).
 
 
 
 
 
110
 
 
 
 
8
  - legal
9
  - court
10
  - opinions
11
+ size_categories:
12
+ - 1M<n<10M
13
  ---
14
 
15
  <a href="https://huggingface.co/datasets/harvard-lil/cold-cases/resolve/main/coldcases.png"><img src="https://huggingface.co/datasets/harvard-lil/cold-cases/resolve/main/coldcases-banner.webp"/></a>
16
 
17
  # Collaborative Open Legal Data (COLD) - Cases
18
 
19
+ COLD Cases is a dataset of 8.3 million United States legal decisions with text and metadata, formatted as one JSON object per decision.
20
+ The total dataset size is approximately 104GB of uncompressed JSON.
21
+
22
+ This dataset exists to support the open legal movement exemplified by projects like
23
+ [Pile of Law](https://huggingface.co/datasets/pile-of-law/pile-of-law) and
24
+ [LegalBench](https://hazyresearch.stanford.edu/legalbench/).
25
+ A key input to legal understanding projects is caselaw -- the published, precedential decisions of judges deciding legal disputes and explaining their reasoning.
26
+ United States caselaw is collected and published as open data by [CourtListener](https://www.courtlistener.com/), which maintains scrapers to aggregate data from
27
+ a wide range of public sources.
28
+
29
+ COLD Cases reformats CourtListener's [bulk data](https://www.courtlistener.com/help/api/bulk-data) so that all of the semantic information about each legal decision
30
+ (the authors and text of majority and dissenting opinions; head matter; and substantive metadata) is encoded in a single JSON object per decision, with extraneous
31
+ data removed. By consolidating the data engineering for preprocessing caselaw in an
32
+ [open source](https://github.com/harvard-lil/cold-cases-export)
33
+ pipeline maintained by the Harvard Law School Library, we ensure
34
+ that downstream machine learning and natural language processing projects can use consistent, high quality representations of cases for legal understanding tasks.
35
 
36
  Prepared by the [Harvard Library Innovation Lab](https://lil.law.harvard.edu) in collaboration with the [Free Law Project](https://free.law/).
37
 
38
  ---
39
 
40
+
41
+ ## Links
42
+ - [Data nutrition label](https://datanutrition.org/labels/v3/?id=c29976b2-858c-4f4e-b7d0-c8ef12ce7dbe) (DRAFT). ([Archive](https://perma.cc/YV5P-B8JL)).
43
+ - [Pipeline source code](https://github.com/harvard-lil/cold-cases-export)
44
+
45
+ ## Table of Contents
46
  - [Formats](#formats)
47
  - [File structure](#file-structure)
48
  - [Data dictionary](#data-dictionary)
49
+ - [Notes on appropriate use](#appropriate-use)
 
50
 
51
  ---
52
 
 
122
 
123
  [☝️ Go back to Summary](#summary)
124
 
125
+ ## Notes on appropriate use
126
+
127
+ When using this data, please keep in mind:
128
 
129
+ * All documents in this dataset are public information, published by courts within the United States to inform the public about the law. **You have a right to access them.**
130
+ * Nevertheless, **public court decisions frequently contain statements about individuals that are not true**. Court decisions often contain claims that are disputed,
131
+ or false claims taken as true based on a legal technicality, or claims taken as true but later found to be false. Legal decisions are designed to inform you about the law -- they are not
132
+ designed to inform you about individuals, and should not be used in place of credit databases, criminal records databases, news articles, or other sources intended
133
+ to provide factual personal information. Applications should carefully consider whether use of this data will inform about the law, or mislead about individuals.
134
+ * **Court decisions are not up-to-date statements of law**. Each decision provides a given judge's best understanding of the law as applied to the stated facts
135
+ at the time of the decision. Use of this data to generate statements about the law requires integration of a large amount of context --
136
+ the skill typically provided by lawyers -- rather than simple data retrieval.
137
 
138
+ To mitigate privacy risks, we have filtered out cases [blocked or deindexed by CourtListener](https://www.courtlistener.com/terms/#removal). Researchers who
139
+ require access to the full dataset without that filter may rerun our pipeline on CourtListener's raw data.