kelvi23 commited on
Commit
5cf7ad9
·
verified ·
1 Parent(s): c4019f2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -3
README.md CHANGED
@@ -1,3 +1,29 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - tabular-regression
5
+ - finance
6
+ - settlement-fails
7
+ ---
8
+
9
+ # Fails-Forecasting v1 (XGBoost + LightGBM)
10
+
11
+ Predicts next-day settlement-fail notional for US Treasuries & corporates.
12
+
13
+ | metric | value |
14
+ |--------|-------|
15
+ | MAE | **4.2 bn** |
16
+ | RMSE | 5.8 bn |
17
+
18
+ ## Files
19
+ * `xgb_next_day_fails_model.joblib` – point prediction
20
+ * `lgb_quantile90_next_day_fails.joblib` – 90-percentile upper-bound
21
+
22
+ Trained on FINRA FTD + TRACE (2009-2025).
23
+
24
+ **Usage**
25
+
26
+ ```python
27
+ import joblib, pandas as pd
28
+ model = joblib.load("xgb_next_day_fails_model.joblib")
29
+ y_hat = model.predict(pd.DataFrame(...))