Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- README.md +60 -3
- american_law/data/1008538_citation.parquet +3 -0
- american_law/data/1008538_embeddings.parquet +3 -0
- american_law/data/1008538_html.parquet +3 -0
- american_law/data/1008539_citation.parquet +3 -0
- american_law/data/1008539_html.parquet +3 -0
- american_law/data/1008540_citation.parquet +3 -0
- american_law/data/1008540_embeddings.parquet +3 -0
- american_law/data/1008540_html.parquet +3 -0
- american_law/data/1008543_citation.parquet +3 -0
- american_law/data/1008543_embeddings.parquet +3 -0
- american_law/data/1008543_html.parquet +3 -0
- american_law/data/1008547_citation.parquet +3 -0
- american_law/data/1008547_embeddings.parquet +3 -0
- american_law/data/1008547_html.parquet +3 -0
- american_law/data/1008550_citation.parquet +3 -0
- american_law/data/1008550_embeddings.parquet +3 -0
- american_law/data/1008550_html.parquet +3 -0
- american_law/data/1008552_citation.parquet +3 -0
- american_law/data/1008552_embeddings.parquet +3 -0
- american_law/data/1008552_html.parquet +3 -0
- american_law/data/1008559_citation.parquet +3 -0
- american_law/data/1008559_embeddings.parquet +3 -0
- american_law/data/1008559_html.parquet +3 -0
- american_law/data/1008564_citation.parquet +3 -0
- american_law/data/1008564_embeddings.parquet +3 -0
- american_law/data/1008564_html.parquet +3 -0
- american_law/data/1008566_citation.parquet +3 -0
- american_law/data/1008566_embeddings.parquet +3 -0
- american_law/data/1008566_html.parquet +3 -0
- american_law/data/1026123_citation.parquet +3 -0
- american_law/data/1026123_html.parquet +3 -0
- american_law/data/1026124_citation.parquet +3 -0
- american_law/data/1026124_embeddings.parquet +3 -0
- american_law/data/1026124_html.parquet +3 -0
- american_law/data/1026125_citation.parquet +3 -0
- american_law/data/1026125_embeddings.parquet +3 -0
- american_law/data/1026125_html.parquet +3 -0
- american_law/data/1026128_citation.parquet +3 -0
- american_law/data/1026128_embeddings.parquet +3 -0
- american_law/data/1026128_html.parquet +3 -0
- american_law/data/1026328_citation.parquet +3 -0
- american_law/data/1026328_embeddings.parquet +3 -0
- american_law/data/1026328_html.parquet +3 -0
- american_law/data/1026329_citation.parquet +3 -0
- american_law/data/1026329_embeddings.parquet +3 -0
- american_law/data/1026329_html.parquet +3 -0
- american_law/data/1026336_citation.parquet +3 -0
- american_law/data/1026336_embeddings.parquet +3 -0
- american_law/data/1026336_html.parquet +3 -0
README.md
CHANGED
@@ -1,3 +1,60 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
tags:
|
6 |
+
- legal
|
7 |
+
pretty_name: American Law
|
8 |
+
viewer: false
|
9 |
+
---
|
10 |
+
# American Law
|
11 |
+
## Gathered by Kyle Rose
|
12 |
+
|
13 |
+
## Description
|
14 |
+
Municipal and County Laws from across the United States, in parquet format.
|
15 |
+
Files are named after a location's [GNIS id](https://en.wikipedia.org/wiki/Geographic_Names_Information_System) and what they contain.
|
16 |
+
Unless specified otherwise, each row is one sub-section of a law.
|
17 |
+
It is the one of the smallest units of law that can be cited under the [Bluebook Citation method](https://owl.purdue.edu/owl/research_and_citation/chicago_manual_17th_edition/cmos_formatting_and_style_guide/bluebook_citation_for_legal_materials.html).
|
18 |
+
For convenience's sake, these will be referred to as "law" for the rest of this document. All types are from Python.
|
19 |
+
Unless specified otherwise, each embedding was created using OpenAI's "text-embedding-3-small" model.
|
20 |
+
|
21 |
+
## Parquet Contents
|
22 |
+
### HTML
|
23 |
+
Files that end in '_html' consist of rows with the following attributes:
|
24 |
+
- cid (str): A unique CID for the law. It is created from the string "{gnis}_{doc_title}.json". Ex: "bafkreifzhmfladwvggsjdrc32npt6exucvrl3xe2omkgyfkqpo35ufaope"
|
25 |
+
- doc_id (str): A unique ID based on the law's plaintext title. Ex: "CO_CH27HOSPVI"
|
26 |
+
- doc_order (int): The relative location of a law in a corpus, in ascending order.
|
27 |
+
- html_title (str): The raw HTML of the law's title. Ex: ""<div class=\"chunk-title\">Chapter 46 - MASTER ROAD PLAN AND SPECIFICATIONS<a href=..."
|
28 |
+
- html (str): The raw HTML of the law itself. This can include footnotes, citations, tables, etc.
|
29 |
+
- __index_level_0__ (int): Artifact of the parquet conversion process. Will likely be removed in future updates.
|
30 |
+
|
31 |
+
### Citation
|
32 |
+
Files that end in '_citation' consist of rows with the following attributes:
|
33 |
+
- bluebook_cid (str): A unique CID for the given citation. It is created from the string f"{place_name}{bluebook_state_code}{title}{history_note}". A law may have multiple citations linked to it, as parts of a law can be modified without changing other parts.
|
34 |
+
- cid (str): The CID for the citation's associated law. This functions as a foreign key.
|
35 |
+
- title (str): A plaintext version of the law's title. Ex: "Sec. 44. - Civic center and municipal building"
|
36 |
+
- title_num (str): The number in the law's title. As title numbers can also use letters (e.g. A,B,C,etc.), specially-formatted numbers (e.g. 17-35), or none at all, title_num should be treated as a string for search and processing purposes.
|
37 |
+
- date (str): The date when an ordinance was passed/changed. Ex: "10-22-85".
|
38 |
+
- public_law_num (str): An "NA" place holder for Public Law number, A Public Law number, like "P.L. 107-101," identifies a law passed by the US Congress, indicating the US Congress number (107) and the law's sequential number within that Congress (101). As municipal and county citations are not federal laws, they do not have such a number. However, this is left in as this dataset might include federal law in the future.
|
39 |
+
- chapter (str): The plaintext title of a chapter in the law corpus that contains the law. Chapters are broadly defined to be any macro-grouping in a corpus, and include appendices, tables, and other errata. Ex: "Chapter 16 - PARKS AND OTHER RECREATIONAL AND PUBLIC FACILITIES".
|
40 |
+
- chapter_num (str): The number of the chapter. As chapter numbers can also use letters (e.g. A,B,C,etc.), specially-formatted numbers (e.g. 17-35), or none at all, chapter_num should be treated as a string for search and processing purposes.
|
41 |
+
- history_note (str): The plaintext version of a single footnote for a law. They document the law's history. Ex: "Ord. No. 1985-19, § 1, 10-22-85"
|
42 |
+
- ordinance (str): Which ordinance the law was passed/changed under. Ex: "Ord. No. 1985-19". Will be updated when history note parsing is more robust.
|
43 |
+
- section (str): Which section in the law was passed/changed under. Ex: "§ 1". Will be updated when history note parsing is more robust.
|
44 |
+
- enacted (str). The date when a specific law came into effect. Ex: "1985". Will be updated when history note parsing is more robust.
|
45 |
+
- year (str): The year when an ordinance was passed/changed. Ex: "1985". Will be updated when history note parsing is more robust.
|
46 |
+
- place_name (str): The place where the law is in effect. Currently only has municipalities and counties Ex: "City of Baker".
|
47 |
+
- state_name (str): The state where a given place is located. Ex: "Louisiana"
|
48 |
+
- state_code (str): The two letter abbreviation of a state's name. Ex: "LA"
|
49 |
+
- bluebook_sate_code (str): An abbreviation of state_name used specifically for Bluebook citation's. Ex: "Mass."
|
50 |
+
- bluebook_citation (str): A bluebook citation for a given law. Ex: "City of Baker, La., Municipal Code, §17-102 (1972)".
|
51 |
+
- __index_level_0__ (int): Artifact of the parquet conversion process. Will likely be removed in future updates.
|
52 |
+
|
53 |
+
### Embeddings
|
54 |
+
Files that end in '_embeddings' consist of rows with the following attributes:
|
55 |
+
- embedding_cid (str): A unique CID for the embedding. It is created from turning each float into a string, concatentating them, then making a CID out of it.
|
56 |
+
- gnis (str): A place's GNIS id. This functions as a foreign key and allows for cosine similarity searches to be narrowed to a specific location.
|
57 |
+
- cid (str): The CID for the embeddings's associated law. This functions as a foreign key.
|
58 |
+
- text_chunk_order (int): The relative location of an embedding for a law. As chunks may sometimes have token counts greater than the embedding model's input limits, laws are split into separate parts if they go over this limit.
|
59 |
+
- embedding (list(float)): An embedding of the plaintext version of the law, with newlines removed and spaces normalized.
|
60 |
+
- __index_level_0__ (int): Artifact of the parquet conversion process. Will likely be removed in future updates.
|
american_law/data/1008538_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:61cc8d9d04f8ba6ad69c109a73691f964bec6bec033bca0c6dc50ad0b19f58a2
|
3 |
+
size 68530
|
american_law/data/1008538_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bb313f68c0a9e857e40807d7dc3fd935812e726f768ae7e2a2de3bbf68944976
|
3 |
+
size 6094389
|
american_law/data/1008538_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:294bdb58fda1304e6d2ab510442cf6b67c26ce9ef7d48a7b3f345a745ce5130a
|
3 |
+
size 338602
|
american_law/data/1008539_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee6b6c215a3a14cde0a3e5b26d57cacfb2ebe179ec8b877f3135691e66c9b297
|
3 |
+
size 103215
|
american_law/data/1008539_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a34975cf46576a7dc7d96a9d947f0ccf0f8e918b64156a3583b722bd4ea6a77b
|
3 |
+
size 368109
|
american_law/data/1008540_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bb4288c2bf0e2cf613dcc4c0fbdac43e273cdb64d0cf57f51e235ebfdc4a49ae
|
3 |
+
size 67990
|
american_law/data/1008540_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d832841c046e71bdf6328e33ea619671aba8886062172d13a64005724770b87
|
3 |
+
size 5416679
|
american_law/data/1008540_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0c733b70874ecd8535f074c1b1fd12458db9edcfee06c7bbc51afc83474759f6
|
3 |
+
size 296989
|
american_law/data/1008543_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59be5682401bbe2908ced3a7e4501184ba0ead065b21ad1198119c75cb2b1040
|
3 |
+
size 64011
|
american_law/data/1008543_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b376122ae0d30df352ab4c9f6710755340001316c1a636471a10732d6e207177
|
3 |
+
size 5601232
|
american_law/data/1008543_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7a07998e1d39113fb1b0971213825b2c3333084f4461963dc8d722b03d2f9f9c
|
3 |
+
size 277736
|
american_law/data/1008547_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:abc32904dc8fc395c39ebe45fbef5071f36fb9d9d9a829334a3c1aff6762d9e0
|
3 |
+
size 45862
|
american_law/data/1008547_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ab457c39f3efab99df234a74d31ceca0ae200ea865062b4a4f2cfe6021afcc65
|
3 |
+
size 3597661
|
american_law/data/1008547_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3321ecef5384ad8b7e3aa2057ebd5f3823e8c23aa4ae7c312ffe4f41918e91f1
|
3 |
+
size 157579
|
american_law/data/1008550_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14880a25c6beda3ae6281ea08470fd340e0ef9517c6ccf8a242d6559b1313095
|
3 |
+
size 75222
|
american_law/data/1008550_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8e12adea7954389b9cfe9aaee260b38d420100596a4880dc6f2c16e32969a9a3
|
3 |
+
size 7555740
|
american_law/data/1008550_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:18aaf9bf29a4d8a3963c92e4260840caf0aa2d7a0e7082022ecf820e7c8ea9b3
|
3 |
+
size 355997
|
american_law/data/1008552_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b7a87bc2f34c3abca882d962493904f4d492c4247106f93fe820ddaa186134f6
|
3 |
+
size 46537
|
american_law/data/1008552_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0fe061a2955617716514c9274b5794e8d6349e5657e98d72f715b36a42ff7487
|
3 |
+
size 3805478
|
american_law/data/1008552_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a236aaf805b602eb2f207483910b52c623ec803a4e9340e790bd8f4d0fcded45
|
3 |
+
size 180299
|
american_law/data/1008559_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:239fb366b5701dda4dfdaeaba65e2aa0f16b965e28866e2c003858291aa38afd
|
3 |
+
size 89989
|
american_law/data/1008559_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0c0666ceaa446f94eb9a2b98ea9defe83e45afcfe616c27b5e131a68f8123a8f
|
3 |
+
size 8746160
|
american_law/data/1008559_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c07c476ad67721872557f0c9e014fe07ebbc117106415ab0d54d441afb6ec24b
|
3 |
+
size 486452
|
american_law/data/1008564_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2743620a82e10692bc73b37430f5c84b9e1e9ab1d9fb21da891f56e119778b04
|
3 |
+
size 51872
|
american_law/data/1008564_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7a18ceeb7a1713066c517c3a34016cc0d5631e8ffdcea404a0588c52b33af33d
|
3 |
+
size 5298493
|
american_law/data/1008564_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1c0491e460870b83206baa924edbfcd58d1984dc9570653a10301e271bee6023
|
3 |
+
size 275790
|
american_law/data/1008566_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:30cb51398cb6e84cf7eda28677f236d3df32ebdc326e4cd35b25163f4c582dc3
|
3 |
+
size 41829
|
american_law/data/1008566_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:70ef8fa44ccdd3d7deff86e03effe30ce55203d2851dfdc67c4feb2cfda43c63
|
3 |
+
size 4268818
|
american_law/data/1008566_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d2c560fa5253cd4b5a614c3af6a0df7fa37c6763bd23b4491cc4bdde87560f22
|
3 |
+
size 338051
|
american_law/data/1026123_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eaab6a07f6cd2fd98d616b7ce0a288129daffe1e6de75fc99d4b7d44fe9fa989
|
3 |
+
size 63757
|
american_law/data/1026123_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:77de1c34eb3e0ca1cdd5fd08d037e48d46d1816f7c8382f08c0cc45d1b0ba1b2
|
3 |
+
size 249984
|
american_law/data/1026124_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:63eba91281cfbdb8d068f52dd90a4903d60c39ae2b5845dd6ba759ae21e6d828
|
3 |
+
size 28637
|
american_law/data/1026124_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c8f482a7095ad3ebad6bb0f7b9fc41f3171837a3a943f249fbba42c67f19cfbc
|
3 |
+
size 1570932
|
american_law/data/1026124_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:64d3abc275274408b82f2771f65115dc96b1a2b9c753eb80d0939449db19b5f3
|
3 |
+
size 102598
|
american_law/data/1026125_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:00bcd6fefd23baa473e137a01a6ff08a12cabfcae3f046e8a306e95ce42749cb
|
3 |
+
size 67153
|
american_law/data/1026125_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0297e5d977d7bf0cbe392524be6332ac368cf0b95eae537dc4e5d4a27c2848ad
|
3 |
+
size 5683230
|
american_law/data/1026125_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:06278fd6f63e1848d72e3f27df585d8d7706b7b7d9eac3ffddbe22c7f2f87c69
|
3 |
+
size 229400
|
american_law/data/1026128_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4603d3e396914006720806084e789b07e6d429ca7e9e623c96cb61f7122a035a
|
3 |
+
size 71444
|
american_law/data/1026128_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ad9002cc33ef49bfd85ca1564937a6b61a2fbb32ed6909c49681a7b6baf91236
|
3 |
+
size 7988844
|
american_law/data/1026128_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b0936f34741e85011184b249236633ae6a7ab0b03b994700f695834f6d0e2f58
|
3 |
+
size 415573
|
american_law/data/1026328_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:17af40d10f4782fca8a6fd0d1a6e7e2a59352efee97d540bc0af27e8c80310c7
|
3 |
+
size 51436
|
american_law/data/1026328_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:485d5f25b331a2524b9d4bce20ffdff20ef33e2b352deeb488c43dd4e6dd4610
|
3 |
+
size 4622921
|
american_law/data/1026328_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:941d4483365b983f4024a28647af1aac33037ae08b1f72b881d72666436b0cc4
|
3 |
+
size 225391
|
american_law/data/1026329_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:423a1b42a88a270f698a11f75eb35bbb374500246e680fa77e573b0a8ec35cd2
|
3 |
+
size 55580
|
american_law/data/1026329_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68e00943eef23d954843f0c66c3c7def23da31f8350f2b59487c8b9cf07880e4
|
3 |
+
size 5390121
|
american_law/data/1026329_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4af46dc9ac7fbe39df856082fed2c3a30bcdf89b7652c11a34b0eb6ff3c8c026
|
3 |
+
size 238996
|
american_law/data/1026336_citation.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6dbbd828f1f772311f4bb32ced84ebce93e0fbfabf3a9799b8396c6f5f72e4fc
|
3 |
+
size 48952
|
american_law/data/1026336_embeddings.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:585ef6846ce2648d7a8c3cba0ddc1d9468d732ae45fc3a10dfe11d577ee11c03
|
3 |
+
size 4925702
|
american_law/data/1026336_html.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8f074dbb1225ff04dc7510a96b29c0edc1a3cda4ea2321d8cb5bbd7fa69ddad
|
3 |
+
size 205227
|