'''''''''类:具有相同特性和行为的对象抽象为类特性——》属性Property行为——》方法class:关键字'''class Boxes():#类的第一行格式 '''立方体类''' #文档说明 def __init__(self,lengthx,widthx,heightx):#传递类参数的 ...
分类:
编程语言 时间:
2020-02-25 18:04:45
阅读次数:
60
1 单词 parcel n. 包裹 pilot n. 试行计划 2 句子 1400 of the new boxes will be installed at 30 locations across the UK, including in Aberdeen and Cardiff, Belfast ...
分类:
其他好文 时间:
2020-01-31 21:05:35
阅读次数:
73
题目如下: Given n boxes, each box is given in the format [status, candies, keys, containedBoxes] where: status[i]: an integer which is 1 if box[i] is open ...
分类:
其他好文 时间:
2020-01-04 22:20:05
阅读次数:
86
GBDT(梯度提升迭代决策树) 总结 优先解决回归问题,将第一个数据的残差传入到第二个数据中去 构建下一个数据集的数据是上一个数据集的残差 详述 GBDT也是Boosting算法的一种,但是和AdaBoost算法不同;区别如下: AdaBoost算法是利用前一轮的弱学习器的误差来更新样本权重值,然后 ...
分类:
编程语言 时间:
2020-01-01 17:03:27
阅读次数:
195
Linux 好玩的命令 oneko boxes sl cmatrix cowsay ...
分类:
系统相关 时间:
2019-12-31 00:58:58
阅读次数:
96
今天偶尔看到了一篇文章讲z-index的, 有一些新的收获吧, 记录一下. 他给了一个例子: 显示结果: 现在要求把红色的放在最下面,但是不能改变html的顺序,也不能改变zindex和position. 解决方案放在最后. 决定元素在界面上显示前后顺序(z轴方向)的有: 但是在设置的时候还需要根据 ...
分类:
Web程序 时间:
2019-12-23 18:39:04
阅读次数:
100
Object References, Mutability, and Recycling 本章章节: Variables Are Not Boxes identity , Equality , Aliases Copies are shallow by default Function Parame ...
分类:
编程语言 时间:
2019-12-15 12:43:37
阅读次数:
71
1.来源 本质上 GBDT+LR 是一种具有 stacking 思想的二分类器模型,所以可以用来解决二分类问题。这个方法出自于 Facebook 2014 年的论文 Practical Lessons from Predicting Clicks on Ads at Facebook 。 2.使用场 ...
分类:
其他好文 时间:
2019-12-09 19:12:22
阅读次数:
181
The last two challenges used the flex-direction property set to row. This property can also create a column by vertically stacking the children of a f ...
分类:
Web程序 时间:
2019-12-08 23:33:55
阅读次数:
130
题解: 保存每个1的位置。然后记录1的总个数cnt,如果存在一个k使得这个k是每个集合的倍数,那么为了使操作次数最小,这个k应该是cnt的质因子。(因为都是每个集合的数目1,使每个集合的数目变为2需要的次数一定小于使每个集合数目变为4需要的次数) 枚举cnt的质因子x,即x个1构成一个新的集合。构成 ...
分类:
其他好文 时间:
2019-12-07 21:39:06
阅读次数:
74