ttchopper commited on
Commit
a12f209
·
verified ·
1 Parent(s): ebc0bfe

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -100,13 +100,14 @@ No market prices or equity trading data are included, eliminating survivorship b
100
  ### 1-Year Targets
101
  - **Growth rates** (6): BVPS, equity, earnings, revenue, OCF, FCF growth
102
  - **Level/delta** (2): Forward ROE, margin expansion
103
- - **Binary** (5): ROA improved, fundamentals improved (≥3 of 5 metrics), value created (equity grew AND ROE>0), survived (filed Q+4 AND no bankruptcy in window), filed for bankruptcy (petition within 365 days)
104
 
105
  ### 2-Year Targets
106
  - **Growth rates** (6): Same metrics as 1-year, over 2-year horizon
107
- - **Binary** (2): Survived (filed Q+8 AND no bankruptcy in window), filed for bankruptcy (petition within 730 days)
108
 
109
  Survived and bankruptcy targets are mutually exclusive by construction. All targets are null when forward quarter data is unavailable.
 
110
 
111
  ### Rank-Transformed Targets (14 columns)
112
 
@@ -149,7 +150,24 @@ No market data providers. No third-party data. No equity pricing data.
149
 
150
  ### Bias Considerations
151
 
152
- - **No survivorship bias**: Uses only SEC filing data, not equity market prices
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  - **Temporal integrity**: Strict time-based splits prevent data leakage
154
  - **Sector bias**: Z'-Score thresholds may not be equally applicable across all sectors
155
  - **Financial firms excluded from Z'-Score**: Financial companies (SIC 6000-6999) have null Z'-Score values
@@ -174,6 +192,18 @@ The underlying SEC data is in the public domain.
174
 
175
  ## Changelog
176
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  ### v0.6.0 — 2026-04-17
178
  - **`bankruptcy_chapter` populated:** Chapter number (`"7"`, `"11"`, `"15"`, `"9"`)
179
  is now extracted from the 8-K Item 1.03 filing body for each bankrupt CIK and
 
100
  ### 1-Year Targets
101
  - **Growth rates** (6): BVPS, equity, earnings, revenue, OCF, FCF growth
102
  - **Level/delta** (2): Forward ROE, margin expansion
103
+ - **Binary** (5): ROA improved, fundamentals improved (≥3 of 5 metrics), value created (equity grew AND ROE>0), survived (filed Q+4 AND no bankruptcy in window; NULL when CIK is in dropout-cause cohort with cause ∈ {form_25_delisting, unexplained_dark} and the PIT gate is met — see Considerations), filed for bankruptcy (petition within 365 days)
104
 
105
  ### 2-Year Targets
106
  - **Growth rates** (6): Same metrics as 1-year, over 2-year horizon
107
+ - **Binary** (2): Survived (filed Q+8 AND no bankruptcy in window; NULL when CIK is in dropout-cause cohort with cause ∈ {form_25_delisting, unexplained_dark} and the PIT gate is met — see Considerations), filed for bankruptcy (petition within 730 days)
108
 
109
  Survived and bankruptcy targets are mutually exclusive by construction. All targets are null when forward quarter data is unavailable.
110
+ A third NULL state (CP-1 / v0.7.0) excludes Form-25 (M&A proxy) and unexplained-dark dropouts from the negative class to avoid mislabeling acquired companies as failed survivors.
111
 
112
  ### Rank-Transformed Targets (14 columns)
113
 
 
150
 
151
  ### Bias Considerations
152
 
153
+ - **Survivorship bias** (Audit C1 / C1.1, 2026-05-05/06): the panel is built from
154
+ SEC FSDS XBRL filings, so companies that stopped filing leave the panel
155
+ silently. An audit of the 2009Q2–2026Q1 window classified 8,847 stopped-filing
156
+ CIKs by cause: 54.4% Form-15 deregistration, 33.3% unexplained-dark,
157
+ 8.7% bankruptcy, 3.6% Form-25 delisting (M&A proxy). LoPucki BRD intersect
158
+ analysis (Audit C1.1) shows 21.4% of in-window Chapter 7/11 bankruptcies
159
+ (83/388) are entirely absent from the panel, concentrated 2009–2011 during
160
+ the XBRL ramp-up — a structural lower bound on missed bankruptcies.
161
+ - **Survival target NULL semantics** (CP-1 / v0.7.0): `target_survived_1y` and
162
+ `target_survived_2y` are set to NULL on rows where the CIK appears in the
163
+ bundled dropout-cause cohort with cause ∈ {`form_25_delisting`,
164
+ `unexplained_dark`} and the PIT gate is met (Form-25 `evidence_date` falls
165
+ inside the label horizon, or `unexplained_dark` always-NULL). This avoids
166
+ mislabeling acquired companies (Form-25 = M&A proxy) and unexplained
167
+ dropouts as failed survivors. Bankruptcy and Form-15 CIKs remain in the
168
+ negative class. The cohort artifact is shipped with the package at
169
+ `openfundex/cohorts/_data/dropout_causes.parquet` and regenerable via
170
+ `ofx cohorts refresh dropout-causes`.
171
  - **Temporal integrity**: Strict time-based splits prevent data leakage
