1. 指数名称 2. 样本选取方法 4. 待偿期分段子指数 6. 指数发布 7. 联系人
2022-08-04 09:01:43 574KB 软件/插件
1
X省信用联社计算机考试试题.pdf
2022-07-14 14:04:55 48KB 考试
商业银行使用个人信用信息基础数据库典型案例.doc
2022-07-13 13:06:12 22KB 考试
四大国有商业银行信用风险的数据分析.doc
2022-07-13 13:05:56 71KB 考试
某网贷行业贷款,包括信用违约标签(因变量)、建模所需的基础与加工字段(自变量)、相关用户的网络行为原始数据,关于信用评分模型的应用以及实现,进行信用评分卡构建,以此来对客户贷款进行风险预警。
2022-07-09 21:20:11 45.5MB Python,算法,风险预警
1
决策树分类算法在银行个人信用评级中的应用.pdf
2022-07-09 19:09:00 3.61MB 文档资料
网络上搜集的一些python信用评分卡代码,供大家参考,谢谢! 评分卡是信用风险评估和互联网金融领域常用的建模方法,并不简单对应于某种机器学习算法,而是一种通用建模框架。其原理是先将分箱后的原始数据进行特征工程变换,再使用线性模型建模。 评分卡建模理论通常适用于信用评估领域,例如信用卡风险评估和贷款发放业务。在其它领域,评分卡建模也可以作为分数评估,例如客服质量打分和芝麻信用打分。
2022-07-05 17:05:08 29KB python 评分卡 数据挖掘
1
机构信用代码管理系统操作说明V1.0[资料]
2022-07-03 14:04:55 1.19MB 文档资料
【2015年】电力客户信用风险管理系统成功案例
2022-07-01 21:07:21 43KB 文档资料
自定义View之仿支付宝芝麻信用分仪表盘效果,喜欢的话,请给个star,谢谢.使用添加项目依赖Add it in your root build.gradle at the end of repositories: allprojects {         repositories { ... maven { url "https://jitpack.io" }         }     } Add the dependency     dependencies {             compile 'com.github.HotBitmapGG:CreditSesameRingView:V1.0.2' }新版芝麻信用分使用     // The gradient color can define your own private final int[] mColors = new int[]{             0xFFFF80AB,             0xFFFF4081,             0xFFFF5177,             0xFFFF7997              }; // Set up the need to score mLayout = (RelativeLayout) view.findViewById(R.id.layout);       mButton = (Button) view.findViewById(R.id.btn);       newCreditSesameView = (NewCreditSesameView) view.findViewById(R.id.sesame_view);       mLayout.setBackgroundColor(mColors[0]);       mButton.setOnClickListener(new View.OnClickListener()       { @Override public void onClick(View view)            {                newCreditSesameView.setSesameValues(639);                startColorChangeAnim();            }       }); // The background color gradient animation Simply illustrates the effect Can customize according to your need public void startColorChangeAnim()      { ObjectAnimator animator = ObjectAnimator.ofInt(mLayout, "backgroundColor", mColors);          animator.setDuration(3000);          animator.setEvaluator(new ArgbEvaluator());          animator.start();      }旧版芝麻信用分使用      // Set up the need to score oldCreditSesameView = (OldCreditSesameView) view.findViewById(R.id.sesame_view);       mButton = (Button) view.findViewById(R.id.btn);       mButton.setOnClickListener(new View.OnClickListener()       { @Override public void onClick(View view)           {               oldCreditSesameView.setSesameValues(639);           }       });
2022-06-30 14:40:09 3.83MB 开源项目
1