Focal Loss for Dense Object Detection ICCV2017 RBG和Kaiming大神的新作。 论文目标 我们知道object detection的算法主要可以分为两大类:two stage detector和one stage detector。前者是指 ...
分类:
Web程序 时间:
2019-03-17 13:44:13
阅读次数:
333
如何为变量起名 在计算机科学领域,有一句著名的格言(俏皮话): There are only two hard things in Computer Science: cache invalidation and naming things. 在计算机科学领域只有两件难事:缓存过期 和 给东西起名字 ...
分类:
编程语言 时间:
2019-03-16 12:48:00
阅读次数:
192
这道题要求算法时间复杂度为log(m+n)一般来讲这是二分法的复杂度,但两个数组之间交叉起来不能简单靠二分法来解决,必须进行合并,但一合并复杂度就是m+n,所以这题有点奇怪 我采用python来做,非常简单,也通过了,但是还是不清楚复杂度是如何判断的 ...
分类:
编程语言 时间:
2019-03-15 19:33:17
阅读次数:
238
Module: EEEM007 ADVANCED SIGNAL PROCESSINGYear: 2018/2019. Examiner: M D PlumbleyDate Due: 4pm Tue 12 March 2019 (Week 6)ASSIGNMENTConsider two equipr ...
分类:
其他好文 时间:
2019-03-14 20:03:15
阅读次数:
151
class Solution(object): def divide(self, dividend, divisor): """ :type dividend: int :type divisor: int :rtype: int """ ispositive = True ... ...
分类:
其他好文 时间:
2019-03-14 17:58:34
阅读次数:
160
一、常用的统计量: 均值mean()、中位数median()、众数mode()、分位数(上侧分位数、下侧分位数、四分位间距) ————四分位间距的求法:df[df<上界][df>下界] (上界:上侧分位数+K*四分位间距; 下界:上侧分位数+K*四分位间距) k指的是允许的形变 方差var(), 偏 ...
分类:
其他好文 时间:
2019-03-13 19:53:40
阅读次数:
214
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:
编程语言 时间:
2019-03-13 16:53:39
阅读次数:
231
题目:打印是one还是two 第一张情况:两个普通同步方法,打印结果是 OneTwo 第二种情况:在getOne方法中新增一个Thread.sleep()调用,打印结果 OneTwo 第三种情况:在Number类中新增一个普通方法,打印结果 ThreeOneTwo 第四种情况:两个普通同步方法,两个 ...
分类:
编程语言 时间:
2019-03-13 12:03:39
阅读次数:
136
注意题目条件:a balanced team, 仅保证大家水平差距不超过5即可,不管水平高低 ...
分类:
其他好文 时间:
2019-03-13 00:03:37
阅读次数:
200
题面: G. Back and Forth Input ?le: standard input Output ?le: standard output Time limit: 1 second Memory limit: 256 megabytes Farmer John has two milki ...
分类:
其他好文 时间:
2019-03-12 18:15:06
阅读次数:
180