上一页 1 ··· 122 123 124 125 126 127 128 129 130 ··· 273 下一页
摘要: xgboost的可以参考:https://xgboost.readthedocs.io/en/latest/gpu/index.html 整体看加速5-6倍的样子。 Gradient Boosting, Decision Trees and XGBoost with CUDA By Rory Mit 阅读全文
posted @ 2019-04-19 09:34 bonelee 阅读(535) 评论(0) 推荐(0)
摘要: 1.分割 -- split命令 可以指定按行数分割和按字节大小分割两种模式。 (1) 按行数分割 加上-d,使用数字后缀;加上--verbose,显示分割进度: (2) 按字节大小分割 2.合并 -- cat命令 例如: split -b 10m metadata.txt part_ cat par 阅读全文
posted @ 2019-04-17 11:33 bonelee 阅读(5402) 评论(0) 推荐(0)
摘要: class Solution: # @param nums: The integer array # @param target: Target number to find # @return the first position of target in nums, position start from 0 def binarySearch(self,... 阅读全文
posted @ 2019-04-13 11:19 bonelee 阅读(784) 评论(0) 推荐(0)
摘要: from:https://github.com/chuanconggao/PrefixSpan-py API Usage Alternatively, you can use the algorithms via API. from prefixspan import PrefixSpan db = 阅读全文
posted @ 2019-04-12 15:49 bonelee 阅读(3087) 评论(0) 推荐(0)
摘要: ue_procedure.avsc数据格式说明,python3 下的示例代码: 输出: {'imsi': 'UE001', 'time_at': '2018-04-09 12:15', 'procedures': [{'timestamp': '2019-04-09 12:01', 'procedu 阅读全文
posted @ 2019-04-09 17:05 bonelee 阅读(4051) 评论(0) 推荐(0)
摘要: 论文 技术分析《关于网络分层信息泄漏点快速检测仿真》 "1、基于动态阈值的泄露点快速检测方法,采样Mallat算法对网络分层信息的离散采样数据进行离散小波变换;利用滑动窗口对该尺度上的小波系数进行加窗处理,计算离散采样数据窗函数包含区间的小波熵,实现有效去噪和特征提取。2、将泄露点检测值和滑动窗口中 阅读全文
posted @ 2019-04-08 16:16 bonelee 阅读(3767) 评论(3) 推荐(1)
摘要: Deep learning: Dropout, DropConnect from:https://www.jianshu.com/p/b349c4c82da3 Dropout 训练神经网络模型时,如果训练样本比较少,为了防止模型过拟合,可以使用Dropout来一定程度的减少过拟合。Dropout是H 阅读全文
posted @ 2019-03-27 06:43 bonelee 阅读(1883) 评论(0) 推荐(0)
摘要: cmd = 'python extract_tls_flow.py -vr "{}" -o black/"{}.txt" >logs/black/"{}.log"'.format(filename, os.path.basename(filename), os.path.basename(filen 阅读全文
posted @ 2019-03-15 17:59 bonelee 阅读(3452) 评论(2) 推荐(1)
摘要: 原文见:http://packetlife.net/blog/2010/jun/7/understanding-tcp-sequence-acknowledgment-numbers/ from:https://blog.csdn.net/a19881029/article/details/3809 阅读全文
posted @ 2019-03-14 14:34 bonelee 阅读(1013) 评论(0) 推荐(0)
摘要: 转载 1.过滤IP,如来源IP或者目标IP等于某个IP 例子: ip.src eq 192.168.1.107 or ip.dst eq 192.168.1.107 或者 ip.addr eq 192.168.1.107 // 都能显示来源IP和目标IP Linux上运行的wireshark图形窗口 阅读全文
posted @ 2019-03-13 15:25 bonelee 阅读(2978) 评论(0) 推荐(0)
上一页 1 ··· 122 123 124 125 126 127 128 129 130 ··· 273 下一页