报错信息 原因 使用vagrant up启动虚拟机的时候,打包的虚拟机会保存在.vagrant.d/boxes目录下,这个文件夹默认是存放在系统盘上的C:/Users/{用户名}目录下的,如果box文件非常多的话,会造成空间不够。 解决 解决方案:把这个目录移到其它盘 1、将.vagrant.d文件 ...
分类:
其他好文 时间:
2019-02-11 12:20:49
阅读次数:
666
http://codeforces.com/blog/entry/62013 两个结论: 1.一定有一个箱子不用动。 2.不动的箱子一定是加权前缀和为S/2的那个。 1显然,2由1易得。 于是问题变为:求一段区间前缀和>S/2的第一个数的位置。显然先求出S/2,再线段树上二分即可,实现过程见代码。 ...
分类:
其他好文 时间:
2019-02-04 12:45:41
阅读次数:
178
题目链接:https://vjudge.net/problem/UVA-12657 题目大意:输入n,m 代表有n个盒子 每个盒子最开始按1~n排成一行 m个操作, 1 x y :把盒子x放到y的左边 2 x y: 把盒子x放到y 的右边 3 x y:调换x y盒子的位置 4 表示反转整条链 思路: ...
分类:
其他好文 时间:
2019-02-01 15:57:05
阅读次数:
151
目的:为了让训练效果更好 bagging:是一种并行的算法,训练多个分类器,取最终结果的平均值 f(x) = 1/M∑fm(x) boosting: 是一种串行的算法,根据前一次的结果,进行加权来提高训练效果 stacking; 是一种堆叠算法,第一步使用多个算法求出结果,再将结果作为特征输入到下一 ...
分类:
编程语言 时间:
2019-01-17 14:03:48
阅读次数:
272
layer.open({ id:'stacking_add', type:2, title:'添加堆叠设备', content: '/nc_dev_manage_index/stacking_add', ... ...
分类:
其他好文 时间:
2018-12-28 10:47:40
阅读次数:
394
XGboost,全称Extrem Gradient boost,极度梯度提升,是陈天奇大牛在GBDT等传统Boosting算法的基础上重新优化形成的,是Kaggle竞赛的必杀神器。 XGboost属于集成学习的模型,在集成学习中主要有三个算法,Bagging,Boosting和Stacking,Ba ...
分类:
其他好文 时间:
2018-12-27 13:11:57
阅读次数:
146
There are N boxes on the ground, which are labeled by numbers from 1 to N. The boxes are magical, the size of each one can be enlarged or reduced arbi ...
分类:
其他好文 时间:
2018-12-13 23:31:37
阅读次数:
196
发贴人 Sergio-Oracle 于2018-4-18 23:10:15在Oracle Linux Introduction How Does This Work? Requirements Before You Get Started Steps Clone the vagrant-boxes ...
分类:
数据库 时间:
2018-12-09 01:05:35
阅读次数:
143
views Windowing views provides support for creating dialog boxes and other kinds of windows through its Widget object. The developer creates a WidgetD ...
1 def cheese_and_crackers(cheese_count, boxes_of_crackers): 2 print(f"You have {cheese_count} cheese!") 3 print(f"You have {boxes_of_crackers} boxes f... ...
分类:
编程语言 时间:
2018-12-03 23:03:05
阅读次数:
199