信用评分卡模型在国外是一种成熟的预测方法,尤其在信用风险评估以及金融风险控制领域更是得到了比较广泛的使用,其原理是将模型变量WOE编码方式离散化之后运用logistic回归模型进行的一种二分类变量的广义线性模型。
本文重点介绍模型变量WOE以及IV原理,为表述方便,本文将模型目标标量为1记为违约用户,对于目标变量为0记为正常用户;则WOE(weight
of Evidenc...
分类:
其他好文 时间:
2014-09-26 19:39:28
阅读次数:
430
樹鏈剖分學習blog:http://blog.csdn.net/jiangshibiao/article/details/24669751關於這題的學習blog:http://blog.csdn.net/acdreamers/article/details/10594121下面來說說樹鏈剖分の我的理...
分类:
其他好文 时间:
2014-09-25 12:27:18
阅读次数:
235
什么是Story Maps Story Maps 是轻量级、开源 Web 应用程序。 Story Maps 将使用 ArcGIS Online、Esri 基于云的制图系统创建的 Web 地图与多媒体内容、文本、照片、视频和音频相组合,以便您讲述有关世界的故事。 开源代码 采用的方式是在ArcGIS ...
分类:
其他好文 时间:
2014-09-24 17:18:57
阅读次数:
249
Problem Description
《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel...
分类:
其他好文 时间:
2014-09-22 17:39:12
阅读次数:
209
Problem Description
《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel ...
分类:
其他好文 时间:
2014-09-20 21:15:59
阅读次数:
267
写了1h的DFS,简直被自己的代码吓哭了。。不过起码还是思路清晰,QUQ~
说一下题意吧: 题意是求一条最长路,最多能经过一次转弯,并且其角度只能为90度。
拿第一个样例来说:(0,1)->(1,2)->【转弯】(2,1) ,所以答案是3.
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5024
代码如下:
#include
#in...
分类:
其他好文 时间:
2014-09-20 20:02:59
阅读次数:
272
Problem Description
《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel ...
分类:
其他好文 时间:
2014-09-20 18:59:59
阅读次数:
194
Aragorn's Story
Time Limit: 10000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2526 Accepted Submission(s): 709
Problem Description
Our protagonis...
分类:
其他好文 时间:
2014-09-16 17:25:40
阅读次数:
259
此题的大意:给定一幅有向图,求起点到终点(都是固定的)的不同的最短路有多少条。不同的最短路是说不能有相同的边,顶点可以重复。并且图含有平行边。 看了题以后,就想到暴力,但是暴力往往是不可取的。(暴力的最坏情况下的时间复杂度是O(n^3))。我说的暴力是求一次最短路以后,把最短路上的边全部去掉(...
分类:
其他好文 时间:
2014-09-16 00:08:29
阅读次数:
260
条款09:Never call virtual functions during construction or destruction。译:绝不在构造和析构过程调用virtual函数考虑如下代码:class BaseClass { public: BaseClass() { ...
分类:
编程语言 时间:
2014-09-12 20:34:44
阅读次数:
240