MichaelDG commited on
Commit
c52cd46
·
0 Parent(s):

Update raw Item 1A text dataset

Browse files
Files changed (2) hide show
  1. README.md +188 -0
  2. data/item1a_raw.parquet +3 -0
README.md ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-generation
7
+ - feature-extraction
8
+ pretty_name: Raw SEC Item 1A Risk Factors Text
9
+ size_categories:
10
+ - "1K<n<10K"
11
+ tags:
12
+ - finance
13
+ - sec-filings
14
+ - 10-k
15
+ - risk-factors
16
+ - item-1a
17
+ - edgar
18
+ - raw-text
19
+ - document-corpus
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/item1a_raw.parquet
25
+ ---
26
+
27
+ # Raw SEC Item 1A Risk Factors Text
28
+
29
+ ## Dataset Summary
30
+
31
+ This dataset is an English-language corpus of Item 1A Risk Factors sections
32
+ from SEC Form 10-K annual filings. Each row represents one curated
33
+ company-year filing. The corpus was created for research on temporal changes
34
+ in corporate risk disclosure, with particular interest in environmental risk
35
+ language.
36
+
37
+ The dataset contains raw disclosure text only. It does not include
38
+ environmental enforcement records, annotations, model outputs, labels or
39
+ scores.
40
+
41
+ ## Supported Tasks
42
+
43
+ This is a document corpus, not a supervised benchmark. It can support document
44
+ representation learning, retrieval over risk-factor disclosures, topic
45
+ modeling, lexical analysis and temporal analysis of corporate risk language.
46
+
47
+ ## Languages
48
+
49
+ The text is English (`en`) and comes from U.S. SEC filings.
50
+
51
+ ## What Item 1A Means
52
+
53
+ SEC Form 10-K is the annual report that many U.S. public companies file with
54
+ the U.S. Securities and Exchange Commission. Item 1A is the Risk Factors
55
+ section of that filing. In this section, companies describe material
56
+ uncertainties that could affect their business, financial condition or future
57
+ results.
58
+
59
+ A risk factor is company-written disclosure about something that could go
60
+ wrong. It can cover regulation, litigation, commodity prices, climate exposure,
61
+ operations, supply chains, financing, cybersecurity, competition or broader
62
+ macroeconomic conditions. The text is useful for studying how firms describe
63
+ risk over time, but it is not evidence that a risk has already happened.
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Data Instances
68
+
69
+ Each example contains a document identifier and the extracted Item 1A text.
70
+
71
+ ```json
72
+ {
73
+ "file_name": "AEE_2019.txt",
74
+ "text": "<full Item 1A Risk Factors text>"
75
+ }
76
+ ```
77
+
78
+ ### Data Fields
79
+
80
+ The default config contains a two-column Parquet corpus:
81
+
82
+ | Field | Type | Description |
83
+ |---|---|---|
84
+ | `file_name` | string | Source raw file name in `TICKER_YEAR.txt` format. |
85
+ | `text` | string | Full raw Item 1A Risk Factors text. |
86
+
87
+ ### Data Splits
88
+
89
+ | Split | Rows |
90
+ |---|---:|
91
+ | train | 1,088 |
92
+
93
+ The dataset has one split because it is a raw document corpus rather than a
94
+ train, validation and test benchmark.
95
+
96
+ ## Dataset Statistics
97
+
98
+ | Field | Value |
99
+ |---|---:|
100
+ | Raw text rows | 1,088 |
101
+ | Companies identified from file names | 138 |
102
+ | Fiscal years identified from file names | 2015-2024 |
103
+ | Total raw words | 10,482,592 |
104
+ | Mean raw words per row | 9,635 |
105
+ | Total raw characters | 71,329,285 |
106
+
107
+ ## Dataset Creation
108
+
109
+ ### Source Data
110
+
111
+ | Source | Role in this dataset |
112
+ |---|---|
113
+ | SEC EDGAR Form 10-K filings | Original public annual reports filed by U.S. public companies. |
114
+ | Item 1A Risk Factors | The extracted section that contains company-written descriptions of material business risks. |
115
+ | `edgartools` | Retrieval and extraction helper used to access 10-K filings and resolve their Item 1A sections. |
116
+
117
+ The original language producers are public companies filing annual reports
118
+ with the U.S. Securities and Exchange Commission. The source records are
119
+ public Form 10-K filings available through SEC EDGAR.
120
+
121
+ ### Curation Rationale
122
+
123
+ The corpus was built to support analysis of how corporate risk-factor language
124
+ changes over time. Keeping the release at the raw Item 1A document level makes
125
+ the source text usable for different NLP tasks without imposing predefined
126
+ labels or scores.
127
+
128
+ ### Collection And Processing
129
+
130
+ Form 10-K annual filings were retrieved from SEC EDGAR. Item 1A sections were
131
+ resolved with `edgartools`, then retained as document-level observations when
132
+ the extracted risk-factor section was usable. The released text is not
133
+ whitespace-normalized, sentence-split, keyword filtered, labeled or scored.
134
+ Document identifiers preserve the `TICKER_YEAR.txt` naming convention used
135
+ during extraction.
136
+
137
+ ### Annotations
138
+
139
+ The dataset contains no human or machine annotations.
140
+
141
+ ## Loading
142
+
143
+ ```python
144
+ from datasets import load_dataset
145
+
146
+ docs = load_dataset("MichaelDG/esg-commitment-verifiability", split="train")
147
+ first_doc = docs[0]
148
+ print(first_doc["file_name"])
149
+ print(first_doc["text"][:500])
150
+ ```
151
+
152
+ ## Intended Use And Limitations
153
+
154
+ Use this dataset for NLP research on SEC risk-factor language. It can support
155
+ document representation learning, retrieval, topic modeling and temporal text
156
+ analysis.
157
+
158
+ The corpus is not representative of all public companies or all SEC filings.
159
+ It covers curated Item 1A documents from identified company-years in the
160
+ 2015-2024 fiscal-year window. Item 1A is broader than ESG disclosure.
161
+ Environmental language may be absent from some documents.
162
+
163
+ Risk-factor text is company-written disclosure about possible risks. It should
164
+ not be treated as evidence that a risk occurred, legal advice, investment
165
+ advice or an environmental performance score.
166
+
167
+ ## Personal And Sensitive Information
168
+
169
+ The dataset consists of public company filings. It is not designed to identify
170
+ private individuals, although source filings may contain names or legal matter
171
+ details when companies include them in public disclosures.
172
+
173
+ ## Licensing Information
174
+
175
+ The source texts come from public SEC filings. Users are responsible for
176
+ complying with SEC EDGAR access terms and any rights that may apply to the
177
+ source filing text.
178
+
179
+ ## Citation Information
180
+
181
+ Campbell, J. L., Chen, H., Dhaliwal, D. S., Lu, H. and Steele, L. B. (2014).
182
+ The information content of mandatory risk factor disclosures in corporate
183
+ filings. *Review of Accounting Studies*, 19(1), 396-455.
184
+ [https://doi.org/10.1007/s11142-013-9258-3](https://doi.org/10.1007/s11142-013-9258-3)
185
+
186
+ Loughran, T. and McDonald, B. (2011). When is a liability not a liability?
187
+ Textual analysis, dictionaries and 10-Ks. *Journal of Finance*, 66(1), 35-65.
188
+ [https://doi.org/10.1111/j.1540-6261.2010.01625.x](https://doi.org/10.1111/j.1540-6261.2010.01625.x)
data/item1a_raw.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e66ac5fa2f81da3e2fc78fcd5d5f2493188273d63d65139eb541fc846da30a14
3
+ size 30716384