2021年10月17日

【软考】CMMI的5个等级和22个过程域

摘要: ![](https://img2020.cnblogs.com/blog/754558/202110/754558-20211017143514911-408166758.jpg) ![](https://img2020.cnblogs.com/blog/754558/202110/754558-20211017143809619-1671269670.jpg) ![](https://img20 阅读全文

posted @ 2021-10-17 14:39 vmkash 阅读(457) 评论(0) 推荐(0) 编辑

2021年7月13日

正则表达式

摘要: 1 正则表达式 1.1 符号 1.1.1 行定位符 ^ 行开始 $ 行结尾 1.1.2 元字符 . 匹配除换行符以外的任意字符 \w 匹配字母、数字、下划线、汉字 [a-z0-9A-Z_] \W 匹配除字母、数字、下划线、汉字以外的字符 \s 匹配单个空白符,包括Tab键、Enter键 \S 匹配除 阅读全文

posted @ 2021-07-13 10:54 vmkash 阅读(45) 评论(0) 推荐(0) 编辑

2021年3月29日

sklearn 的 metrics

摘要: 【分类指标】 1.accuracy_score(y_true,y_pre) : 精度 2.auc(x, y, reorder=False) : ROC曲线下的面积;较大的AUC代表了较好的performance。 3.average_precision_score(y_true, y_score, 阅读全文

posted @ 2021-03-29 18:43 vmkash 阅读(177) 评论(0) 推荐(0) 编辑

2020年10月21日

霍夫丁不等式

摘要: $X_1,X_2,\cdots,X_n$为独立随机变量,且$X_i \in [a,b]$,随机变量的经验均值可表示为: \(\overline{X}=\frac{X_1+X_2+\cdots+X_n}{n}\) 霍夫丁不等式叙述如下: \((1)\forall t >0, P(\overline{X 阅读全文

posted @ 2020-10-21 17:32 vmkash 阅读(396) 评论(0) 推荐(0) 编辑

切比雪夫不等式

摘要: 如果X是一个随机变量且$X \in \mathbb,EX= \mu, DX=\sigma^2$,则 \(\mathbb{p}(|x-\mu| \geqslant \sigma t) \leqslant \frac{1}{t^2}\) 证明: \(P(|x-\mu| \geqslant \sigma 阅读全文

posted @ 2020-10-21 15:24 vmkash 阅读(610) 评论(0) 推荐(0) 编辑

霍夫丁不等式引理证明

摘要: 假设X是一个随机变量,取值于[a,b]区间,且E(X)=0,那么对于任意λ> 0 ,我们有: \(E(e^{\lambda x}) \leqslant e^{\frac{\lambda^2(b-a)^2}{8}}\) 对于凸函数 f(x) 有: \(f(x) \leqslant f(a) + \fr 阅读全文

posted @ 2020-10-21 14:56 vmkash 阅读(521) 评论(0) 推荐(1) 编辑

马尔科夫不等式:Markov Inequality

摘要: 马尔科夫不等式:Markov Inequality : X 是非负变量,则有: \(P(X \geqslant a) \leqslant \frac{E(X)}{a}\) 证明: $$E(X) = \int_{0}{+\infty}xf(x)dx\ =\int_{0}xf(x)dx + \int_{ 阅读全文

posted @ 2020-10-21 11:05 vmkash 阅读(821) 评论(0) 推荐(0) 编辑

2020年9月17日

Hoeffding Inequality 证明过程

摘要: ![](https://img2020.cnblogs.com/blog/754558/202009/754558-20200917004450667-637089958.jpg) ![](https://img2020.cnblogs.com/blog/754558/202009/754558-20200917004458806-864195824.jpg) ![](https://img202 阅读全文

posted @ 2020-09-17 00:46 vmkash 阅读(433) 评论(0) 推荐(0) 编辑

机器学习-1

摘要: ![](https://img2020.cnblogs.com/blog/754558/202009/754558-20200917003423142-1595109649.png) 阅读全文

posted @ 2020-09-17 00:34 vmkash 阅读(103) 评论(0) 推荐(0) 编辑

2018年11月27日

merge into 的用法

摘要: merge into 目标表 a using 源表 b on(a.条件字段1=b.条件字段1 and a.条件字段2=b.条件字段2 ……) when matched then update set a.更新字段=b.字段 when not macthed then insert into a(字段 阅读全文

posted @ 2018-11-27 16:36 vmkash 阅读(411) 评论(0) 推荐(0) 编辑

导航