- 博客(15)
- 收藏
- 关注
原创 Transformer系列:Pyramid Vision Transformer(PVT) v2 (CVMJ 2022)
PVTv2 reduces the computational complexity of PVTv1 to linear and achieves significant improvements on fundamental vision tasks
2022-06-23 15:54:04
1186
原创 Transformer系列:Pyramid Vision Transformer (ICCV2021)
PVT overcomes the difficulties of porting Transformer to various dense prediction tasks.
2022-06-23 11:29:52
2183
原创 Transformer系列:Shunted self-attention (CVPR2022 oral)
The key idea of SSA is to inject heterogeneous receptive field sizes into tokens: before computing the self-attention matrix, it selectively merges tokens to represent larger object features while keeping certain tokens to preserve fine-grained features.
2022-06-22 11:53:41
352
原创 Detection&Segmentation系列:AP Loss (TPAMI 2020)
文章地址:https://arxiv.org/pdf/2008.07294.pdf
2021-08-23 16:03:13
278
原创 Transformer系列:Classification --> ViT (ICLR2021)
1. Motivation2. Method3.Experiment
2021-06-10 20:55:55
998
2
原创 Python系列:装饰器decorator
在代码运行期间动态增加功能的方式,称之为“装饰器”(Decorator)。本质上,decorator就是一个返回函数的高阶函数。所以,我们要定义一个能打印日志的decorator,可以定义如下:观察上面的log,因为它是一个decorator,所以接受一个函数作为参数,并返回一个函数。我们要借助Python的@语法,把decorator置于函数的定义处:调用now()函数,不仅会运行now()函数本身,还会在运行now()函数前打印一行日志:经过decorator装饰..
2021-06-10 20:46:14
162
原创 Python系列:高阶函数
map()map()函数接收两个参数,一个是函数,一个是Iterable,map将传入的函数依次作用到序列的每个元素,并把结果作为新的Iterator返回。reduce()reduce把一个函数作用在一个序列[x1, x2, x3, ...]上,这个函数必须接收两个参数,reduce把结果继续和序列的下一个元素做累积计算.filter()filter()函数用于过滤序列,把传入的函数依次作用于每个元素,然后根据返回值是True还是False决定保留还是丢弃该元素。用filt..
2021-06-10 20:37:34
207
3
原创 linux系列:后台不挂断运行
nohup$ nohup command(shell命令) &nohup命令可以让你的shell命令忽略SIGHUP信号,即可以使之脱离终端运行;“&”可以让你的命令在后台运行。使用nohup命令后会自动在当前目录下生成一个nohup.out文件,用以记录command命令的进程,可以使用查看# jobs //查看任务,返回任务编号n和进程号# bg %n //将编号为n的任务转后台运行# fg %n //将编号为n的任务转前台运行# ctrl+z ..
2021-06-10 20:13:58
618
原创 Linux系列:远程操作 --> xrdp远程桌面
#安装xrdpsudo apt-get install xrdp#安装vnc4serversudo apt-get install vnc4server tightvncserver#安装xubuntu-desktopsudo apt-get install xubuntu-desktop#向xsession中写入xfce4-sessionecho “xfce4-session” >~/.xsession#开启xrdp服务sudo service ...
2021-06-10 19:56:37
379
原创 Linux系列:远程操作 --> ssh 配置
1. 配置文件用户配置文件在~/.ssh/config,没有的话新建一个。基本的写法是Host 名称(自己决定,方便输入记忆的) HostName IP Port为端口 User为用户名 IdentityFile为自己ID私钥之后只需输入ssh Host名称即可登录远程服务器...
2021-06-10 19:49:38
212
原创 Transformer系列:Detection--> Deformable DETR (ICLR2021)
文章地址:https://arxiv.org/pdf/2010.04159.pdf
2021-06-10 19:34:16
1514
4
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人