Table of Contents共性可变性分析需求矩阵 软件开发中最大的问题之一为:处理问题域中的变化。初次拿到软件需求,看似有一定规律,但也存在各种特殊情况。怎样发现共性,及其变化,Alan在他的书中(design patterns explained)中给出了两种方法:共性可变性分析,和需求知... ...
分类:
其他好文 时间:
2017-02-22 00:02:20
阅读次数:
180
http://mathworld.wolfram.com/Variance.html Variance For a single variate having a distribution with known population mean , the population variance , ...
分类:
其他好文 时间:
2016-12-30 14:21:37
阅读次数:
343
在机器学习中误差有三种来源 1.Noise(噪声) 2.Bias(偏差) 3.Variance(方差) 数据固有存在noise 偏差的定义 以预测房屋价格为例 用不同训练集训练的模型不同 用不同训练集训练模型最后的到的平均模型与真实模型的输出之差 方差指的不同训练集训练的模型与均值期望输出模型的差 ...
分类:
其他好文 时间:
2016-12-22 07:13:55
阅读次数:
281
Backtracking + Trie: referred to https://discuss.leetcode.com/topic/63516/explained-my-java-solution-using-trie-126ms-16-16 A better approach is to ch ...
分类:
其他好文 时间:
2016-12-20 07:20:32
阅读次数:
321
1.常见问题 1.1 什么是偏差与方差? 1.2 为什么会产生过拟合,有哪些方法可以预防或克服过拟合? 2.模型选择 3.特征选择 4.特征工程与数据预处理 ...
分类:
其他好文 时间:
2016-12-06 13:33:33
阅读次数:
675
Mispricing can be explained by the sum of the two components: true mispricing and estimation errorVe – P = (V – P) + (Ve – V) If the asset is expected ...
分类:
其他好文 时间:
2016-12-06 09:31:50
阅读次数:
225
1. The way to calculate the variance of a certain set of data: pts_mean = sum(nba_stats["pts"])/len(nba_stats['pts']) point_variance = 0 for i in nba_ ...
分类:
其他好文 时间:
2016-12-04 07:52:39
阅读次数:
250
1.The way to calculate the slope: the covariance of x and y divided by the variance of x from numpy import cov slope_density = cov(wine_quality["quali ...
分类:
其他好文 时间:
2016-12-02 07:58:34
阅读次数:
167
SAS Annotated Output GLM 在使用SAS过程中,proc glm步输出离差平方和有4种算法,分别是SS1 SS2 SS3 SS4 下面文章介绍了其中SS3的具体计算步骤和例子。 This page shows an example of analysis of variance ...
分类:
其他好文 时间:
2016-11-28 01:01:09
阅读次数:
186
可以把每个公式都化简,然后得到要维护的东西就是平方和,和前缀和,两个bit即可 不能cin,超时。IOS后都不行。 scanf用lld #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include ...
分类:
编程语言 时间:
2016-11-26 17:42:02
阅读次数:
194