Local Relation Networks for Image Recognition 英文详解
2022/3/19 23:31:02
本文主要是介绍Local Relation Networks for Image Recognition 英文详解,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Local Relation Network
Adapt filter according to the appearance affinity
Motivation
Meaningful and adaptive spatical aggregation
Humans have a remarkable ability to “see the infinite world with finite means” [26, 2].
- Recognition-by-components: a theory of human image understanding.
- W. von Humboldt. On Language: On the Diversity of Human Language Construction and Its Influence on the Mental Development of the Human Species. Cambridge Texts in the History of Philosophy. Cambridge University Press, 1999/1836.
Hierarchical features -> different levels of features
Rather than recognizing how elements can be meaningfully joined together, convolutional layers act as templates
1 filter -> 1 channel
it'a waste of channels.
local relation layer
locality
&geometric priors
- determine feature buttom up
Convolution Layers and its Evolution
-
accuracy-efficiency trade-off
- group convolution
- depth-wise convolution
-
enlarge receptive field
- dialated convolution
deformable convolution
- active convolution
-
relax the requirement for sharing weights(this is too rigid)
locally connected layers
(DeepFace)
-
Capsule Networks
self-enhancement
filter bubble
Given that we prefer to eschew negative experiences, it comes as no surprise that people avoid the immediate psychological discomfort from cognitive dissonance by simply not reading or listening to differing opinions.
- Self-Attention/ Graph Neural Networks
- for
long-range
context
- for
This work
- a new
feature extractor
- introducing the
compositionality
directly intorepresention
Some concepts
bottom-up
&top-down
aggregation
-
geometric prior
-
locality
Algorithm
Local-Relation Networks are LR-nets
Suppose
\(C = 24, m = 8, k = 7,C/m = 3\)
We observe no accuracy drop with up to 8 channels (default) sharing the same aggregation(for k)
\(H = 160,W = 160\)
In this architecture, receptive field is relevant to the concept of
Geometry Prior
Or rather, learned Geometry Prior is used withneighborhood
(similar to receptive field.)k is the
neighborhood size
Geometry Prior is analogous to conventionalconvolution filter
However, geometry prior is considered together with appearance composability, which brings about adaption from input
In other words, the geometry prior is conditioned on the input pixels' correlation.
-
Input Feature Map
24x160x160
- 1x1 conv
- Query:
3x160*160
(compress #channels from 24 to 3)- 160x160 points, every point has a
query
inc/m = 3
channels.
- 160x160 points, every point has a
- Key:
3x160*160
- with kernel size
k = 7
, there are manyregions
in key maps
- with kernel size
- Query:
- 1x1 conv
- Geometry Prior:
3x7x7
- for every
region/neighbor
- for every
- Geometry Prior:
- 1x1 conv
-
\(W_{neighbour} = \text{SoftMax}(\text{Geo.}+\text{App.})\)(Geometry and Appearance)
-
\(\text{pixel}_{x,y} = W_{neighbour}\text{Input}_{neighbour}\)
- \(neighbor\) is kernel of size
k
centered atx,y
(the source and target pixel position.)
- \(neighbor\) is kernel of size
-
All of the aggregation is performed in a receptive field of
kxk
Design and Analysis
\[W = \text{SoftMax}(\text{GeoPrior}+\text{AppearanceComposability}) \]- Locality
They claim that LR
(i.e. Local-Relation Layer) can utilize large kernels more effectively
This difference may be due to the representation power of convolution layer being bottlenecked by the number of fixed filters, hence there is no benefit from a larger kernel size.
Weight Sharing across different positions in an image limits the utilization of the representation power of large kernels.
- Appearance composability
While in previous works the query and key are vectors, in the local relation layer, we use scalars to represent them so that the computation and representation are lightweight.
- Geometric Prior
What is that?
这篇关于Local Relation Networks for Image Recognition 英文详解的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14Fetch / Axios学习:入门教程与实战指南
- 2024-11-14Typescript 类型课程入门教程
- 2024-11-14Fetch / Axios课程:初学者必看的网络请求教程
- 2024-11-14Styled-components课程:初学者指南
- 2024-11-13pre-commit 自动化测试课程:入门教程与实践指南
- 2024-11-13什么是AIGC?如何使用AIGC技术辅助办公?
- 2024-11-13Slicm 框架怎么进行用户认证?-icode9专业技术文章分享
- 2024-11-13在查询时将 map_coord 列的值转换为字符串有哪些方法?-icode9专业技术文章分享
- 2024-11-13如何将微信地区改成自定义文案?-icode9专业技术文章分享
- 2024-11-13DNS 缓存存在问题有哪些症状和解决方法?-icode9专业技术文章分享