来源地址:https://www.cnblogs.com/bjwu/p/9103002.html Filter-移除低均方差的特征 代码: from sklearn.feature_selection import VarianceThreshold X = [[0, 0, 1], [0, 1, 0 ...
分类:
其他好文 时间:
2020-03-20 13:11:21
阅读次数:
74
一、取消a标签在移动端点击时的蓝色 a{ -webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-user-select: none; -moz-user-focus: none; -moz-user-select: none; } ...
分类:
移动开发 时间:
2020-03-19 23:17:19
阅读次数:
131
KFold(n_split, shuffle, random_state) 参数:n_splits:要划分的折数 shuffle: 每次都进行shuffle,测试集中折数的总和就是训练集的个数 random_state:随机状态 from sklearn.model_selection import ...
分类:
其他好文 时间:
2020-03-18 22:01:32
阅读次数:
113
1.Worksheets("Sheet1").Range("A1").End(xlDown).Select '意思为自A1起,返回从上往下的最后一个非空单元格 此时返回的单元格是A2,写法也可以拆分: Worksheets("Sheet1").Range("A1").Select Selection ...
分类:
其他好文 时间:
2020-03-18 15:49:24
阅读次数:
192
因为本人平时喜欢看网络小说,但是喜欢看的文通过正经网站或者app都需要收费,让人很是不爽,所以...总之,百度网盘上资源很多。但是问题来了,这些资源肯定不会是作者自己流出的,也不应该是网站或app流出的,更不可能是读者手打的。所以,最大的可能就是上网站复制的。。。所以不明白为什么网站要允许复制。下面 ...
分类:
Web程序 时间:
2020-03-18 13:18:03
阅读次数:
91
第一步 新建mvc项目 第二步 在models下面新建模型利类 public class Product { public int ID { get; set; } public string Name { get; set; } public decimal Price { get; set; } ...
分类:
Web程序 时间:
2020-03-18 13:11:55
阅读次数:
70
一、EventLoop、EventLoopGroup概述 由下图所示,NioEventLop是EventLoop的一个具体实现,EventLoop是EventLoopGroup的一个属性,NioEventLoopGroup是EventLoopGroup的具体实现,都是基于ExecutorServic ...
分类:
Web程序 时间:
2020-03-18 09:19:19
阅读次数:
110
selectable为element-ui提供的属性,类型为 Function,Function 的返回值用来决定这一行的 CheckBox 是否可以勾选,返回true为可选,false为不可选。 <el-table-column type="selection" :selectable="chec ...
分类:
其他好文 时间:
2020-03-17 23:59:37
阅读次数:
289
/** * Log any invocation timeout, but don't stop server from running * 服务于服务提供者 */ @Activate(group = Constants.PROVIDER) public class TimeoutFilter im ...
分类:
其他好文 时间:
2020-03-16 17:34:03
阅读次数:
56
线性回归(又名普通最小二乘法) import mglearn from sklearn.linear_model import LinearRegression from sklearn.model_selection import train_test_split # X.shape->(60,1 ...
分类:
其他好文 时间:
2020-03-15 00:01:19
阅读次数:
89