172
  - **Sector bias**: Z'-Score thresholds may not be equally applicable across all sectors
173
  - **Financial firms excluded from Z'-Score**: Financial companies (SIC 6000-6999) have null Z'-Score values
 
192
 
193
  ## Changelog
194
 
195
+ ### v0.7.0 — 2026-05-14
196
+ - **`target_survived_{1y,2y}` NULL semantics widened (CP-1):** rows where the CIK
197
+ appears in the bundled dropout-cause cohort with cause ∈ {`form_25_delisting`,
198
+ `unexplained_dark`} and the PIT gate is met are now NULL instead of False.
199
+ This excludes M&A proxies and unknown-cause dropouts from the survival
200
+ negative class to avoid mislabeling acquired companies. Bankruptcy and
201
+ Form-15 CIKs remain negatives. Schema unchanged; this is a value-contract
202
+ change. See Considerations § Survivorship bias.
203
+ - New bundled package data: `src/openfundex/cohorts/_data/dropout_causes.parquet`
204
+ (8,847 CIKs classified by precedence). Regenerable via `ofx cohorts refresh
205
+ dropout-causes`.
206
+
207
  ### v0.6.0 — 2026-04-17
208
  - **`bankruptcy_chapter` populated:** Chapter number (`"7"`, `"11"`, `"15"`, `"9"`)
209
  is now extracted from the 8-K Item 1.03 filing body for each bankrupt CIK and
recent.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f303c0e91c69f0d5d4f9be64960c691706489047c6b61a2c391d5d924c048114
3
- size 9545521
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41b9469d2a64dd645e5d6aa188388f8edd605d09fb0823c2e34d1dcbaea191c4
3
+ size 9536514
recent_clean.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4f6074a5cc221a6c07acdb966282c6ab68195ce405e5545f8980b389c62a9930
3
- size 9327675
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ac9c658e0227427077ea406d162e50c713c6017f0a348c2d71c3f550911f5f0
3
+ size 9330889
test.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:eb537b0f57195397e4f8d09711916e717685cd8a4a0f1d6d676016e06e0bf65c
3
- size 13898057
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ff89488a34485fd793cbc2319179b3393d6deb08d811edb9d1873ef2dc9771e
3
+ size 13928783
test_clean.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:22fe5d6ddcaa44e1f6fc3b2da213e4028d3efb5fe0568d5983a449405baa3910
3
- size 13627554
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:987125e5e966d01e152d3841ae44bc70004db0e6768b0cabc9a229c8ad889c69
3
+ size 13596519
train.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2983c5806ffe8e6b61eca0d6a856ef4cc7785a539d7ce4d80067de7f5f13512c
3
- size 60792291
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea1fd9c3f06a137fb91922af9da9b8aae400d79ee789c63f6a61c40430e7f79c
3
+ size 60768585
train_clean.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:73ae1aad4bea561fbcaa12c0603736758f675f488ed2f971ae969340defa285b
3
- size 59558285
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6621db0a20448bac0abdb0e963d2c1535809e60b0eacbfeaa9aa05deec00f168
3
+ size 59555784
validation.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:60d3d1c985cfb3ab2c537ba2bc660a94795262edbe198247615a0b65124ad56a
3
- size 13349055
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49d3512ff9f397a5f7209fa271a38c366befffad0938f5dcfee553d17063b52e
3
+ size 13344228
validation_clean.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9bf7466deaedb85ca3d965e8ee5d74306bfa4160bd75c0b79fe44997ccfb4f66
3
- size 13026691
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d074a97fc3e0f88a718eba1f3d9f881846024500793f1cc422adbbc1455453ff
3
+ size 13042933