上一页 1 ··· 122 123 124 125 126 127 128 129 130 ··· 187 下一页
摘要: t 阅读全文
posted @ 2018-05-20 10:23 papering 阅读(215) 评论(0) 推荐(0)
摘要: https://mp.weixin.qq.com/s/MSR18sqUznuiUgUM5YkvZg 我们选择了Golang做为当前版本的开发语言,架构如下: 采用多进程单协程图片处理模型。图片库主要依赖的是GraphicsMagick,和少部分ImageMagick,通过封装cgo调用实现。 Gol 阅读全文
posted @ 2018-05-19 23:35 papering 阅读(271) 评论(0) 推荐(0)
摘要: feature_reduce_l = [i if re.search('\d', i) is None else i[0:re.search('\d', i).endpos - 1] for i in feature_l] # set 破坏了顺序 print(feature_reduce_l) print(list(set(feature_reduce_l))) featur... 阅读全文
posted @ 2018-05-19 23:14 papering 阅读(215) 评论(0) 推荐(0)
摘要: RFC 3629: UTF-8, a transformation format of ISO 10646 https://www.rfc-editor.org/rfc/rfc3629.html Unicode – The World Standard for Text and Emoji http 阅读全文
posted @ 2018-05-19 22:38 papering 阅读(194) 评论(0) 推荐(0)
摘要: abcadeaex ==>abcdex 阅读全文
posted @ 2018-05-19 17:30 papering 阅读(312) 评论(0) 推荐(0)
摘要: Linux查看系统配置常用命令 - 凉水代码 - 博客园 https://www.cnblogs.com/codewater/articles/1818210.html Linux查看系统配置常用命令 系统 # uname -a # 查看内核/操作系统/CPU信息# head -n 1 /etc/i 阅读全文
posted @ 2018-05-19 16:31 papering 阅读(476) 评论(0) 推荐(0)
摘要: 文件指针 阅读全文
posted @ 2018-05-19 15:34 papering 阅读(165) 评论(0) 推荐(0)
摘要: 为什么sparse representation比起其它成分分析方法(DFT,Wavelet)能得到更好的效果? - 知乎 https://www.zhihu.com/question/24124122/answer/50403932 2)Basis本身是不应该变成0的。稀疏表达是要求信号在该模型下 阅读全文
posted @ 2018-05-19 15:28 papering 阅读(257) 评论(0) 推荐(0)
摘要: TypeError unhashable type:'list' Get unique values from a list in python - Stack Overflow https://stackoverflow.com/questions/12897374/get-unique-valu 阅读全文
posted @ 2018-05-19 14:40 papering 阅读(406) 评论(0) 推荐(0)
摘要: 求伪逆 奇异值分解可以被用来计算矩阵的伪逆。若矩阵 M 的奇异值分解为 ,那么 M 的伪逆为 。 其中 是 的伪逆,并将其主对角线上每个非零元素都求倒数之后再转置得到的。求伪逆通常可以用来求解线性最小平方、最小二乘法问题。 平行奇异值 把频率选择性衰落信道进行分解。 矩阵近似值 奇异值分解在统计中的 阅读全文
posted @ 2018-05-19 09:54 papering 阅读(395) 评论(0) 推荐(0)
摘要: 稀疏表示_百度百科 https://baike.baidu.com/item/%E7%A8%80%E7%96%8F%E8%A1%A8%E7%A4%BA/16530498 信号稀疏表示是过去近20年来信号处理界一个非常引人关注的研究领域,众多研究论文和专题研讨会表明了该领域的蓬勃发展。信号稀疏表示的目 阅读全文
posted @ 2018-05-19 07:46 papering 阅读(1560) 评论(0) 推荐(0)
摘要: 通过spark rdd 求取 特征的稀疏向量 spark 类标签的稀疏 特征向量 - bonelee - 博客园 http://www.cnblogs.com/bonelee/p/7814081.html 阅读全文
posted @ 2018-05-19 07:43 papering 阅读(277) 评论(0) 推荐(0)
摘要: hadoop 迭代消耗大 每次迭代启动一个完整的MapReduce作业 spark 首要目标就是避免运算时 过多的网络和磁盘IO开销 Resilient Distributed Datasets http://www.cs.cmu.edu/~pavlo/courses/fall2013/static 阅读全文
posted @ 2018-05-19 07:38 papering 阅读(200) 评论(0) 推荐(0)
摘要: 大文本 通过 hadoop spark map reduce 获取 特征列 的 属性值 计算速度 阅读全文
posted @ 2018-05-18 23:33 papering 阅读(166) 评论(0) 推荐(0)
摘要: Python读取大文件(GB) - CSDN博客 https://blog.csdn.net/shudaqi2010/article/details/54017766 阅读全文
posted @ 2018-05-18 22:40 papering 阅读(311) 评论(0) 推荐(0)
摘要: Python获取CPU、内存使用率以及网络使用状态代码_python_脚本之家 http://www.jb51.net/article/134714.htm 阅读全文
posted @ 2018-05-18 22:29 papering 阅读(336) 评论(0) 推荐(0)
摘要: 业务的紧急程度 阅读全文
posted @ 2018-05-18 22:01 papering 阅读(210) 评论(0) 推荐(0)
摘要: pageA 有图片 a b c ... 由于网速限制,我怎样指定 先加载c 后加载a 最后加载 b呢,【下载顺序】 控制懒加载 lazy load 的顺序 就是在lazy load 的同时,控制顺序 jquery-lazyload延迟加载图片 及 加载顺序 bug 修复 - 吃饭了吗 - 博客园 h 阅读全文
posted @ 2018-05-18 22:00 papering 阅读(358) 评论(0) 推荐(0)
摘要: 用户特征文件 userFeature.data 每 行 代 表 一 个 用 户 的 特 征 数 据, 格 式 为: “uid|features”,uid 和 features 用竖线“|”分隔。其中 feature 采用 vowpal wabbit(https://github.com/JohnLa 阅读全文
posted @ 2018-05-18 21:45 papering 阅读(357) 评论(0) 推荐(0)
摘要: 数据 读写 函数 方法中 传参 业务逻辑中 重试次数 休息时间 灵活 阅读全文
posted @ 2018-05-18 12:02 papering 阅读(191) 评论(0) 推荐(0)
摘要: 批处理 而非 单个处理 阅读全文
posted @ 2018-05-18 11:45 papering 阅读(179) 评论(0) 推荐(0)
摘要: 一键切换 开关 生产 数据 和 测试数据的 分离 快速的测试 快速的数据结果 反馈 是提高工作效率的关键 方法之一 阅读全文
posted @ 2018-05-18 11:09 papering 阅读(244) 评论(0) 推荐(0)
摘要: 更新中的表 游标的控制 阅读全文
posted @ 2018-05-18 10:32 papering 阅读(137) 评论(0) 推荐(0)
摘要: #5KB/per结合数据库配置mylimit = 50 阅读全文
posted @ 2018-05-18 09:52 papering 阅读(332) 评论(0) 推荐(0)
摘要: 将去重逻辑从数据库剥离,交给代码执行环境,提高数据库生产效率 def get_produced_uid_l(produced_status, lim): q = 'SELECT uid FROM (SELECT uid,COUNT(1) AS c FROM {} WHERE status={} GROUP BY uid) AS t WHERE t.c>{}'.format(... 阅读全文
posted @ 2018-05-18 09:24 papering 阅读(362) 评论(0) 推荐(0)
摘要: ctr ffm 阅读全文
posted @ 2018-05-18 07:59 papering 阅读(149) 评论(0) 推荐(0)
摘要: 线程安全 阅读全文
posted @ 2018-05-18 07:59 papering 阅读(136) 评论(0) 推荐(0)
摘要: 谷歌开发者中文博客: TensorFlow 特征列介绍 http://developers.googleblog.cn/2017/12/tensorflow.html TensorFlow 特征列介绍 - CSDN博客 https://blog.csdn.net/jILRvRTrc/article/ 阅读全文
posted @ 2018-05-18 07:54 papering 阅读(283) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-05-17 20:56 papering 阅读(225) 评论(0) 推荐(0)
摘要: nohup 程序在后台运营 避免 xshell 卡死 [root@admin1 after_fc_distributed]# nohup /root/anaconda3/bin/python dataNode.py nohup: 忽略输入并把输出追加到"nohup.out" [root@admin1 阅读全文
posted @ 2018-05-17 20:17 papering 阅读(1602) 评论(0) 推荐(0)
摘要: 公司 硬件资源的非办公时间的算力整合 程序包 管理 发布与获取 数据的分散与集中 阅读全文
posted @ 2018-05-17 20:10 papering 阅读(212) 评论(0) 推荐(0)
摘要: linux - Run bash script as daemon - Stack Overflow https://stackoverflow.com/questions/19233529/run-bash-script-as-daemon # By default Redis does not 阅读全文
posted @ 2018-05-17 19:12 papering 阅读(181) 评论(0) 推荐(0)
摘要: HULK一线技术杂谈 https://mp.weixin.qq.com/s/MYA6l9V4BYIZO8Jgtds6GA 在具体进行讲解之前先介绍一下图像识别在测试中能够想到的引用场景: 测试过程中,通过对待测软件进行屏幕截图,采用图像识别算法识别截图中是否包含预定义的可操作控件,如果存在,则触发控 阅读全文
posted @ 2018-05-17 18:38 papering 阅读(781) 评论(0) 推荐(0)
摘要: -- 新进榜单,涨幅设为9999 -- 查出涨幅 SELECT shop_id,ranking,`change` FROM apprank_ranking_info WHERE stat_datetime="2024-06-03" AND rank_type = "bestseller" ORDER 阅读全文
posted @ 2018-05-17 18:01 papering 阅读(236) 评论(0) 推荐(0)
摘要: Database Eviction Policies - Redis Enterprise Software | Redis Labs https://redislabs.com/redis-enterprise-documentation/administering/database-operat 阅读全文
posted @ 2018-05-17 17:16 papering 阅读(262) 评论(0) 推荐(0)
摘要: height not divisible by 2 h.264 - FFMPEG (libx264) "height not divisible by 2" - Stack Overflow https://stackoverflow.com/questions/20847674/ffmpeg-li 阅读全文
posted @ 2018-05-17 17:02 papering 阅读(959) 评论(0) 推荐(0)
摘要: Redis数据“丢失”问题 - CSDN博客 https://blog.csdn.net/real_myth/article/details/52582739 Redis内存使用达到maxmemory设定值后玩家数据无法写入解决_数据库技术_Linux公社-Linux系统门户网站 https://w 阅读全文
posted @ 2018-05-17 15:50 papering 阅读(494) 评论(0) 推荐(0)
摘要: 任务下发 主节点脚本 任务管控脚本 [root@admin1 ~]# cat mytest.sh echo lovecode [root@admin1 ~]# cat myfor.sh #!/bin/shexe_f="bash mytest.sh"for((i=1;i<=10;i++));do ec 阅读全文
posted @ 2018-05-17 15:29 papering 阅读(281) 评论(0) 推荐(0)
摘要: shell 文件读取 if else 分支 字符串查找 模糊匹配 字符串截取 es 批处理 批删除 阅读全文
posted @ 2018-05-17 14:53 papering 阅读(1200) 评论(0) 推荐(0)
摘要: 统计数据产品消耗量与产量 注意join 方向 join中子查询 How to use subquery in JOIN operation in MySQL http://www.geeksengine.com/database/subquery/subquery-in-join-operation 阅读全文
posted @ 2018-05-17 09:30 papering 阅读(224) 评论(0) 推荐(0)
上一页 1 ··· 122 123 124 125 126 127 128 129 130 ··· 187 下一页