Object Detection 定义: 对于给定图片与给定分类,一旦分类出现在了图片中,则用框框起来 方法: 1. 如果作为Regression有点棘手 2. Sliding Window : Apply a CNN to many different crops of the image 1) ...
分类:
其他好文 时间:
2020-06-09 20:09:44
阅读次数:
63
ES5对函数拓展了bind方法 作用:为函数绑定作用域(当函数执行的时候,改变函数的作用域,并传递参数) 目前为止改变作用域的方法|关键字: bind, call, apply, with, eval call与apply的区别 他们都是改变函数作用域的方法,都是在调用该方法的时候,执行函数并改变作 ...
分类:
移动开发 时间:
2020-06-09 12:53:36
阅读次数:
95
构造函数继承 1、子类通过apply方法或者call方法把this指向父类 js代码 function Parent(name, age) { this.name = name this.age = age } Parent.prototype.init = function(){ console. ...
分类:
其他好文 时间:
2020-06-08 16:14:44
阅读次数:
74
Give this: We have a wrongn classified point, how to move the line to come closer to the points? We apply learning rate and since wrong point is in po ...
分类:
其他好文 时间:
2020-06-08 00:57:01
阅读次数:
82
为什么使用Lambda表达式: Lambda是一个匿名函数,我们可以把Lambda表达式理解为是一段可以传递的代码(将代码像数据一样进行传递)。它是 JDK8 的一个新特性,可以取代大部分的匿名内部类,写出更优雅的 Java 代码,极大地优化代码结构。 JDK 也提供了大量的内置函数式接口供我们使用 ...
分类:
其他好文 时间:
2020-06-07 19:50:45
阅读次数:
56
fudandandembp:guest futantan$ python manage.py runserver File "manage.py", line 16 ) from exc ^ SyntaxError: invalid syntax 用python3 解决 fudandandembp: ...
分类:
其他好文 时间:
2020-06-07 16:33:00
阅读次数:
225
1.解密初步现在的软件都会与人工交互,提示信息就成为了一个切入点。CrackMe.exe中代码较少,很快找到切入点。修改跳转语句为nop ,"Patch program" → "Assemble" 修改汇编代码"Patch program"→"Apply paches to input file"保 ...
分类:
其他好文 时间:
2020-06-07 11:11:28
阅读次数:
68
<body> <div style="width: 200px;height: 200px;hotpink;"></div> <script> const fn = function(a,b){ console.log(this.name + this.age + "是个大傻瓜" + a + b ) ...
分类:
其他好文 时间:
2020-06-06 10:54:35
阅读次数:
165
背景: 使用VsCode +wepy框架开发微信小程序 操作: 分包 <config> { pages: [ 'pages/login/index', 'pages/qrcode/index', ], // 分包 , 红色字体为固定部分 'subPackages': [ { 'root': 'pag ...
分类:
微信 时间:
2020-06-04 19:27:00
阅读次数:
186
先看明白下边的例子 var name = '小王' var age = 17 var obj = { name: '小张', objAge: this.age, myFun: function () { console.log(`${this.name}年龄${this.age}`) } } con ...
分类:
移动开发 时间:
2020-06-04 19:21:32
阅读次数:
68