gitextract_wka03khu/ ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── CNAME │ ├── conf.py │ ├── index.rst │ ├── install.html │ ├── quickstart.md │ └── scorecardpipeline.rst ├── examples/ │ ├── auto_report.ipynb │ ├── automl_example.ipynb │ ├── cycle_end_vintage.sql │ ├── gbm_model_examples.ipynb │ ├── loan_replan.py │ ├── model_report/ │ │ ├── auto_eda.html │ │ ├── 三方数据测试报告.xlsx │ │ ├── 决策树组合策略挖掘.xlsx │ │ └── 评分卡模型报告.xlsx │ ├── month_end_vintage.sql │ ├── profitability_calculation.py │ ├── quickstart.ipynb │ ├── rule_efficiency.ipynb │ ├── rule_extraction.ipynb │ ├── rule_test.py │ ├── scorecard.pmml │ ├── scorecard_samples.ipynb │ ├── third_party_data_describe.ipynb │ ├── 同盾百融三方数据评分卡建模样例.ipynb │ ├── 数据分布情况.xlsx │ ├── 权益类产品盈利测算表.xlsx │ └── 特征选择.ipynb ├── requirements.txt ├── scorecardpipeline/ │ ├── __init__.py │ ├── auto_eda.py │ ├── auto_report.py │ ├── excel_writer.py │ ├── feature_engineering.py │ ├── feature_selection.py │ ├── financial.py │ ├── germancredit.csv │ ├── logger.py │ ├── model.py │ ├── processing.py │ ├── rule.py │ ├── rule_extraction.py │ ├── scorecard.py │ ├── template.xlsx │ └── utils.py └── setup.py