Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
id: legal_documents
|
| 3 |
+
license: cc-by-nc-sa-4.0
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
pretty_name: a
|
| 7 |
+
---
|
| 8 |
+
## Dataset Description
|
| 9 |
+
This dataset contains a collection of law documents related to Terms of
|
| 10 |
+
Service, general federal law, and California law. It includes documents
|
| 11 |
+
sourced from pile-of-law and various other legal sources.
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
Documents from pile-of-law:
|
| 15 |
+
|
| 16 |
+
- U.S. Code of Federal Regulations
|
| 17 |
+
|
| 18 |
+
- U.S. State Codes
|
| 19 |
+
|
| 20 |
+
- The United States Code
|
| 21 |
+
|
| 22 |
+
- Educational Casebooks released under open CC licenses
|
| 23 |
+
|
| 24 |
+
- Unannotated Terms of Service contracts
|
| 25 |
+
|
| 26 |
+
- Advisory opinions by the Federal Trade Commission
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
Documents from other sources:
|
| 30 |
+
|
| 31 |
+
- California's Anti-SLAPP Statute
|
| 32 |
+
|
| 33 |
+
- California Confidentiality of Medical Information Act (CMIA)
|
| 34 |
+
|
| 35 |
+
- CALIFORNIA CONSUMER PRIVACY ACT OF 2018
|
| 36 |
+
|
| 37 |
+
- THE CALIFORNIA PRIVACY RIGHTS ACT OF 2020
|
| 38 |
+
|
| 39 |
+
- California's Electronic Communications Privacy Act (CalECPA)
|
| 40 |
+
|
| 41 |
+
- California's Unfair Competition Law
|
| 42 |
+
|
| 43 |
+
- Consumer Legal Remedies Act (CLRA)
|
| 44 |
+
|
| 45 |
+
- Judicial Branch Contracting Manual
|
| 46 |
+
|
| 47 |
+
- Online Privacy Protection Act (OPPA) - Minors
|
| 48 |
+
|
| 49 |
+
- THE ELECTRONIC COMMUNICATIONS PRIVACY ACT- PROMOTING SECURITY AND PROTECTING
|
| 50 |
+
PRIVACY IN THE DIGITAL AGE
|
| 51 |
+
|
| 52 |
+
- Senate Bill no. 178: Privacy: electronic communications: search warrant
|
| 53 |
+
|
| 54 |
+
- 2022 California Code Financial Code - FIN DIVISION 1.4 - CALIFORNIA
|
| 55 |
+
FINANCIAL INFORMATION PRIVACY ACT
|
| 56 |
+
|
| 57 |
+
- 2010 California Code Financial Code Division 1.2. California Financial
|
| 58 |
+
Information Privacy Act
|
| 59 |
+
|
| 60 |
+
## Data Fields
|
| 61 |
+
|
| 62 |
+
- text: the document text
|
| 63 |
+
|
| 64 |
+
## Language
|
| 65 |
+
English
|
| 66 |
+
|
| 67 |
+
# Importing the Dataset
|
| 68 |
+
|
| 69 |
+
To use this dataset, you need to download it into your Python environment, then import it using the Hugging Face `datasets` library:
|
| 70 |
+
|
| 71 |
+
```python
|
| 72 |
+
from datasets import Dataset
|
| 73 |
+
|
| 74 |
+
# Replace "path/to/data.arrow" with the actual path to your downloaded dataset file
|
| 75 |
+
ds = Dataset.from_file("path/to/data.arrow")
|
| 76 |
+
```
|