摘要: 1.Stand-Alone Self-Attention in Vision Models url:https://arxiv.org/abs/1906.05909 做了一个纯attention的网络,这里的attention是局部的,并且带了一个全局共享的relative position enc 阅读全文
posted @ 2021-07-30 21:04 John_Ran 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1.A Simple Framework for Contrastive Learning of Visual Representations url:https://arxiv.org/pdf/2002.05709.pdf 强Aug是做无监督的关键。Crop+Color jitter。搭配上Cot 阅读全文
posted @ 2021-07-20 14:44 John_Ran 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1.UNBIASED TEACHER FOR SEMI-SUPERVISED OBJECT DETECTION url:https://openreview.net/forum?id=MJIve1zgR_ code:https://github.com/facebookresearch/unbias 阅读全文
posted @ 2021-07-19 14:22 John_Ran 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 单阶段目标检测 EfficientDet:EfficientDet: Scalable and Efficient Object Detection url:https://arxiv.org/abs/1911.09070 引入了BiFPN,作者发现PANet涨点挺猛的。然后就在上面改一下,而且不能 阅读全文
posted @ 2021-07-19 11:42 John_Ran 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 分类: 1.Test-Agnostic Long-Tailed Recognition by Test-Time Aggregating Diverse Experts with Self-Supervision url:https://arxiv.org/pdf/2107.09249.pdf 大家 阅读全文
posted @ 2021-07-19 11:40 John_Ran 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 待补充 阅读全文
posted @ 2021-07-19 11:37 John_Ran 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 手写一个卷积操作 主要目的在于熟悉torch中的indexing操作。 首先,要介绍torch中的unfold操作。首先这个函数的输入必须是一个4-dimensional的tensor。还要设置 一些常用的参数,例如kernel_size, stride等等。然后就会被resize成为一个(B, C 阅读全文
posted @ 2021-03-17 10:41 John_Ran 阅读(253) 评论(0) 推荐(0) 编辑
摘要: Codeforces Round #686 (Div. 3) 给出一个错排。 题解:整体左移一位即可。 #include<bits/stdc++.h> using namespace std; int main(){ int _;cin>>_; while(_--){ int n;cin>>n; f 阅读全文
posted @ 2020-11-26 11:17 John_Ran 阅读(116) 评论(0) 推荐(0) 编辑
摘要: Codeforces Round #683 (Div. 2, by Meet IT) A,B过水。 C:给20w个数,给你一个数K,问你能不能在这20w个数里,找到若干个数使得它们的和超过ceil[K/2],且不超过K。 题解:如果20w个数中,有一个满足的,那直接白给。否则,在小于ceil[k/2 阅读全文
posted @ 2020-11-23 17:06 John_Ran 阅读(95) 评论(0) 推荐(0) 编辑
摘要: AtCoder Regular Contest 106 A:给一个N,找出一对数字使得3x+5y=N。或者说明无解。 题解:直接枚举x,看N-3^x是不是5的幂次就好了。 #include<bits/stdc++.h> using namespace std; map<long long, int> 阅读全文
posted @ 2020-10-26 16:38 John_Ran 阅读(123) 评论(0) 推荐(0) 编辑