如何使用TensorFlow提供的models训练人脸识别的网络? 前提是我们已经有train和test的record数据格式文件 修改使用的网络,使其为我所用 文件路径:models/research/object_detection/samples/configs/ssd_resnet50_v1 ...
分类:
其他好文 时间:
2020-05-30 22:01:51
阅读次数:
86
思路 用HashMap类型的cache记录Cache的数据 用List类型的record 记录Cache的各个元素使用情况 record有点类似队列,方便起见,下文就以队列称呼。 对于cache中已有的元素: 若进行get put操作,就将该元素移到队列(record)的最后(即表示该数据最近使用过 ...
分类:
其他好文 时间:
2020-05-30 21:34:36
阅读次数:
48
springboot2.x+MyBatis-Plus+mysql5.7 动态拼接sql语句 分页查询 自定义sql 查询条件 分组 排序 ...
分类:
数据库 时间:
2020-05-30 16:02:06
阅读次数:
184
1 unit MainFM; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, 7 Vcl.Control ...
这个函数出现在了两个地方 includes\database\database.inc line 2245 includes\database\prefetch.inc line 481 foreach ($this as $record) { $record_key = is_object($re ...
分类:
其他好文 时间:
2020-05-29 17:38:10
阅读次数:
58
<Table dataSource={this.dataSources} columns={this.columns} onRow={(record) => {//表格行点击事件 return { // onClick: this.clickRow.bind(this,record), onMous ...
分类:
其他好文 时间:
2020-05-29 17:37:17
阅读次数:
113
书籍: 1. Student Solutions Manual for Nonlinear Dynamics and Chaos, 2nd edition http://93.174.95.29/main/B0EFCAD73D8C6552F24DCC7BBE380318 2. Nonlinear D ...
分类:
其他好文 时间:
2020-05-29 09:19:53
阅读次数:
135
wx.createInnerAudioContext() audio组件小程序不再使用,使用能力更强的 wx.createInnerAudioContext 接口 在js文件头部创建一个对象 const myaudio = wx.createInnerAudioContext(); 播放音乐 //播 ...
分类:
微信 时间:
2020-05-28 19:58:52
阅读次数:
186
Pod的升级和回滚 Deployment的升级 apiVersion: apps/v1beta1 kind: Deployment metadata: name: nginx-deployment namespace: test spec: replicas: 3 template: metadat ...
分类:
Web程序 时间:
2020-05-28 16:39:48
阅读次数:
85
方法一: class Solution { public int subarraysDivByK(int[] A, int K) { Map<Integer, Integer> record = new HashMap<>(); record.put(0, 1); int sum = 0, ans ...
分类:
编程语言 时间:
2020-05-27 23:17:46
阅读次数:
114