Upload ./README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -76,6 +76,19 @@ print(f"COLUMNS IN DATA: {','.join(beancounter['train'][1000].keys())}\n")
|
|
| 76 |
print(f"EXCERPT: \n\n{beancounter['train'][1000]['text'][:1000]}")
|
| 77 |
```
|
| 78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
# Datasheet
|
| 80 |
|
| 81 |
Questions from the Datasheets for Datasets paper, v7.
|
|
|
|
| 76 |
print(f"EXCERPT: \n\n{beancounter['train'][1000]['text'][:1000]}")
|
| 77 |
```
|
| 78 |
|
| 79 |
+
## What fields are in the data?
|
| 80 |
+
The data contains seven fields:
|
| 81 |
+
|
| 82 |
+
1. `accession` - A unique identifier assigned to accepted EDGAR filings
|
| 83 |
+
2. `filename` - Each filing consists of one or more attachments. This is the filename of the specific attachment within the filing
|
| 84 |
+
3. `text` - Extracted text
|
| 85 |
+
4. `type_filing` - The type of the filing. A full index of SEC filing types can be found [here](https://www.sec.gov/submit-filings/forms-index)
|
| 86 |
+
5. `type_attachment` - The type of the attachment. For example, an 8-K filing will have a main "8-K" attachment but could also have exhibits of other types such as "EX-99"
|
| 87 |
+
6. `date` - The filing date assigned by the EDGAR system
|
| 88 |
+
7. `ts_accept` - The timestamp when the filing was accepted by the EDGAR system
|
| 89 |
+
|
| 90 |
+
Note that if a filing is accepted by EDGAR after the [filing deadline](https://www.sec.gov/submit-filings/filer-support-resources/how-do-i-guides/determine-status-my-filing#section1) then EDGAR will not disseminate the form until the next business day and the `date` assigned by the EDGAR system will be the next business day, i.e., after `ts_accept`.
|
| 91 |
+
|
| 92 |
# Datasheet
|
| 93 |
|
| 94 |
Questions from the Datasheets for Datasets paper, v7.
|