chenghao commited on
Commit
247665e
·
verified ·
1 Parent(s): 03921a3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -5
README.md CHANGED
@@ -104,7 +104,7 @@ configs:
104
 
105
  ### <span style="color: #e07a5f">Dataset Summary</span>
106
 
107
- Picture this: <span style="color: #e07a5f">**930,120 material contracts**</span> (Exhibit 10) painstakingly collected from sec.gov's EDGAR database. We're talking about legal agreements spanning from <span style="color: #81b29a">**1994 to January 2024**</span>, sourced from 10-K, 10-Q, and 8-K filings. Think of Exhibit 10 as the treasure trove where companies hide their most important legal paperwork – employment agreements, merger documents, licensing deals, and all those contracts that make corporate lawyers reach for their third espresso.
108
 
109
  This isn't just another dataset – it's <span style="color: #81b29a">**three decades of corporate America's legal DNA**</span>, ready for your next language model to digest.
110
 
@@ -135,23 +135,78 @@ Here's what each record contains <span style="color: #81b29a">*(because data dic
135
  | `cik` | Central Index Key from EDGAR *(think of it as a company's social security number)* |
136
  | `name` | Company name *(who's responsible for this legal masterpiece)* |
137
  | `type` | Filing type *(10-K, 10-Q, or 8-K – the holy trinity of SEC filings)* |
138
- | `date` | Filing date *(when this document saw the light of day)* |
139
- | `seq` | Sequence number in the filing *(because order matters)* |
 
140
  | `desc` | Description provided from the filing *(sometimes helpful, sometimes cryptic)* |
141
  | `doc_type` | Document type (e.g. EX-10) *(the exhibit classification)* |
142
  | `size` | Document size *(bigger isn't always better, but it usually means more billable hours)* |
143
  | `filename` | Document name *(often more creative than you'd expect)* |
144
  | `file_url` | Document page URL *(your direct line to the source)* |
145
  | `file` | GCS file URI *(private, like a good secret)* |
146
- | `__index_level_0__` | Please ignore *(the artifact of data wrangling we all pretend doesn't exist)* |
147
  | `file_content` | Text content (HTML) or base64 string for binary content (PDF) *(the good stuff)* |
148
 
149
- Please be aware, some of the file_content might contain the entire filing as old filings tend to include all exhibits in one txt document.
150
 
151
  ### <span style="color: #e07a5f">Data Splits</span>
152
 
153
  There's no split by design – everything lives under <span style="color: #2c2c2c; background-color: #f4f3ee; padding: 2px 4px; border-radius: 3px;">`train`</span> because sometimes life is simpler that way. Feel free to create your own splits based on your specific needs <span style="color: #81b29a">*(and caffeine levels)*</span>.
154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  ## <span style="color: #e07a5f">Dataset Creation</span>
156
 
157
  ### <span style="color: #e07a5f">Curation Rationale</span>
 
104
 
105
  ### <span style="color: #e07a5f">Dataset Summary</span>
106
 
107
+ Picture this: <span style="color: #e07a5f">**1,119,061 material contracts**</span> (Exhibit 10) painstakingly collected from sec.gov's EDGAR database. We're talking about legal agreements spanning from <span style="color: #81b29a">**1994 to 2025 Q1**</span>, sourced from 10-K, 10-Q, and 8-K filings. Think of Exhibit 10 as the treasure trove where companies hide their most important legal paperwork – employment agreements, merger documents, licensing deals, and all those contracts that make corporate lawyers reach for their third espresso.
108
 
109
  This isn't just another dataset – it's <span style="color: #81b29a">**three decades of corporate America's legal DNA**</span>, ready for your next language model to digest.
110
 
 
135
  | `cik` | Central Index Key from EDGAR *(think of it as a company's social security number)* |
136
  | `name` | Company name *(who's responsible for this legal masterpiece)* |
137
  | `type` | Filing type *(10-K, 10-Q, or 8-K – the holy trinity of SEC filings)* |
138
+ | `filing_date` | Filing date |
139
+ | `report_date` | Report date |
140
+ | `seq` | Sequence number in the filing |
141
  | `desc` | Description provided from the filing *(sometimes helpful, sometimes cryptic)* |
142
  | `doc_type` | Document type (e.g. EX-10) *(the exhibit classification)* |
143
  | `size` | Document size *(bigger isn't always better, but it usually means more billable hours)* |
144
  | `filename` | Document name *(often more creative than you'd expect)* |
145
  | `file_url` | Document page URL *(your direct line to the source)* |
146
  | `file` | GCS file URI *(private, like a good secret)* |
147
+ | `extension` | txt, html, pdf, or txt_filing |
148
  | `file_content` | Text content (HTML) or base64 string for binary content (PDF) *(the good stuff)* |
149
 
150
+ Please be aware, `txt_filing` means the `file_content` is extracted from the text filing file instead of individual files. This happens to most filings before 2000.
151
 
152
  ### <span style="color: #e07a5f">Data Splits</span>
153
 
154
  There's no split by design – everything lives under <span style="color: #2c2c2c; background-color: #f4f3ee; padding: 2px 4px; border-radius: 3px;">`train`</span> because sometimes life is simpler that way. Feel free to create your own splits based on your specific needs <span style="color: #81b29a">*(and caffeine levels)*</span>.
155
 
156
+ By year:
157
+
158
+ ┌──────┬───────┐
159
+ │ year ┆ count │
160
+ │ --- ┆ --- │
161
+ │ i32 ┆ u32 │
162
+ ╞══════╪═══════╡
163
+ │ 1994 ┆ 6795 │
164
+ │ 1995 ┆ 9948 │
165
+ │ 1996 ┆ 19463 │
166
+ │ 1997 ┆ 28942 │
167
+ │ 1998 ┆ 30261 │
168
+ │ 1999 ┆ 30582 │
169
+ │ 2000 ┆ 30100 │
170
+ │ 2001 ┆ 30372 │
171
+ │ 2002 ┆ 32698 │
172
+ │ 2003 ┆ 35833 │
173
+ │ 2004 ┆ 40178 │
174
+ │ 2005 ┆ 54450 │
175
+ │ 2006 ┆ 53832 │
176
+ │ 2007 ┆ 51678 │
177
+ │ 2008 ┆ 52070 │
178
+ │ 2009 ┆ 49801 │
179
+ │ 2010 ┆ 43433 │
180
+ │ 2011 ┆ 42202 │
181
+ │ 2012 ┆ 16318 │
182
+ │ 2013 ┆ 38346 │
183
+ │ 2014 ┆ 38721 │
184
+ │ 2015 ┆ 39052 │
185
+ │ 2016 ┆ 36937 │
186
+ │ 2017 ┆ 34964 │
187
+ │ 2018 ┆ 34266 │
188
+ │ 2019 ┆ 33453 │
189
+ │ 2020 ┆ 35807 │
190
+ │ 2021 ┆ 40322 │
191
+ │ 2022 ┆ 36202 │
192
+ │ 2023 ┆ 35707 │
193
+ │ 2024 ┆ 35014 │
194
+ │ 2025 ┆ 21314 │
195
+ └──────┴───────┘
196
+
197
+ By extension:
198
+
199
+ ┌────────────┬────────┐
200
+ │ extension ┆ count │
201
+ │ --- ┆ --- │
202
+ │ str ┆ u32 │
203
+ ╞════════════╪════════╡
204
+ │ html ┆ 832627 │
205
+ │ txt ┆ 142355 │
206
+ │ txt_filing ┆ 140820 │
207
+ │ pdf ┆ 3259 │
208
+ └────────────┴────────┘
209
+
210
  ## <span style="color: #e07a5f">Dataset Creation</span>
211
 
212
  ### <span style="color: #e07a5f">Curation Rationale</span>