boost serialization it has 2 modes: intrusive and non intrusive intrusive mode non intrusive mode How does boost impl the 2 modes? A: By function over ...
分类:
其他好文 时间:
2020-04-21 15:28:44
阅读次数:
71
1、eval_config下的num_examples 的含义(类似ssd_mobilenet_v1_coco.config中的配置) 个人比较倾向于下面这种解释,但是 没有找到官方的说法:(What does _num_examples_ 2000_ mean in TensorFlow obje ...
分类:
其他好文 时间:
2020-04-21 15:10:50
阅读次数:
74
染色法判断二分图 算法流程 1.找到未染色的点,为他染色 2.检测所有与染色的点相连接的点,颜色相同,不是二分图,未被染色,为他染色 3.重复步骤1,2直到所有的点都被染色,或者已经判断出他不是二分图。 代码实现 ...
分类:
其他好文 时间:
2020-04-21 09:33:48
阅读次数:
58
1.定义 正则表达式使用某种预定义的模式去匹配一类具有共同特征的字符串,主要用于处理字符串,可以快速、准确地完成复杂的查找、替换等处理要求。 re模块提供了正则表达式操作所需要的的功能。 2.正则表达式语法 3.re模块主要方法 4.使用正则表达式对象 首先使用re模块的compile()方法将正则 ...
分类:
编程语言 时间:
2020-04-21 09:20:13
阅读次数:
66
var str = "aaaa"var reg = /(a)\1/g // 这里的“\1表示反向引用前面匹配的结果” var str = "aaaa"var reg = /(\w)\1/gstr.match(reg) // ["aa", "aa"](2) ["aa", "aa"] var str2 ...
分类:
其他好文 时间:
2020-04-18 18:58:18
阅读次数:
75
原文:https://blog.csdn.net/gufenchen/article/details/91383397 一、有时候我们用adb工具去连接安卓设备,或者模拟器的时候,会提示adb server version(31) doesn’t match this client(40)这样的提示 ...
分类:
数据库 时间:
2020-04-18 11:48:35
阅读次数:
290
What does `set -x` do? Take a look: help sethelp -m set | less set -x enables a mode of the shell where all executed commands are printed to the termi ...
分类:
系统相关 时间:
2020-04-17 23:42:11
阅读次数:
110
China Air Compressor : The size, power and CFM of the air compressor is not difficult to understand, but it does require some research to fully grasp. ...
分类:
其他好文 时间:
2020-04-17 15:50:44
阅读次数:
83
公司有几台测试服务器,由于公司运维也帮忙去做服务器报警,但是由于测试服务器本来性能和线上机器硬件就不一样,所以让运维老师去掉了测试服务器报警,我们自己使用prometheus监控几台测试服务器,当出现故障的时候把报警数据发送到企业微信中. prometheus介绍 Prometheus(普罗米修斯) ...
分类:
其他好文 时间:
2020-04-17 13:57:10
阅读次数:
75