pd_emm_cci_model/
├── model/ #Trainned model and parameters (pkl.)
│ ├── rho.pkl
│ ├── fwl_model.pkl
│ └── lifetime_pd_term_structure.pkl
├── notebooks/
│ ├── 01_data_preparation.ipynb
│ ├── 02_credit_cycle_index.ipynb
│ ├── 03_fwl_model.ipynb
│ └── 04_markov_liftetime.ipynb
├── src/
│ ├── data_prep.py
│ ├── migration_matrix_cci.py
│ ├── regression_model.py
│ ├── lifetime_model.py
│ ├── stats_testing.py
│ └── plot_function.py
├── data/
│ ├── processed/
| | ├── train_data.parquet #Not tracked by git
| | ├── migration_count.parquet
| | ├── average_matrix.parquet
| | ├── monthly_cci.parquet
| | ├── mev_transformed.parquet
| | └── mev_sign_transformed.parquet
│ └── raw/
| | ├── usedcar_transaction_score.parquet #Not tracked by git
| └── └── mev_data.csv
├── requirements.txt
└── README.md
The forward-looking model processes are finding the relationship between Credit Cycle Index (CCI, Z-Index) with macroeconomics varialbes (MEV). The processes are similar to others ODR Model but changed the dependence variabale from ODR to CCI. In this repository is not covered the forward-looking model but it can refer to this repository for the forward-looking model consideration.
The model back-testing of actual CCI and predicted CCI from the regression model have been displayed in the following section. The visualisation of model back-testing in the following:
Note: It is a ramdom selection model. No expert input in this model.
MIT · Built for learning purposes





