File size: 1,357 Bytes
4df26ff
d254cfd
72f2dcb
331b866
72f2dcb
7919ec9
1102ba5
b6a5a5f
65ef14e
 
 
3aaf1da
 
7919ec9
65ef14e
bfecb68
 
 
 
72f2dcb
4df26ff
 
3aaf1da
 
b6a5a5f
3aaf1da
 
 
b6a5a5f
3aaf1da
b6a5a5f
 
 
 
 
 
 
3aaf1da
 
 
7f222f8
 
3aaf1da
b6a5a5f
 
7f222f8
b6a5a5f
7f222f8
3aaf1da
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
---
dataset_info:
configs:
- config_name: all
  data_files:
  - split: train
    path: "us-laws.json"
- config_name: senate
  data_files:
  - split: train
    path: "congress_public_laws.json"
- config_name: house_of_reps
  data_files: 
  - split: train
    path: "us_public_law_118_70.jsonl"
- config_name: executive_orders
  data_files: 
  - split: train
    path: "exec_orders_hf.json"
    
license: apache-2.0
---
# US Federal Laws

This dataset consists of US Federal laws that are voted in by either Senate, the House of Representatives or Executive Order

## Taxonomy

+ The senate split contains the laws voted from the 88th congress through the 118th Congress.
+ The house_of_reps split contains all of the current versions of US Code as documented in Public Law 118-70
+ The executive_orders split contains all of the executive order documents starting in 2005 (Before 2005 the federal government does not have digital records of executive orders)

## Sources

+ [Congress](https://www.congress.gov)
+ [US House of Representatives](https://uscode.house.gov/)
+ [Federal Register](https://www.federalregister.gov/presidential-documents/executive-orders)

## Loading Script

```python
import datasets

ds = datasets.load_dataset('macadeliccc/US-FederalLaws', 'all', split='train')
iter_ds = ds.to_iterable_dataset()

print(next(iter(iter_ds)))
```