ZHANGYUXUAN-zR commited on
Commit
22be8bc
·
verified ·
1 Parent(s): e39a340

Add files using upload-large-folder tool

Browse files
parse/train/5m3SEczOV8L/5m3SEczOV8L.md ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/5m3SEczOV8L/5m3SEczOV8L_content_list.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/5m3SEczOV8L/5m3SEczOV8L_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/5m3SEczOV8L/5m3SEczOV8L_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/Bkl5kxrKDr/Bkl5kxrKDr.md ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/Bkl5kxrKDr/Bkl5kxrKDr_content_list.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/Bkl5kxrKDr/Bkl5kxrKDr_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/Bkl5kxrKDr/Bkl5kxrKDr_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/H1ewdiR5tQ/H1ewdiR5tQ.md ADDED
@@ -0,0 +1,327 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # GRAPH WAVELET NEURAL NETWORK
2
+
3
+ Bingbing $\mathbf { X } \mathbf { u } ^ { 1 , 2 }$ , Huawei Shen1,2, Qi $\mathbf { C a o } ^ { 1 , 2 }$ , Yunqi $\mathbf { Q i u } ^ { 1 , 2 }$ & Xueqi Cheng1,2
4
+
5
+ 1CAS Key Laboratory of Network Data Science and Technology,
6
+ Institute of Computing Technology, Chinese Academy of Sciences;
7
+ 2School of Computer and Control Engineering,
8
+ University of Chinese Academy of Sciences
9
+ Beijing, China
10
+ {xubingbing,shenhuawei,caoqi,qiuyunqi,cxq}@ict.ac.cn
11
+
12
+ # ABSTRACT
13
+
14
+ We present graph wavelet neural network (GWNN), a novel graph convolutional neural network (CNN), leveraging graph wavelet transform to address the shortcomings of previous spectral graph CNN methods that depend on graph Fourier transform. Different from graph Fourier transform, graph wavelet transform can be obtained via a fast algorithm without requiring matrix eigendecomposition with high computational cost. Moreover, graph wavelets are sparse and localized in vertex domain, offering high efficiency and good interpretability for graph convolution. The proposed GWNN significantly outperforms previous spectral graph CNNs in the task of graph-based semi-supervised classification on three benchmark datasets: Cora, Citeseer and Pubmed.
15
+
16
+ # 1 INTRODUCTION
17
+
18
+ Convolutional neural networks (CNNs) (LeCun et al., 1998) have been successfully used in many machine learning problems, such as image classification (He et al., 2016) and speech recognition (Hinton et al., 2012), where there is an underlying Euclidean structure. The success of CNNs lies in their ability to leverage the statistical properties of Euclidean data, e.g., translation invariance. However, in many research areas, data are naturally located in a non-Euclidean space, with graph or network being one typical case. The non-Euclidean nature of graph is the main obstacle or challenge when we attempt to generalize CNNs to graph. For example, convolution is not well defined in graph, due to that the size of neighborhood for each node varies dramatically (Bronstein et al., 2017).
19
+
20
+ Existing methods attempting to generalize CNNs to graph data fall into two categories, spatial methods and spectral methods, according to the way that convolution is defined. Spatial methods define convolution directly on the vertex domain, following the practice of the conventional CNN. For each vertex, convolution is defined as a weighted average function over all vertices located in its neighborhood, with the weighting function characterizing the influence exerting to the target vertex by its neighbors (Monti et al., 2017). The main challenge is to define a convolution operator that can handle neighborhood with different sizes and maintain the weight sharing property of CNN. Although spatial methods gain some initial success and offer us a flexible framework to generalize CNNs to graph, it is still elusive to determine appropriate neighborhood.
21
+
22
+ Spectral methods define convolution via graph Fourier transform and convolution theorem. Spectral methods leverage graph Fourier transform to convert signals defined in vertex domain into spectral domain, e.g., the space spanned by the eigenvectors of the graph Laplacian matrix, and then filter is defined in spectral domain, maintaining the weight sharing property of CNN. As the pioneering work of spectral methods, spectral CNN (Bruna et al., 2014) exploited graph data with the graph Fourier transform to implement convolution operator using convolution theorem. Some subsequent works make spectral methods spectrum-free (Defferrard et al., 2016; Kipf & Welling, 2017; Khasanova & Frossard, 2017), achieving locality in spatial domain and avoiding high computational cost of the eigendecomposition of Laplacian matrix.
23
+
24
+ In this paper, we present graph wavelet neural network to implement efficient convolution on graph data. We take graph wavelets instead of the eigenvectors of graph Laplacian as a set of bases, and define the convolution operator via wavelet transform and convolution theorem. Graph wavelet neural network distinguishes itself from spectral CNN by its three desirable properties: (1) Graph wavelets can be obtained via a fast algorithm without requiring the eigendecomposition of Laplacian matrix, and thus is efficient; (2) Graph wavelets are sparse, while eigenvectors of Laplacian matrix are dense. As a result, graph wavelet transform is much more efficient than graph Fourier transform; (3) Graph wavelets are localized in vertex domain, reflecting the information diffusion centered at each node (Tremblay & Borgnat, 2014). This property eases the understanding of graph convolution defined by graph wavelets.
25
+
26
+ We develop an efficient implementation of the proposed graph wavelet neural network. Convolution in conventional CNN learns an individual convolution kernel for each pair of input feature and output feature, causing a huge number of parameters especially when the number of features is high. We detach the feature transformation from convolution and learn a sole convolution kernel among all features, substantially reducing the number of parameters. Finally, we validate the effectiveness of the proposed graph wavelet neural network by applying it to graph-based semi-supervised classification. Experimental results demonstrate that our method consistently outperforms previous spectral CNNs on three benchmark datasets, i.e., Cora, Citeseer, and Pubmed.
27
+
28
+ # 2 OUR METHOD
29
+
30
+ # 2.1 PRELIMINARY
31
+
32
+ Let $\mathcal { G } = \{ \mathbb { V } , \mathbb { E } , A \}$ be an undirected graph, where $\mathbb { V }$ is the set of nodes with $| \mathbb { V } | = n$ , $\mathbb { E }$ is the set of edges, and $\pmb { A }$ is adjacency matrix with $A _ { i , j } = A _ { j , i }$ to define the connection between node $i$ and node $j$ . The graph Laplacian matrix $\mathcal { L }$ is defined as $\overset { \vartriangle } { \boldsymbol { \mathcal { L } } } = \boldsymbol { D } - \boldsymbol { A }$ where $_ { D }$ is a diagonal degree matrix with $\textstyle D _ { i , i } = \sum _ { j } A _ { i , j }$ , and the normalized Laplacian matrix is ${ \cal L } = I _ { n } - { \cal D } ^ { - 1 / 2 } \bar { \cal A } { \cal D } ^ { - 1 / 2 }$ where ${ { I } _ { n } }$ is the identity matrix. Since $\pmb { L }$ is a real symmetric matrix, it has a complete set of orthonormal eigenvectors $U = \left( \ b { u } _ { 1 } , \ b { u } _ { 2 } , . . . , \ b { u } _ { n } \right)$ , known as Laplacian eigenvectors. These eigenvectors have associated real, non-negative eigenvalues $\{ \lambda _ { l } \} _ { l = 1 } ^ { n }$ , identified as the frequencies of graph. Eigenvectors associated with smaller eigenvalues carry slow varying signals, indicating that connected nodes share similar values. In contrast, eigenvectors associated with larger eigenvalues carry faster varying signals across connected nodes.
33
+
34
+ # 2.2 GRAPH FOURIER TRANSFORM
35
+
36
+ Taking the eigenvectors of normalized Laplacian matrix as a set of bases, graph Fourier transform of a signal $\pmb { x } \in R ^ { n }$ on graph $\mathcal { G }$ is defined as $\hat { \pmb x } = \pmb U ^ { \top } \pmb x$ , and the inverse graph Fourier transform is $\mathbf { \pmb { x } } = \pmb { U } \hat { \mathbf { x } }$ (Shuman et al., 2013). Graph Fourier transform, according to convolution theorem, offers us a way to define the graph convolution operator, denoted as $^ { \ast _ { \mathcal { G } } }$ . Denoting with $\textbf { { y } }$ the convolution kernel, $^ { \ast _ { \mathcal { G } } }$ is defined as
37
+
38
+ $$
39
+ \pmb { x } \ast _ { \mathscr { G } } \pmb { y } = \pmb { U } \big ( ( \pmb { U } ^ { \top } \pmb { y } ) \odot ( \pmb { U } ^ { \top } \pmb { x } ) \big ) ,
40
+ $$
41
+
42
+ where $\odot$ is the element-wise Hadamard product. Replacing the vector $\pmb { U } ^ { \top } \pmb { y }$ by a diagonal matrix $g _ { \theta }$ , then Hadamard product can be written in the form of matrix multiplication. Filtering the signal $x$ by the filter $g _ { \theta }$ , we can write Equation (1) as $U g _ { \theta } \pmb { U } ^ { \top } \pmb { x }$ .
43
+
44
+ However, there are some limitations when using Fourier transform to implement graph convolution: (1) Eigendecomposition of Laplacian matrix to obtain Fourier basis $U$ is of high computational cost with $\bar { O } ( n ^ { 3 } )$ ; (2) Graph Fourier transform is inefficient, since it involves the multiplication between a dense matrix $U$ and the signal $_ { \textbf { \em x } }$ ; (3) Graph convolution defined through Fourier transform is not localized in vertex domain, i.e., the influence to the signal on one node is not localized in its neighborhood. To address these limitations, ChebyNet (Defferrard et al., 2016) restricts convolution kernel $g _ { \theta }$ to a polynomial expansion
45
+
46
+ $$
47
+ g _ { \theta } = \sum _ { k = 0 } ^ { K - 1 } \theta _ { k } \Lambda ^ { k } ,
48
+ $$
49
+
50
+ where $K$ is a hyper-parameter to determine the range of node neighborhoods via the shortest path distance, $\theta \in \bar { R } ^ { \bar { K } }$ is a vector of polynomial coefficients, and $\Lambda = \mathrm { d i a g } \big ( \{ \lambda _ { l } \} _ { l = 1 } ^ { n } \big )$ . However, such a polynomial approximation limits the flexibility to define appropriate convolution on graph, i.e., with a smaller $K$ , it’s hard to approximate the diagonal matrix $g _ { \boldsymbol { \theta } }$ with $n$ free parameters. While with a larger $K$ , locality is no longer guaranteed. Different from ChebyNet, we address the aforementioned three limitations through replacing graph Fourier transform with graph wavelet transform.
51
+
52
+ # 2.3 GRAPH WAVELET TRANSFORM
53
+
54
+ Similar to graph Fourier transform, graph wavelet transform projects graph signal from vertex domain into spectral domain. Graph wavelet transform employs a set of wavelets as bases, defined as $\psi _ { s } = ( \psi _ { s 1 } , \psi _ { s 2 } , . . . , \psi _ { s n } )$ , where each wavelet $\psi _ { s i }$ corresponds to a signal on graph diffused away from node $i$ and $s$ is a scaling parameter. Mathematically, $\psi _ { s i }$ can be written as
55
+
56
+ $$
57
+ \psi _ { s } = U G _ { s } U ^ { \top } ,
58
+ $$
59
+
60
+ where $U$ is Laplacian eigenvectors, $G _ { s } \mathrm { = d i a g } \big ( g ( s \lambda _ { 1 } ) , . . . , g ( s \lambda _ { n } ) \big )$ is a scaling matrix and $g ( s \lambda _ { i } ) =$ $e ^ { \lambda _ { i } s }$ .
61
+
62
+ Using graph wavelets as bases, graph wavelet transform of a signal $_ { \textbf { \em x } }$ on graph is defined as ${ \hat { \mathbf { x } } } = { }$ ${ \psi } _ { s } ^ { - 1 } \bar { x }$ and the inverse graph wavelet transform is $\boldsymbol { x } = \psi _ { s } \hat { \pmb { x } }$ . Note that $\bar { \psi } _ { s } ^ { - 1 }$ can be obtained by simply replacing the $g ( s \lambda _ { i } )$ in $\psi _ { s }$ with $g ( - s \lambda _ { i } )$ corresponding to a heat kernel (Donnat et al., 2018). Replacing the graph Fourier transform in Equation (1) with graph wavelet transform, we obtain the graph convolution as
63
+
64
+ $$
65
+ \pmb { x } * _ { \mathscr { G } } \pmb { y } = \psi _ { s } ( ( \psi _ { s } ^ { - 1 } \pmb { y } ) \odot ( \psi _ { s } ^ { - 1 } \pmb { x } ) ) .
66
+ $$
67
+
68
+ Compared to graph Fourier transform, graph wavelet transform has the following benefits when being used to define graph convolution:
69
+
70
+ 1. High efficiency: graph wavelets can be obtained via a fast algorithm without requiring the eigendecomposition of Laplacian matrix. In Hammond et al. (2011), a method is proposed to use Chebyshev polynomials to efficiently approximate $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ , with the computational complexity $O ( m \times | \mathbb { E } | )$ , where $\lvert \mathbb { E } \rvert$ is the number of edges and $m$ is the order of Chebyshev polynomials.
71
+
72
+ 2. High spareness: the matrix $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ are both sparse for real world networks, given that these networks are usually sparse. Therefore, graph wavelet transform is much more computationally efficient than graph Fourier transform. For example, in the Cora dataset, more than $9 7 \%$ elements in $\psi _ { s } ^ { - 1 }$ are zero while only less than $1 \%$ elements in $U ^ { \top }$ are zero (Table 4).
73
+
74
+ 3. Localized convolution: each wavelet corresponds to a signal on graph diffused away from a centered node, highly localized in vertex domain. As a result, the graph convolution defined in Equation (4) is localized in vertex domain. We show the localization property of graph convolution in Appendix A. It is the localization property that explains why graph wavelet transform outperforms Fourier transform in defining graph convolution and the associated tasks like graph-based semisupervised learning.
75
+
76
+ ![](images/3babc8cc3ed3a06ed78d5a3fc82cb836ef0d897c86a6206ca71e5d2283c3d072.jpg)
77
+ Figure 1: Wavelets on an example graph at (a) small scale and (b) large scale.
78
+
79
+ 4. Flexible neighborhood: graph wavelets are more flexible to adjust node’s neighborhoods. Different from previous methods which constrain neighborhoods by the discrete shortest path distance, our method leverages a continuous manner, i.e., varying the scaling parameter $s$ . A small value of $s$ generally corresponds to a smaller neighborhood. Figure 1 shows two wavelet bases at different scale on an example network, depicted using GSP toolbox (Perraudin et al., 2014).
80
+
81
+ # 2.4 GRAPH WAVELET NEURAL NETWORK
82
+
83
+ Replacing Fourier transform with wavelet transform, graph wavelet neural network (GWNN) is a multi-layer convolutional neural network. The structure of the $m$ -th layer is
84
+
85
+ $$
86
+ { \pmb X } _ { [ : , j ] } ^ { m + 1 } = h ( \psi _ { s } \sum _ { i = 1 } ^ { p } { \pmb F } _ { i , j } ^ { m } \psi _ { s } ^ { - 1 } { \pmb X } _ { [ : , i ] } ^ { m } ) \qquad j = 1 , \cdots , q ,
87
+ $$
88
+
89
+ where $\psi _ { s }$ is wavelet bases, $\psi _ { s } ^ { - 1 }$ is the graph wavelet transform matrix at scale $s$ which projects signal in vertex domain into spectral domain, $X _ { [ : , i ] } ^ { m }$ with dimensions $n \times 1$ is the $i$ -th column of ${ \pmb X } ^ { m }$ , ${ \bf \it F } _ { i , j } ^ { m }$ is a diagonal filter matrix learned in spectral domain, and $h$ is a non-linear activation function. This layer transforms an input tensor ${ \pmb X } ^ { m }$ with dimensions $n \times p$ into an output tensor $X ^ { m + 1 }$ with dimensions $n \times q$ .
90
+
91
+ In this paper, we consider a two-layer GWNN for semi-supervised node classification on graph. The formulation of our model is
92
+
93
+ $$
94
+ \mathrm { f i r s t ~ l a y e r : ~ } X _ { [ : , j ] } ^ { 2 } = \mathrm { R e L U } ( \psi _ { s } \sum _ { i = 1 } ^ { p } F _ { i , j } ^ { 1 } \psi _ { s } ^ { - 1 } X _ { [ : , i ] } ^ { 1 } ) \qquad j = 1 , \cdots , q ,
95
+ $$
96
+
97
+ $$
98
+ \mathrm { s e c o n d l a y e r : ~ } Z _ { j } = \mathrm { s o f t m a x } ( \psi _ { s } \sum _ { i = 1 } ^ { q } F _ { i , j } ^ { 2 } \psi _ { s } ^ { - 1 } X _ { [ : , \ : , i ] } ^ { 2 } ) \qquad j = 1 , \cdots , c ,
99
+ $$
100
+
101
+ where $c$ is the number of classes in node classification, $z$ of dimensions $n \times c$ is the prediction result. The loss function is the cross-entropy error over all labeled examples:
102
+
103
+ $$
104
+ \boldsymbol { L o s s } = - \sum _ { l \in y _ { L } } \sum _ { i = 1 } ^ { c } Y _ { l i } \mathrm { l n } { \boldsymbol { Z } _ { l i } } ,
105
+ $$
106
+
107
+ where $y _ { L }$ is the labeled node set, $Y _ { l i } = 1$ if the label of node $l$ is $i$ , and ${ Y _ { l i } } = 0$ otherwise. The weights $\pmb { F }$ are trained using gradient descent.
108
+
109
+ # 2.5 REDUCING PARAMETER COMPLEXITY
110
+
111
+ In Equation (5), the parameter complexity of each layer is $O ( n \times p \times q )$ , where $n$ is the number of nodes, $p$ is the number of features of each vertex in current layer, and $q$ is the number of features of each vertex in next layer. Conventional CNN methods learn convolution kernel for each pair of input feature and output feature. This results in a huge number of parameters and generally requires huge training data for parameter learning. This is prohibited for graph-based semi-supervised learning. To combat this issue, we detach the feature transformation from graph convolution. Each layer in GWNN is divided into two components: feature transformation and graph convolution. Spectially, we have
112
+
113
+ $$
114
+ \begin{array} { c } { { \mathrm { f e a t u r e ~ t r a n s f o r m a t i o n : } ~ { \cal X } ^ { m ^ { \prime } } = { \cal X } ^ { m } { \cal W } , } } \\ { { \mathrm { g r a p h ~ c o n v o l u t i o n : } ~ { \cal X } ^ { m + 1 } = h ( \psi _ { s } { \cal F } ^ { m } \psi _ { s } ^ { - 1 } { \cal X } ^ { m ^ { \prime } } ) . } } \end{array}
115
+ $$
116
+
117
+ where $W \in \mathbb { R } ^ { p \times q }$ is the parameter matrix for feature transformation, $X ^ { m ^ { \prime } }$ with dimensions $n \times q$ is the feature matrix after feature transformation, ${ \pmb F } ^ { m }$ is the diagonal matrix for graph convolution kernel, and $h$ is a non-linear activation function.
118
+
119
+ After detaching feature transformation from graph convolution, the parameter complexity is reduced from $O ( n \times p \times q )$ to $O ( n + p \times q )$ . The reduction of parameters is particularly valuable fro graphbased semi-supervised learning where labels are quite limited.
120
+
121
+ # 3 RELATED WORKS
122
+
123
+ Graph convolutional neural networks on graphs. The success of CNNs when dealing with images, videos, and speeches motivates researchers to design graph convolutional neural network on graphs. The key of generalizing CNNs to graphs is defining convolution operator on graphs. Existing methods are classified into two categories, i.e., spectral methods and spatial methods.
124
+
125
+ Spectral methods define convolution via convolution theorem. Spectral CNN (Bruna et al., 2014) is the first attempt at implementing CNNs on graphs, leveraging graph Fourier transform and defining convolution kernel in spectral domain. Boscaini et al. (2015) developed a local spectral CNN approach based on the graph Windowed Fourier Transform. Defferrard et al. (2016) introduced a Chebyshev polynomial parametrization for spectral filter, offering us a fast localized spectral filtering method. Kipf & Welling (2017) provided a simplified version of ChebyNet, gaining success in graph-based semi-supervised learning task. Khasanova & Frossard (2017) represented images as signals on graph and learned their transformation invariant representations. They used Chebyshev approximations to implement graph convolution, avoiding matrix eigendecomposition. Levie et al. (2017) used rational functions instead of polynomials and created anisotropic spectral filters on manifolds.
126
+
127
+ Spatial methods define convolution as a weighted average function over neighborhood of target vertex. GraphSAGE takes one-hop neighbors as neighborhoods and defines the weighting function as various aggregators over neighborhood (Hamilton et al., 2017). Graph attention network (GAT) proposes to learn the weighting function via self-attention mechanism (Velickovic et al., 2017). MoNet offers us a general framework for design spatial methods, taking convolution as the weighted average of multiple weighting functions defined over neighborhood (Monti et al., 2017). Some works devote to making graph convolutional networks more powerful. Monti et al. (2018) alternated convolutions on vertices and edges, generalizing GAT and leading to better performance. GraphsGAN (Ding et al., 2018) generalizes GANs to graph, and generates fake samples in low-density areas between subgraphs to improve the performance on graph-based semi-supervised learning.
128
+
129
+ Graph wavelets. Sweldens (1998) presented a lifting scheme, a simple construction of wavelets that can be adapted to graphs without learning process. Hammond et al. (2011) proposed a method to construct wavelet transform on graphs. Moreover, they designed an efficient way to bypass the eigendecomposition of the Laplacian and approximated wavelets with Chebyshev polynomials. Tremblay & Borgnat (2014) leveraged graph wavelets for multi-scale community mining by modulating a scaling parameter. Owing to the property of describing information diffusion, Donnat et al. (2018) learned structural node embeddings via wavelets. All these works prove that graph wavelets are not only local and sparse but also valuable for signal processiong on graph.
130
+
131
+ # 4 EXPERIMENTS
132
+
133
+ # 4.1 DATASETS
134
+
135
+ To evaluate the proposed GWNN, we apply GWNN on semi-supervised node classification, and conduct experiments on three benchmark datasets, namely, Cora, Citeseer and Pubmed (Sen et al., 2008). In the three citation network datasets, nodes represent documents and edges are citation links. Details of these datasets are demonstrated in Table 1. Here, the label rate denotes the proportion of labeled nodes used for training. Following the experimental setup of GCN (Kipf & Welling, 2017), we fetch 20 labeled nodes per class in each dataset to train the model.
136
+
137
+ Table 1: The Statistics of Datasets
138
+
139
+ <table><tr><td>Dataset</td><td>Nodes</td><td>Edges</td><td>Classes</td><td>Features</td><td>Label Rate</td></tr><tr><td>Cora</td><td>2,708</td><td>5,429</td><td>7</td><td>1,433</td><td>0.052</td></tr><tr><td>Citeseer</td><td>3,327</td><td>4,732</td><td>6</td><td>3,703</td><td>0.036</td></tr><tr><td>Pubmed</td><td>19,717</td><td>44,338</td><td>3</td><td>500</td><td>0.003</td></tr></table>
140
+
141
+ # 4.2 BASELINES
142
+
143
+ We compare with several traditional semi-supervised learning methods, including label propagation (LP) (Zhu et al., 2003), semi-supervised embedding (SemiEmb) (Weston et al., 2012), manifold regularization (ManiReg) (Belkin et al., 2006), graph embeddings (DeepWalk) (Perozzi et al., 2014), iterative classification algorithm (ICA) (Lu & Getoor, 2003) and Planetoid (Yang et al., 2016).
144
+
145
+ Furthermore, along with the development of deep learning on graph, graph convolutional networks are proved to be effective in semi-supervised learning. Since our method is a spectral method based on convolution theorem, we compare it with the Spectral CNN (Bruna et al., 2014). ChebyNet (Defferrard et al., 2016) and GCN (Kipf & Welling, 2017), two variants of the Spectral CNN, are also included as our baselines. Considering spatial methods, we take MoNet (Monti et al., 2017) as our baseline, which also depends on Laplacian matrix.
146
+
147
+ # 4.3 EXPERIMENTAL SETTINGS
148
+
149
+ We train a two-layer graph wavelet neural network with 16 hidden units, and prediction accuracy is evaluated on a test set of 1000 labeled samples. The partition of datasets is the same as GCN (Kipf & Welling, 2017) with an additional validation set of 500 labeled samples to determine hyper-parameters.
150
+
151
+ Weights are initialized following Glorot & Bengio (2010). We adopt the Adam optimizer (Kingma & Ba, 2014) for parameter optimization with an initial learning rate $l r = 0 . 0 1$ . For computational efficiency, we set the elements of $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ smaller than a threshold $t$ to 0. We find the optimal hyper-parameters $s$ and $t$ through grid search, and the detailed discussion about the two hyperparameters is introduced in Appendix B. For Cora, $s = 1 . 0$ and $t = 1 e - 4$ . For Citeseer, $s = 0 . 7$ and $t = 1 e - 5$ . For Pubmed, $s = 0 . 5$ and $t = 1 e - 7$ . To avoid overfitting, dropout (Srivastava et al., 2014) is applied. Meanwhile, we terminate the training if the validation loss does not decrease for 100 consecutive epochs.
152
+
153
+ # 4.4 ANALYSIS ON DETACHING FEATURE TRANSFORMATION FROM CONVOLUTION
154
+
155
+ Since the number of parameters for the undetached version of GWNN is $O ( n \times p \times q )$ , we can hardly implement this version in the case of networks with a large number $n$ of nodes and a huge number $p$ of input features. Here, we validate the effectiveness of detaching feature transformation form convolution on ChebyNet (introduced in Section 2.2), whose parameter complexity is $O ( K \times$ $p \times q \rangle$ . For ChebyNet of detaching feature transformation from graph convolution, the number of parameters is reduced to $O ( K + p \times q )$ . Table 2 shows the performance and the number of parameters on three datasets. Here, the reported performance is the optimal performance varying the order $K = 2 , 3 , 4$ .
156
+
157
+ Table 2: Results of Detaching Feature Transformation from Convolution
158
+
159
+ <table><tr><td></td><td>Method</td><td>Cora</td><td>Citeseer</td><td>Pubmed</td></tr><tr><td rowspan="2">Prediction Accuracy</td><td>ChebyNet</td><td>81.2%</td><td>69.8%</td><td>74.4%</td></tr><tr><td>Detaching-ChebyNet</td><td>81.6%</td><td>68.5%</td><td>78.6%</td></tr><tr><td rowspan="2">Number of Parameters</td><td>ChebyNet</td><td>46.080 (K=2)</td><td>178,032 (K=3)</td><td>24,144 (K=3)</td></tr><tr><td>Detaching-ChebyNet</td><td>23,048 (K=4)</td><td>59,348 (K=2)</td><td>8,054 (K=3)</td></tr></table>
160
+
161
+ As demonstrated in Table 2, with fewer parameters, we improve the accuracy on Pubmed by a large margin. This is due to that the label rate of Pubmed is only 0.003. By detaching feature transformation from convolution, the parameter complexity is significantly reduced, alleviating overfitting in semi-supervised learning and thus remarkably improving prediction accuracy. On Citeseer, there is a little drop on the accuracy. One possible explanation is that reducing the number of parameters may restrict the modeling capacity to some degree.
162
+
163
+ # 4.5 PERFORMANCE OF GWNN
164
+
165
+ We now validate the effectiveness of GWNN with detaching technique on node classification. Experimental results are reported in Table 3. GWNN improves the classification accuracy on all the three datasets. In particular, replacing Fourier transform with wavelet transform, the proposed GWNN is comfortably ahead of Spectral CNN, achieving $1 0 \%$ improvement on Cora and Citeseer, and $5 \%$ improvement on Pubmed. The large improvement could be explained from two perspectives: (1) Convolution in Spectral CNN is non-local in vertex domain, and thus the range of feature diffusion is not restricted to neighboring nodes; (2) The scaling parameter $s$ of wavelet transform is flexible to adjust the diffusion range to suit different applications and different networks. GWNN consistently outperforms ChebyNet, since it has enough degree of freedom to learn the convolution kernel, while ChebyNet is a kind of approximation with limited degree of freedom. Furthermore, our GWNN also performs better than GCN and MoNet, reflecting that it is promising to design appropriate bases for spectral methods to achieve good performance.
166
+
167
+ Table 3: Results of Node Classification
168
+
169
+ <table><tr><td>Method</td><td>Cora</td><td>Citeseer</td><td>Pubmed</td></tr><tr><td>MLP</td><td>55.1%</td><td>46.5%</td><td>71.4%</td></tr><tr><td>ManiReg</td><td>59.5%</td><td>60.1%</td><td>70.7%</td></tr><tr><td>SemiEmb</td><td>59.0%</td><td>59.6%</td><td>71.7%</td></tr><tr><td>LP</td><td>68.0%</td><td>45.3%</td><td>63.0%</td></tr><tr><td>DeepWalk</td><td>67.2%</td><td>43.2%</td><td>65.3%</td></tr><tr><td>ICA</td><td>75.1%</td><td>69.1%</td><td>73.9%</td></tr><tr><td>Planetoid</td><td>75.7%</td><td>64.7%</td><td>77.2%</td></tr><tr><td>Spectral CNN</td><td>73.3%</td><td>58.9%</td><td>73.9%</td></tr><tr><td>ChebyNet</td><td>81.2%</td><td>69.8%</td><td>74.4%</td></tr><tr><td>GCN</td><td>81.5%</td><td>70.3%</td><td>79.0%</td></tr><tr><td>MoNet</td><td>81.7±0.5%</td><td></td><td>78.8±0.3%</td></tr><tr><td>GWNN</td><td>82.8%</td><td>71.7%</td><td>79.1%</td></tr></table>
170
+
171
+ # 4.6 ANALYSIS ON SPARSITY
172
+
173
+ Besides the improvement on prediction accuracy, wavelet transform with localized and sparse transform matrix holds sparsity in both spatial domain and spectral domain. Here, we take Cora as an example to illustrate the sparsity of graph wavelet transform.
174
+
175
+ The sparsity of transform matrix. There are 2,708 nodes in Cora. Thus, the wavelet transform matrix $\psi _ { s } ^ { - 1 }$ and the Fourier transform matrix $U ^ { \top }$ both belong to $\mathbb { R } ^ { 2 , 7 0 8 \times 2 , 7 0 8 }$ . The first two rows in Table 4 demonstrate that $\psi _ { s } ^ { - 1 }$ is much sparser than $U ^ { \top }$ . Sparse wavelets not only accelerate the computation, but also well capture the neighboring topology centered at each node.
176
+
177
+ The sparsity of projected signal. As mentioned above, each node in Cora represents a document and has a sparse bag-of-words feature. The input feature $\ b { X } \in \mathbb { R } ^ { n \times p }$ is a binary matrix, and $X _ { [ i , j ] } =$ 1 when the $i$ -th document contains the $j$ -th word in the bag of words, it equals 0 otherwise. Here, $X _ { [ : , j ] }$ denotes the $j$ -th column of $\boldsymbol { X }$ , and each column represents the feature vector of a word. Considering a specific signal $X _ { [ : , 9 8 4 ] }$ , we project the spatial signal into spectral domain, and get its projected vector. Here, $p = \bar { \psi _ { s } ^ { - 1 } } X _ { [ : , 9 8 4 ] }$ denotes the projected vector via wavelet transform, $\pmb { q } = \pmb { U } ^ { \top } \pmb { X } _ { [ : , 9 8 4 ] }$ denotes the projected vector via Fourier transform, and $\pmb { p } , \pmb { q } \in \mathbb { R } ^ { 2 , 7 0 8 }$ . The last row in Table 4 lists the numbers of non-zero elements in $\pmb { p }$ and $\pmb q$ . As shown in Table 4, with wavelet transform, the projected signal is much sparser.
178
+
179
+ Table 4: Statistics of wavelet transform and Fourier transform on Cora
180
+
181
+ <table><tr><td></td><td>Statistical Property</td><td>wavelettransform</td><td>Fouriertransform</td></tr><tr><td rowspan="2">Transform Matrix</td><td>Density</td><td>2.8%</td><td>99.1%</td></tr><tr><td>Number of Non-zero Elements</td><td>205,774</td><td>7,274,383</td></tr><tr><td rowspan="2">Projected Signal</td><td>Density</td><td>10.9%</td><td>100%</td></tr><tr><td>Number of Non-zero Elements</td><td>297</td><td>2,708</td></tr></table>
182
+
183
+ # 4.7 ANALYSIS ON INTERPRETABILITY
184
+
185
+ Compare with graph convolution network using Fourier transform, GWNN provides good interpretability. Here, we show the interpretability with specific examples in Cora.
186
+
187
+ Each feature, i.e. word in the bag of words, has a projected vector, and each element in this vector is associated with a spectral wavelet basis. Here, each basis is centered at a node, corresponding to a document. The value can be regarded as the relation between the word and the document. Thus, each value in $\pmb { p }$ can be interpreted as the relation between $W o r d _ { 9 8 4 }$ and a document. In order to elaborate the interpretability of wavelet transform, we analyze the projected values of different feature as following.
188
+
189
+ Considering two features $W o r d _ { 9 8 4 }$ and $W o r d _ { 1 1 7 7 }$ , we select the top-10 active bases, which have the 10 largest projected values of each feature. As illustrated in Figure 2, for clarity, we magnify the local structure of corresponding nodes and marked them with bold rims. The central network in each subgraph denotes the dataset Cora, each node represents a document, and 7 different colors represent 7 classes. These nodes are clustered by OpenOrd (Martin et al., 2011) based on the adjacency matrix.
190
+
191
+ Figure 2a shows the top-10 active bases of $W o r d _ { 9 8 4 }$ . In Cora, this word only appears 8 times, and all the documents containing $W o r d _ { 9 8 4 }$ belong to the class “ Case-Based ”. Consistently, all top-10 nodes activated by $W o r d _ { 9 8 4 }$ are concentrated and belong to the class “ Case-Based ”. And, the frequencies of $W o r d _ { 1 1 7 7 }$ appearing in different classes are similar, indicating that $W o r d _ { 1 1 7 7 }$ is a universal word. In concordance with our expectation, the top-10 active bases of $W o r d _ { 1 1 7 7 }$ are discrete and belong to different classes in Figure 2b.
192
+
193
+ ![](images/4ea6f31973347c969205987dfaf594ad41a7761eb7d83787038298d9e7dd7f3d.jpg)
194
+ Figure 2: Top-10 active bases of two words in Cora. The central network of each subgraph represents the dataset Cora, which is split into 7 classes. Each node represents a document, and its color indicates its label. The nodes that represent the top-10 active bases are marked with bold rims. (a) $W o r d _ { 9 8 4 }$ only appears in documents of the class “ Case-Based ” in Cora. Consistently, all its 10 active bases also belong to the class “ Case-Based ”. (b) The frequencies of $W o r d _ { 1 1 7 7 }$ appearing in different classes are similar in Cora. As expected, the top-10 active bases of $W o r d _ { 1 1 7 7 }$ also belong to different classes.
195
+
196
+ Owing to the properties of graph wavelets, which describe the neighboring topology centered at each node, the projected values of wavelet transform can be explained as the correlation between features and nodes. These properties provide an interpretable domain transformation and ease the understanding of graph convolution.
197
+
198
+ # 5 CONCLUSION
199
+
200
+ Replacing graph Fourier transform with graph wavelet transform, we proposed GWNN. Graph wavelet transform has three desirable properties: (1) Graph wavelets are local and sparse; (2) Graph wavelet transform is computationally efficient; (3) Convolution is localized in vertex domain. These advantages make the whole learning process interpretable and efficient. Moreover, to reduce the number of parameters and the dependence on huge training data, we detached the feature transformation from convolution. This practice makes GWNN applicable to large graphs, with remarkable performance improvement on graph-based semi-supervised learning.
201
+
202
+ # 6 ACKNOWLEDGEMENTS
203
+
204
+ This work is funded by the National Natural Science Foundation of China under grant numbers 61425016, 61433014, and 91746301. Huawei Shen is also funded by K.C. Wong Education Foundation and the Youth Innovation Promotion Association of the Chinese Academy of Sciences.
205
+
206
+ # REFERENCES
207
+
208
+ Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric framework for learning from labeled and unlabeled examples. Journal of machine learning research, 7 (Nov):2399–2434, 2006.
209
+
210
+ Davide Boscaini, Jonathan Masci, Simone Melzi, Michael M Bronstein, Umberto Castellani, and Pierre Vandergheynst. Learning class-specific descriptors for deformable shapes using localized spectral convolutional networks. In Computer Graphics Forum, volume 34, pp. 13–23. Wiley Online Library, 2015.
211
+
212
+ Michael M Bronstein, Joan Bruna, Yann LeCun, Arthur Szlam, and Pierre Vandergheynst. Geometric deep learning: going beyond euclidean data. IEEE Signal Processing Magazine, 34(4):18–42, 2017.
213
+
214
+ Joan Bruna, Wojciech Zaremba, Arthur Szlam, and Yann Lecun. Spectral networks and locally connected networks on graphs. In International Conference on Learning Representations (ICLR2014), CBLS, April 2014, 2014.
215
+
216
+ Michael Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks ¨ on graphs with fast localized spectral filtering. In Advances in Neural Information Processing Systems, pp. 3844–3852, 2016.
217
+
218
+ Ming Ding, Jie Tang, and Jie Zhang. Semi-supervised learning on graphs with generative adversarial nets. In Proceedings of the 27th ACM International Conference on Information and Knowledge Management, pp. 913–922. ACM, 2018.
219
+
220
+ Claire Donnat, Marinka Zitnik, David Hallac, and Jure Leskovec. Learning structural node embeddings via diffusion wavelets. 2018.
221
+
222
+ Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the thirteenth international conference on artificial intelligence and statistics, pp. 249–256, 2010.
223
+
224
+ Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in Neural Information Processing Systems, pp. 1024–1034, 2017.
225
+
226
+ David K Hammond, Pierre Vandergheynst, and Remi Gribonval. Wavelets on graphs via spectral ´ graph theory. Applied and Computational Harmonic Analysis, 30(2):129–150, 2011.
227
+
228
+ Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016.
229
+
230
+ Geoffrey Hinton, Li Deng, Dong Yu, George E Dahl, Abdel-rahman Mohamed, Navdeep Jaitly, Andrew Senior, Vincent Vanhoucke, Patrick Nguyen, Tara N Sainath, et al. Deep neural networks for acoustic modeling in speech recognition: The shared views of four research groups. IEEE Signal processing magazine, 29(6):82–97, 2012.
231
+
232
+ Renata Khasanova and Pascal Frossard. Graph-based isometry invariant representation learning. In International Conference on Machine Learning, pp. 1847–1856, 2017.
233
+
234
+ Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014.
235
+
236
+ Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations (ICLR), 2017.
237
+
238
+ Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´ document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.
239
+
240
+ Ron Levie, Federico Monti, Xavier Bresson, and Michael M Bronstein. Cayleynets: Graph convolutional neural networks with complex rational spectral filters. arXiv preprint arXiv:1705.07664, 2017.
241
+
242
+ Qing Lu and Lise Getoor. Link-based classification. In Proceedings of the 20th International Conference on Machine Learning (ICML-03), pp. 496–503, 2003.
243
+
244
+ Shawn Martin, W Michael Brown, Richard Klavans, and Kevin W Boyack. Openord: an opensource toolbox for large graph layout. In Visualization and Data Analysis 2011, volume 7868, pp. 786806. International Society for Optics and Photonics, 2011.
245
+
246
+ Federico Monti, Davide Boscaini, Jonathan Masci, Emanuele Rodola, Jan Svoboda, and Michael M Bronstein. Geometric deep learning on graphs and manifolds using mixture model cnns. In Proc. CVPR, volume 1, pp. 3, 2017.
247
+
248
+ Federico Monti, Oleksandr Shchur, Aleksandar Bojchevski, Or Litany, Stephan Gunnemann, ¨ and Michael M Bronstein. Dual-primal graph convolutional networks. arXiv preprint arXiv:1806.00770, 2018.
249
+
250
+ Bryan Perozzi, Rami Al-Rfou, and Steven Skiena. Deepwalk: Online learning of social representations. In Proceedings of the 20th ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 701–710. ACM, 2014.
251
+
252
+ Nathanael Perraudin, Johan Paratte, David Shuman, Lionel Martin, Vassilis Kalofolias, Pierre Van-¨ dergheynst, and David K Hammond. Gspbox: A toolbox for signal processing on graphs. arXiv preprint arXiv:1408.5781, 2014.
253
+
254
+ Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad. Collective classification in network data. AI magazine, 29(3):93, 2008.
255
+
256
+ David I Shuman, Sunil K Narang, Pascal Frossard, Antonio Ortega, and Pierre Vandergheynst. The emerging field of signal processing on graphs: Extending high-dimensional data analysis to networks and other irregular domains. IEEE Signal Processing Magazine, 30(3):83–98, 2013.
257
+
258
+ Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The Journal of Machine Learning Research, 15(1):1929–1958, 2014.
259
+
260
+ Wim Sweldens. The lifting scheme: A construction of second generation wavelets. SIAM journal on mathematical analysis, 29(2):511–546, 1998.
261
+
262
+ Nicolas Tremblay and Pierre Borgnat. Graph wavelets for multiscale community mining. IEEE Transactions on Signal Processing, 62(20):5227–5239, 2014.
263
+
264
+ Petar Velickovic, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, and Yoshua Bengio. Graph attention networks. arXiv preprint arXiv:1710.10903, 2017.
265
+
266
+ Jason Weston, Fred´ eric Ratle, Hossein Mobahi, and Ronan Collobert. Deep learning via semi- ´ supervised embedding. In Neural Networks: Tricks of the Trade, pp. 639–655. Springer, 2012.
267
+
268
+ Zhilin Yang, William Cohen, and Ruslan Salakhudinov. Revisiting semi-supervised learning with graph embeddings. In International Conference on Machine Learning, pp. 40–48, 2016.
269
+
270
+ Xiaojin Zhu, Zoubin Ghahramani, and John D Lafferty. Semi-supervised learning using gaussian fields and harmonic functions. In Proceedings of the 20th International conference on Machine learning (ICML-03), pp. 912–919, 2003.
271
+
272
+ We use a diagonal matrix $\Theta$ to represent the learned kernel transformed by wavelets $\psi _ { s } ^ { - 1 } \pmb { y }$ , and replace the Hadamard product with matrix muplication. Then Equation (4) is:
273
+
274
+ $$
275
+ \pmb { x } * _ { \mathcal { G } } \pmb { y } = \psi _ { s } \Theta \psi _ { s } ^ { - 1 } \pmb { x } .
276
+ $$
277
+
278
+ We set $\psi _ { s } = ( \psi _ { s 1 } , \psi _ { s 2 } , . . . , \psi _ { s n } )$ , $\psi _ { s } ^ { - 1 } = ( \psi _ { s 1 } ^ { * } , \psi _ { s 2 } ^ { * } , . . . , \psi _ { s n } ^ { * } )$ , and $\Theta = \mathrm { d i a g } ( \{ \theta _ { k } \} _ { k = 1 } ^ { n } )$ . Equation (11) becomes :
279
+
280
+ $$
281
+ \pmb { x } * _ { \mathscr { G } } \pmb { y } = \sum _ { k = 1 } ^ { n } \theta _ { k } \psi _ { s k } ( \psi _ { s k } ^ { * } ) ^ { \top } \pmb { x } .
282
+ $$
283
+
284
+ As proved by Hammond et al. (2011), both $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ are local in small scale (s). Figure 3 shows the locality of $\psi _ { s 1 }$ and $\psi _ { s 1 } ^ { * }$ , i.e., the first column in $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ when $s = 3$ . Each column in $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ describes the neighboring topology of target node, which means that $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ are local. The locality of $\psi _ { s k }$ and $\psi _ { s k } ^ { * }$ leads to the locality of the resulting matrix of multiplication between the column vector $\psi _ { s k }$ and row vector $( \psi _ { s k } ^ { * } ) ^ { \top }$ . For convenience, we set $M _ { k } = \psi _ { s k } ( \psi _ { s k } ^ { * } ) ^ { \top }$ , $M _ { k [ i , j ] } > 0$ only when $\psi _ { s k } [ i ] > 0$ and $( \psi _ { s k } ^ { * } ) ^ { \top } [ j ] > 0$ . In other words, if $M _ { k [ i , j ] } > 0$ , vertex $i$ and vertex $j$ can correlate with each other through vertex $k$ .
285
+
286
+ ![](images/3bace0dca654718860a873ae36fecfdf5825bb2d5b239f07e6fb3900d9126899.jpg)
287
+ Figure 3: Locality of (a) $\psi _ { s 1 }$ and (b) $\psi _ { s 1 } ^ { * }$ .
288
+
289
+ Since each $M _ { k }$ is local, for any convolution kernel $\Theta$ , $\psi _ { s } \Theta \psi _ { s } ^ { - 1 }$ is local, and it means that convolution is localized in vertex domain. By replacing $\Theta$ with an identity matrix in Equation (12), we get $\begin{array} { r } { \pmb { x } * _ { \mathcal { G } } \pmb { y } = \sum _ { k = 1 } ^ { n } M _ { k } \pmb { x } } \end{array}$ . We define $\begin{array} { r } { \mathbf { \dot { H } } = \sum _ { k = 1 } ^ { n ^ { * } } M _ { k } } \end{array}$ , and Figure 4 shows $H _ { [ 1 , : ] }$ in different scaling, i.e., correlation between the first node and other nodes during convolution. The locality of $\pmb { H }$ suggests that graph convolution is localized in vertex domain. Moreover, as the scaling parameter $s$ becomes larger, the range of feature diffusion becomes larger.
290
+
291
+ ![](images/377dd1763f6ee42479178aa2c4bcb662df3cbd7f5dd463a3b122c3167e6d6b46.jpg)
292
+ Figure 4: Correlation between first node and other nodes at (a) small scale and (b) large scale. Nonzero value of node represents correlation between this node and target node during convolution. Locality of $\pmb { H }$ suggests that graph convolution is localized in vertex domain. Moreover, with scaling parameter $s$ becoming larger, the range of feature diffusion becomes larger.
293
+
294
+ ![](images/40fcbdd4a017ec82e8d7bce4e03011ac72b42888e765e88a447a7ae0220b410e.jpg)
295
+ Figure 5: Influence of $s$ and $t$ on Cora.
296
+
297
+ GWNN leverages graph wavelets to implement graph convolution, where $s$ is used to modulate the range of neighborhoods. From Figure 5, as $s$ becomes larger starting from 0, the range of neighboring nodes becomes large, resulting the increase of accuracy on Cora. However when $s$ becomes too large, some irrelevant nodes are included, leading to decreasing of accuracy. The hyperparameter $t$ only used for computational efficiency, has any slight influence on its performance.
298
+
299
+ For experiments on specific dataset, $s$ and $t$ are choosen via grid search using validation. Generally, a appropriate $s$ is in the range of [0.5, 1], which can not only capture the graph structure but also guarantee the locality of convolution, and $t$ is less insensive to dataset.
300
+
301
+ # APPENDIX C PARAMETER COMPLEXITY OF NODE CLASSIFICATION
302
+
303
+ We show the parameter complexity of node classification in Table 5. The high parameter complexity $O ( n * p * q )$ of Spectral CNN makes it difficult to generalize to real world networks. ChebyNet approximates the convolution kernel via polynomial function of the diagonal matrix of Laplacian eigenvalues, reducing parameter complexity to $O ( K * p * q )$ with $K$ being the order of polynomial function. GCN simplifies ChebyNet via setting $K { = } 1$ . We detach feature transformation from graph convolution to implement GWNN and Spectral CNN in our experiments, which can reduce parameter to $O ( n + p * q )$ .
304
+
305
+ Table 5: Parameter complexity of Node Classification
306
+
307
+ <table><tr><td>Method</td><td>Cora</td><td>Citeseer</td><td>Pubmed</td></tr><tr><td>Spectral CNN</td><td>62,392,320</td><td>197,437,488</td><td>158,682,416</td></tr><tr><td>Spectral CNN (detaching)</td><td>28,456</td><td>65,379</td><td>47,482</td></tr><tr><td>ChebyNet</td><td>46,080 (K=2)</td><td>178,032 (K=3)</td><td>24,144 (K=3)</td></tr><tr><td>GCN</td><td>23,040</td><td>59,344</td><td>8.048</td></tr><tr><td>GWNN</td><td>28,456</td><td>65,379</td><td>47,482</td></tr></table>
308
+
309
+ In Cora and Citeseer, with smaller parameter complexity, GWNN achieves better performance than ChebyNet, reflecting that it is promising to implement convolution via graph wavelet transform. As Pubmed has a large number of nodes, the parameter complexity of GWNN is larger than ChebyNet. As future work, it is an interesting attempt to select wavelets associated with a subset of nodes, further reducing parameter complexity with potential loss of performance.
310
+
311
+ # APPENDIX D FAST GRAPH WAVELETS WITH CHEBYSHEV POLYNOMIAL APPROXIMATION
312
+
313
+ Hammond et al. (2011) proposed a method, using Chebyshev polynomials to efficiently approximate $\psi _ { s }$ and $\psi _ { s } ^ { - 1 }$ . The computational complexity is $O ( m \times | \mathbb { E } | )$ , where $\lvert \mathbb { E } \rvert$ is the number of edges and $m$ is the order of Chebyshev polynomials. We give the details of the approximation proposed in Hammond et al. (2011).
314
+
315
+ With the stable recurrence relation $T _ { k } ( y ) = 2 y T _ { k - 1 } ( y ) - T _ { k - 2 } ( y )$ , we can generate the Chebyshev polynomials $T _ { k } ( y )$ . Here $T _ { 0 } = 1$ and $T _ { 1 } = y$ . For $y$ sampled between $^ { - 1 }$ and 1, the trigonometric expression $T _ { k } ( y ) = c o s ( k a r c c o s ( y ) )$ is satisfied. It shows that $T _ { k } ( y ) \in [ - 1 , 1 ]$ when $y \in [ - 1 , 1 ]$ . Through the Chebyshev polynomials, an orthogonal basis for the Hilbert space of square integrable functions $L ^ { 2 } ( [ - 1 , 1 ] , \frac { d y } { \sqrt { 1 - y ^ { 2 } } } )$ is formed. For each $h$ in this Hilbert space, we have a uniformly convergent Chebyshev series $\begin{array} { r } { h ( y ) = \frac { 1 } { 2 } c _ { 0 } + \sum _ { k = 1 } ^ { \infty } c _ { k } T _ { k } ( y ) } \end{array}$ , and the Chebyshev coefficients $c _ { k } =$ $\begin{array} { r } { \frac { 2 } { \pi } \int _ { - 1 } ^ { 1 } \frac { T _ { k } ( y ) h ( y ) } { \sqrt { 1 - y ^ { 2 } } } d y = \frac { 2 } { \pi } \int _ { 0 } ^ { \pi } c o s ( k \theta ) h ( \bar { c o s } ( \theta ) ) d \theta } \end{array}$ . A fixed scale $s$ is assumed. To approximate $g ( s x )$ for $x \in [ 0 , \lambda _ { m a x } ]$ , we can shift the domain through the transformation $x = a ( y + 1 ) $ , where $a =$ $\frac { \lambda _ { m a x } } { 2 }$ $\begin{array} { r } { T _ { k } ^ { \prime } ( x ) = T _ { k } ( \frac { x - a } { a } ) } \end{array}$ e shif, and , $\frac { x - a } { a } \in [ - 1 , 1 ]$ . $\begin{array} { r } { g ( s x ) = \frac { 1 } { 2 } c _ { 0 } + \sum _ { k = 1 } ^ { \infty } c _ { k } T _ { k } ^ { \prime } ( x ) } \end{array}$ $x \in [ 0 , \lambda _ { m a x } ]$ $\begin{array} { r } { c _ { k } = \frac { 2 } { \pi } \int _ { 0 } ^ { \pi } c o s ( k \theta ) g ( s ( a ( c o s ( \theta ) + 1 ) ) ) d \theta } \end{array}$ we truncate the Chebyshev expansion to $m$ terms and achieve Polynomial approximation.
316
+
317
+ sgive the fast approximation wavelets by Here we give the example of the $\psi _ { s } ^ { - 1 }$ and $\begin{array} { r } { \psi _ { s } ^ { - 1 } \pmb { f } ^ { \prime } = \frac { 1 } { 2 } c _ { 0 } \pmb { f } + \sum _ { k = 1 } ^ { m } c _ { k } \tilde { T _ { k } ^ { \prime } } ( \pmb { L } ) \pmb { f } } \end{array}$ $g ( s x ) = e ^ { - s x }$ , the graph signal is . The efficient compu- $\pmb { f } \in R ^ { n }$ . Then we can tation of $T _ { k } ^ { \prime } ( { \pmb { L } } )$ determines the utility of this approach, where $\begin{array} { r } { T _ { k } ^ { \prime } ( L ) \dag = \frac { 2 } { a } ( L - \pmb { I } ) ( T _ { k - 1 } ^ { \prime } ( L ) \pmb { f } ) - } \end{array}$ $T _ { k - 2 } ^ { \prime } ( { \pmb { L } } ) f$ .
318
+
319
+ # APPENDIX E ANALYSIS ON SPASITY OF SPECTRAL TRANSFORM AND LAPLACIAN MATRIX
320
+
321
+ The sparsity of the graph wavelets depends on the sparsity of the Laplacian matrix and the hyperparameter $s$ , We show the sparsity of spectral transform matrix and Laplacian matrix in Table 6.
322
+
323
+ Table 6: Statistics of spectral transform and Laplacian matrix on Cora
324
+
325
+ <table><tr><td></td><td>Density</td><td>NumofNon-zeroElements</td></tr><tr><td>wavelettransform</td><td>2.8%</td><td>205,774</td></tr><tr><td>Fouriertransform</td><td>99.1%</td><td>7,274,383</td></tr><tr><td>Laplacian matrix</td><td>0.15%</td><td>10,858</td></tr></table>
326
+
327
+ The sparsity of Laplacian matrix is sparser than graph wavelets, and this property limits our method, i.e., the higher time complexity than some methods depending on Laplacian matrix and identity matrix, e.g., GCN. Specifically, both our method and GCN aim to improve Spectral CNN via designing localized graph convolution. GCN, as a simplified version of ChebyNet, leverages Laplacian matrix as weighted matrix and expresses the spectral graph convolution in spatial domain, acting as spatial-like method (Monti et al., 2017). However, our method resorts to using graph wavelets as a new set of bases, directly designing localized spectral graph convolution. GWNN offers a localized graph convolution via replacing graph Fourier transform with graph wavelet transform, finding good spectral basis with localization property and good interpretability. This distinguishes GWNN from ChebyNet and GCN, which express the graph convolution defined via graph Fourier transform in vertex domain.
parse/train/H1ewdiR5tQ/H1ewdiR5tQ_content_list.json ADDED
@@ -0,0 +1,1671 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "GRAPH WAVELET NEURAL NETWORK ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 174,
8
+ 101,
9
+ 617,
10
+ 121
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Bingbing $\\mathbf { X } \\mathbf { u } ^ { 1 , 2 }$ , Huawei Shen1,2, Qi $\\mathbf { C a o } ^ { 1 , 2 }$ , Yunqi $\\mathbf { Q i u } ^ { 1 , 2 }$ & Xueqi Cheng1,2 ",
17
+ "bbox": [
18
+ 183,
19
+ 143,
20
+ 700,
21
+ 160
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "1CAS Key Laboratory of Network Data Science and Technology, \nInstitute of Computing Technology, Chinese Academy of Sciences; \n2School of Computer and Control Engineering, \nUniversity of Chinese Academy of Sciences \nBeijing, China \n{xubingbing,shenhuawei,caoqi,qiuyunqi,cxq}@ict.ac.cn ",
28
+ "bbox": [
29
+ 184,
30
+ 161,
31
+ 692,
32
+ 244
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "ABSTRACT ",
39
+ "text_level": 1,
40
+ "bbox": [
41
+ 454,
42
+ 280,
43
+ 544,
44
+ 296
45
+ ],
46
+ "page_idx": 0
47
+ },
48
+ {
49
+ "type": "text",
50
+ "text": "We present graph wavelet neural network (GWNN), a novel graph convolutional neural network (CNN), leveraging graph wavelet transform to address the shortcomings of previous spectral graph CNN methods that depend on graph Fourier transform. Different from graph Fourier transform, graph wavelet transform can be obtained via a fast algorithm without requiring matrix eigendecomposition with high computational cost. Moreover, graph wavelets are sparse and localized in vertex domain, offering high efficiency and good interpretability for graph convolution. The proposed GWNN significantly outperforms previous spectral graph CNNs in the task of graph-based semi-supervised classification on three benchmark datasets: Cora, Citeseer and Pubmed. ",
51
+ "bbox": [
52
+ 233,
53
+ 318,
54
+ 764,
55
+ 457
56
+ ],
57
+ "page_idx": 0
58
+ },
59
+ {
60
+ "type": "text",
61
+ "text": "1 INTRODUCTION ",
62
+ "text_level": 1,
63
+ "bbox": [
64
+ 176,
65
+ 497,
66
+ 336,
67
+ 513
68
+ ],
69
+ "page_idx": 0
70
+ },
71
+ {
72
+ "type": "text",
73
+ "text": "Convolutional neural networks (CNNs) (LeCun et al., 1998) have been successfully used in many machine learning problems, such as image classification (He et al., 2016) and speech recognition (Hinton et al., 2012), where there is an underlying Euclidean structure. The success of CNNs lies in their ability to leverage the statistical properties of Euclidean data, e.g., translation invariance. However, in many research areas, data are naturally located in a non-Euclidean space, with graph or network being one typical case. The non-Euclidean nature of graph is the main obstacle or challenge when we attempt to generalize CNNs to graph. For example, convolution is not well defined in graph, due to that the size of neighborhood for each node varies dramatically (Bronstein et al., 2017). ",
74
+ "bbox": [
75
+ 174,
76
+ 534,
77
+ 825,
78
+ 659
79
+ ],
80
+ "page_idx": 0
81
+ },
82
+ {
83
+ "type": "text",
84
+ "text": "Existing methods attempting to generalize CNNs to graph data fall into two categories, spatial methods and spectral methods, according to the way that convolution is defined. Spatial methods define convolution directly on the vertex domain, following the practice of the conventional CNN. For each vertex, convolution is defined as a weighted average function over all vertices located in its neighborhood, with the weighting function characterizing the influence exerting to the target vertex by its neighbors (Monti et al., 2017). The main challenge is to define a convolution operator that can handle neighborhood with different sizes and maintain the weight sharing property of CNN. Although spatial methods gain some initial success and offer us a flexible framework to generalize CNNs to graph, it is still elusive to determine appropriate neighborhood. ",
85
+ "bbox": [
86
+ 174,
87
+ 666,
88
+ 825,
89
+ 791
90
+ ],
91
+ "page_idx": 0
92
+ },
93
+ {
94
+ "type": "text",
95
+ "text": "Spectral methods define convolution via graph Fourier transform and convolution theorem. Spectral methods leverage graph Fourier transform to convert signals defined in vertex domain into spectral domain, e.g., the space spanned by the eigenvectors of the graph Laplacian matrix, and then filter is defined in spectral domain, maintaining the weight sharing property of CNN. As the pioneering work of spectral methods, spectral CNN (Bruna et al., 2014) exploited graph data with the graph Fourier transform to implement convolution operator using convolution theorem. Some subsequent works make spectral methods spectrum-free (Defferrard et al., 2016; Kipf & Welling, 2017; Khasanova & Frossard, 2017), achieving locality in spatial domain and avoiding high computational cost of the eigendecomposition of Laplacian matrix. ",
96
+ "bbox": [
97
+ 174,
98
+ 797,
99
+ 825,
100
+ 924
101
+ ],
102
+ "page_idx": 0
103
+ },
104
+ {
105
+ "type": "text",
106
+ "text": "In this paper, we present graph wavelet neural network to implement efficient convolution on graph data. We take graph wavelets instead of the eigenvectors of graph Laplacian as a set of bases, and define the convolution operator via wavelet transform and convolution theorem. Graph wavelet neural network distinguishes itself from spectral CNN by its three desirable properties: (1) Graph wavelets can be obtained via a fast algorithm without requiring the eigendecomposition of Laplacian matrix, and thus is efficient; (2) Graph wavelets are sparse, while eigenvectors of Laplacian matrix are dense. As a result, graph wavelet transform is much more efficient than graph Fourier transform; (3) Graph wavelets are localized in vertex domain, reflecting the information diffusion centered at each node (Tremblay & Borgnat, 2014). This property eases the understanding of graph convolution defined by graph wavelets. ",
107
+ "bbox": [
108
+ 173,
109
+ 103,
110
+ 825,
111
+ 242
112
+ ],
113
+ "page_idx": 1
114
+ },
115
+ {
116
+ "type": "text",
117
+ "text": "We develop an efficient implementation of the proposed graph wavelet neural network. Convolution in conventional CNN learns an individual convolution kernel for each pair of input feature and output feature, causing a huge number of parameters especially when the number of features is high. We detach the feature transformation from convolution and learn a sole convolution kernel among all features, substantially reducing the number of parameters. Finally, we validate the effectiveness of the proposed graph wavelet neural network by applying it to graph-based semi-supervised classification. Experimental results demonstrate that our method consistently outperforms previous spectral CNNs on three benchmark datasets, i.e., Cora, Citeseer, and Pubmed. ",
118
+ "bbox": [
119
+ 174,
120
+ 250,
121
+ 825,
122
+ 361
123
+ ],
124
+ "page_idx": 1
125
+ },
126
+ {
127
+ "type": "text",
128
+ "text": "2 OUR METHOD ",
129
+ "text_level": 1,
130
+ "bbox": [
131
+ 176,
132
+ 383,
133
+ 321,
134
+ 400
135
+ ],
136
+ "page_idx": 1
137
+ },
138
+ {
139
+ "type": "text",
140
+ "text": "2.1 PRELIMINARY ",
141
+ "text_level": 1,
142
+ "bbox": [
143
+ 174,
144
+ 416,
145
+ 313,
146
+ 431
147
+ ],
148
+ "page_idx": 1
149
+ },
150
+ {
151
+ "type": "text",
152
+ "text": "Let $\\mathcal { G } = \\{ \\mathbb { V } , \\mathbb { E } , A \\}$ be an undirected graph, where $\\mathbb { V }$ is the set of nodes with $| \\mathbb { V } | = n$ , $\\mathbb { E }$ is the set of edges, and $\\pmb { A }$ is adjacency matrix with $A _ { i , j } = A _ { j , i }$ to define the connection between node $i$ and node $j$ . The graph Laplacian matrix $\\mathcal { L }$ is defined as $\\overset { \\vartriangle } { \\boldsymbol { \\mathcal { L } } } = \\boldsymbol { D } - \\boldsymbol { A }$ where $_ { D }$ is a diagonal degree matrix with $\\textstyle D _ { i , i } = \\sum _ { j } A _ { i , j }$ , and the normalized Laplacian matrix is ${ \\cal L } = I _ { n } - { \\cal D } ^ { - 1 / 2 } \\bar { \\cal A } { \\cal D } ^ { - 1 / 2 }$ where ${ { I } _ { n } }$ is the identity matrix. Since $\\pmb { L }$ is a real symmetric matrix, it has a complete set of orthonormal eigenvectors $U = \\left( \\ b { u } _ { 1 } , \\ b { u } _ { 2 } , . . . , \\ b { u } _ { n } \\right)$ , known as Laplacian eigenvectors. These eigenvectors have associated real, non-negative eigenvalues $\\{ \\lambda _ { l } \\} _ { l = 1 } ^ { n }$ , identified as the frequencies of graph. Eigenvectors associated with smaller eigenvalues carry slow varying signals, indicating that connected nodes share similar values. In contrast, eigenvectors associated with larger eigenvalues carry faster varying signals across connected nodes. ",
153
+ "bbox": [
154
+ 173,
155
+ 443,
156
+ 825,
157
+ 585
158
+ ],
159
+ "page_idx": 1
160
+ },
161
+ {
162
+ "type": "text",
163
+ "text": "2.2 GRAPH FOURIER TRANSFORM ",
164
+ "text_level": 1,
165
+ "bbox": [
166
+ 176,
167
+ 604,
168
+ 423,
169
+ 619
170
+ ],
171
+ "page_idx": 1
172
+ },
173
+ {
174
+ "type": "text",
175
+ "text": "Taking the eigenvectors of normalized Laplacian matrix as a set of bases, graph Fourier transform of a signal $\\pmb { x } \\in R ^ { n }$ on graph $\\mathcal { G }$ is defined as $\\hat { \\pmb x } = \\pmb U ^ { \\top } \\pmb x$ , and the inverse graph Fourier transform is $\\mathbf { \\pmb { x } } = \\pmb { U } \\hat { \\mathbf { x } }$ (Shuman et al., 2013). Graph Fourier transform, according to convolution theorem, offers us a way to define the graph convolution operator, denoted as $^ { \\ast _ { \\mathcal { G } } }$ . Denoting with $\\textbf { { y } }$ the convolution kernel, $^ { \\ast _ { \\mathcal { G } } }$ is defined as ",
176
+ "bbox": [
177
+ 173,
178
+ 631,
179
+ 823,
180
+ 702
181
+ ],
182
+ "page_idx": 1
183
+ },
184
+ {
185
+ "type": "equation",
186
+ "img_path": "images/792d44ff25be5f0ba03e2804988f586d1c384a358bb3250bd2d0a52e8b0f5f33.jpg",
187
+ "text": "$$\n\\pmb { x } \\ast _ { \\mathscr { G } } \\pmb { y } = \\pmb { U } \\big ( ( \\pmb { U } ^ { \\top } \\pmb { y } ) \\odot ( \\pmb { U } ^ { \\top } \\pmb { x } ) \\big ) ,\n$$",
188
+ "text_format": "latex",
189
+ "bbox": [
190
+ 387,
191
+ 703,
192
+ 609,
193
+ 723
194
+ ],
195
+ "page_idx": 1
196
+ },
197
+ {
198
+ "type": "text",
199
+ "text": "where $\\odot$ is the element-wise Hadamard product. Replacing the vector $\\pmb { U } ^ { \\top } \\pmb { y }$ by a diagonal matrix $g _ { \\theta }$ , then Hadamard product can be written in the form of matrix multiplication. Filtering the signal $x$ by the filter $g _ { \\theta }$ , we can write Equation (1) as $U g _ { \\theta } \\pmb { U } ^ { \\top } \\pmb { x }$ . ",
200
+ "bbox": [
201
+ 174,
202
+ 729,
203
+ 825,
204
+ 773
205
+ ],
206
+ "page_idx": 1
207
+ },
208
+ {
209
+ "type": "text",
210
+ "text": "However, there are some limitations when using Fourier transform to implement graph convolution: (1) Eigendecomposition of Laplacian matrix to obtain Fourier basis $U$ is of high computational cost with $\\bar { O } ( n ^ { 3 } )$ ; (2) Graph Fourier transform is inefficient, since it involves the multiplication between a dense matrix $U$ and the signal $_ { \\textbf { \\em x } }$ ; (3) Graph convolution defined through Fourier transform is not localized in vertex domain, i.e., the influence to the signal on one node is not localized in its neighborhood. To address these limitations, ChebyNet (Defferrard et al., 2016) restricts convolution kernel $g _ { \\theta }$ to a polynomial expansion ",
211
+ "bbox": [
212
+ 173,
213
+ 779,
214
+ 825,
215
+ 877
216
+ ],
217
+ "page_idx": 1
218
+ },
219
+ {
220
+ "type": "equation",
221
+ "img_path": "images/56153eebc08218a1387d07d8512ad64584f87392911bf9218394fd6d413643bf.jpg",
222
+ "text": "$$\ng _ { \\theta } = \\sum _ { k = 0 } ^ { K - 1 } \\theta _ { k } \\Lambda ^ { k } ,\n$$",
223
+ "text_format": "latex",
224
+ "bbox": [
225
+ 442,
226
+ 878,
227
+ 553,
228
+ 922
229
+ ],
230
+ "page_idx": 1
231
+ },
232
+ {
233
+ "type": "text",
234
+ "text": "where $K$ is a hyper-parameter to determine the range of node neighborhoods via the shortest path distance, $\\theta \\in \\bar { R } ^ { \\bar { K } }$ is a vector of polynomial coefficients, and $\\Lambda = \\mathrm { d i a g } \\big ( \\{ \\lambda _ { l } \\} _ { l = 1 } ^ { n } \\big )$ . However, such a polynomial approximation limits the flexibility to define appropriate convolution on graph, i.e., with a smaller $K$ , it’s hard to approximate the diagonal matrix $g _ { \\boldsymbol { \\theta } }$ with $n$ free parameters. While with a larger $K$ , locality is no longer guaranteed. Different from ChebyNet, we address the aforementioned three limitations through replacing graph Fourier transform with graph wavelet transform. ",
235
+ "bbox": [
236
+ 174,
237
+ 103,
238
+ 825,
239
+ 188
240
+ ],
241
+ "page_idx": 2
242
+ },
243
+ {
244
+ "type": "text",
245
+ "text": "2.3 GRAPH WAVELET TRANSFORM ",
246
+ "text_level": 1,
247
+ "bbox": [
248
+ 176,
249
+ 205,
250
+ 426,
251
+ 219
252
+ ],
253
+ "page_idx": 2
254
+ },
255
+ {
256
+ "type": "text",
257
+ "text": "Similar to graph Fourier transform, graph wavelet transform projects graph signal from vertex domain into spectral domain. Graph wavelet transform employs a set of wavelets as bases, defined as $\\psi _ { s } = ( \\psi _ { s 1 } , \\psi _ { s 2 } , . . . , \\psi _ { s n } )$ , where each wavelet $\\psi _ { s i }$ corresponds to a signal on graph diffused away from node $i$ and $s$ is a scaling parameter. Mathematically, $\\psi _ { s i }$ can be written as ",
258
+ "bbox": [
259
+ 174,
260
+ 232,
261
+ 823,
262
+ 289
263
+ ],
264
+ "page_idx": 2
265
+ },
266
+ {
267
+ "type": "equation",
268
+ "img_path": "images/04e7f8b32db6c7a150115ab9e4bd040abcbc33f498ad5dd82f28c2b0686634d9.jpg",
269
+ "text": "$$\n\\psi _ { s } = U G _ { s } U ^ { \\top } ,\n$$",
270
+ "text_format": "latex",
271
+ "bbox": [
272
+ 444,
273
+ 296,
274
+ 553,
275
+ 314
276
+ ],
277
+ "page_idx": 2
278
+ },
279
+ {
280
+ "type": "text",
281
+ "text": "where $U$ is Laplacian eigenvectors, $G _ { s } \\mathrm { = d i a g } \\big ( g ( s \\lambda _ { 1 } ) , . . . , g ( s \\lambda _ { n } ) \\big )$ is a scaling matrix and $g ( s \\lambda _ { i } ) =$ $e ^ { \\lambda _ { i } s }$ . ",
282
+ "bbox": [
283
+ 176,
284
+ 321,
285
+ 826,
286
+ 353
287
+ ],
288
+ "page_idx": 2
289
+ },
290
+ {
291
+ "type": "text",
292
+ "text": "Using graph wavelets as bases, graph wavelet transform of a signal $_ { \\textbf { \\em x } }$ on graph is defined as ${ \\hat { \\mathbf { x } } } = { }$ ${ \\psi } _ { s } ^ { - 1 } \\bar { x }$ and the inverse graph wavelet transform is $\\boldsymbol { x } = \\psi _ { s } \\hat { \\pmb { x } }$ . Note that $\\bar { \\psi } _ { s } ^ { - 1 }$ can be obtained by simply replacing the $g ( s \\lambda _ { i } )$ in $\\psi _ { s }$ with $g ( - s \\lambda _ { i } )$ corresponding to a heat kernel (Donnat et al., 2018). Replacing the graph Fourier transform in Equation (1) with graph wavelet transform, we obtain the graph convolution as ",
293
+ "bbox": [
294
+ 173,
295
+ 359,
296
+ 825,
297
+ 430
298
+ ],
299
+ "page_idx": 2
300
+ },
301
+ {
302
+ "type": "equation",
303
+ "img_path": "images/9e004a1ced473b2db4a84803136e5c6d1e66a7e0e72e1dbdd5b4da5bdd50fd11.jpg",
304
+ "text": "$$\n\\pmb { x } * _ { \\mathscr { G } } \\pmb { y } = \\psi _ { s } ( ( \\psi _ { s } ^ { - 1 } \\pmb { y } ) \\odot ( \\psi _ { s } ^ { - 1 } \\pmb { x } ) ) .\n$$",
305
+ "text_format": "latex",
306
+ "bbox": [
307
+ 383,
308
+ 429,
309
+ 614,
310
+ 448
311
+ ],
312
+ "page_idx": 2
313
+ },
314
+ {
315
+ "type": "text",
316
+ "text": "Compared to graph Fourier transform, graph wavelet transform has the following benefits when being used to define graph convolution: ",
317
+ "bbox": [
318
+ 173,
319
+ 459,
320
+ 825,
321
+ 488
322
+ ],
323
+ "page_idx": 2
324
+ },
325
+ {
326
+ "type": "text",
327
+ "text": "1. High efficiency: graph wavelets can be obtained via a fast algorithm without requiring the eigendecomposition of Laplacian matrix. In Hammond et al. (2011), a method is proposed to use Chebyshev polynomials to efficiently approximate $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ , with the computational complexity $O ( m \\times | \\mathbb { E } | )$ , where $\\lvert \\mathbb { E } \\rvert$ is the number of edges and $m$ is the order of Chebyshev polynomials. ",
328
+ "bbox": [
329
+ 173,
330
+ 494,
331
+ 825,
332
+ 551
333
+ ],
334
+ "page_idx": 2
335
+ },
336
+ {
337
+ "type": "text",
338
+ "text": "2. High spareness: the matrix $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ are both sparse for real world networks, given that these networks are usually sparse. Therefore, graph wavelet transform is much more computationally efficient than graph Fourier transform. For example, in the Cora dataset, more than $9 7 \\%$ elements in $\\psi _ { s } ^ { - 1 }$ are zero while only less than $1 \\%$ elements in $U ^ { \\top }$ are zero (Table 4). ",
339
+ "bbox": [
340
+ 173,
341
+ 558,
342
+ 825,
343
+ 614
344
+ ],
345
+ "page_idx": 2
346
+ },
347
+ {
348
+ "type": "text",
349
+ "text": "3. Localized convolution: each wavelet corresponds to a signal on graph diffused away from a centered node, highly localized in vertex domain. As a result, the graph convolution defined in Equation (4) is localized in vertex domain. We show the localization property of graph convolution in Appendix A. It is the localization property that explains why graph wavelet transform outperforms Fourier transform in defining graph convolution and the associated tasks like graph-based semisupervised learning. ",
350
+ "bbox": [
351
+ 173,
352
+ 621,
353
+ 825,
354
+ 705
355
+ ],
356
+ "page_idx": 2
357
+ },
358
+ {
359
+ "type": "image",
360
+ "img_path": "images/3babc8cc3ed3a06ed78d5a3fc82cb836ef0d897c86a6206ca71e5d2283c3d072.jpg",
361
+ "image_caption": [
362
+ "Figure 1: Wavelets on an example graph at (a) small scale and (b) large scale. "
363
+ ],
364
+ "image_footnote": [],
365
+ "bbox": [
366
+ 218,
367
+ 736,
368
+ 805,
369
+ 893
370
+ ],
371
+ "page_idx": 2
372
+ },
373
+ {
374
+ "type": "text",
375
+ "text": "4. Flexible neighborhood: graph wavelets are more flexible to adjust node’s neighborhoods. Different from previous methods which constrain neighborhoods by the discrete shortest path distance, our method leverages a continuous manner, i.e., varying the scaling parameter $s$ . A small value of $s$ generally corresponds to a smaller neighborhood. Figure 1 shows two wavelet bases at different scale on an example network, depicted using GSP toolbox (Perraudin et al., 2014). ",
376
+ "bbox": [
377
+ 173,
378
+ 103,
379
+ 825,
380
+ 174
381
+ ],
382
+ "page_idx": 3
383
+ },
384
+ {
385
+ "type": "text",
386
+ "text": "2.4 GRAPH WAVELET NEURAL NETWORK ",
387
+ "text_level": 1,
388
+ "bbox": [
389
+ 176,
390
+ 190,
391
+ 472,
392
+ 205
393
+ ],
394
+ "page_idx": 3
395
+ },
396
+ {
397
+ "type": "text",
398
+ "text": "Replacing Fourier transform with wavelet transform, graph wavelet neural network (GWNN) is a multi-layer convolutional neural network. The structure of the $m$ -th layer is ",
399
+ "bbox": [
400
+ 171,
401
+ 217,
402
+ 825,
403
+ 246
404
+ ],
405
+ "page_idx": 3
406
+ },
407
+ {
408
+ "type": "equation",
409
+ "img_path": "images/92c8cfcb9aca6335fd97c6b299506ade4cb6186adc544637355b21d8f23f0b25.jpg",
410
+ "text": "$$\n{ \\pmb X } _ { [ : , j ] } ^ { m + 1 } = h ( \\psi _ { s } \\sum _ { i = 1 } ^ { p } { \\pmb F } _ { i , j } ^ { m } \\psi _ { s } ^ { - 1 } { \\pmb X } _ { [ : , i ] } ^ { m } ) \\qquad j = 1 , \\cdots , q ,\n$$",
411
+ "text_format": "latex",
412
+ "bbox": [
413
+ 323,
414
+ 252,
415
+ 674,
416
+ 295
417
+ ],
418
+ "page_idx": 3
419
+ },
420
+ {
421
+ "type": "text",
422
+ "text": "where $\\psi _ { s }$ is wavelet bases, $\\psi _ { s } ^ { - 1 }$ is the graph wavelet transform matrix at scale $s$ which projects signal in vertex domain into spectral domain, $X _ { [ : , i ] } ^ { m }$ with dimensions $n \\times 1$ is the $i$ -th column of ${ \\pmb X } ^ { m }$ , ${ \\bf \\it F } _ { i , j } ^ { m }$ is a diagonal filter matrix learned in spectral domain, and $h$ is a non-linear activation function. This layer transforms an input tensor ${ \\pmb X } ^ { m }$ with dimensions $n \\times p$ into an output tensor $X ^ { m + 1 }$ with dimensions $n \\times q$ . ",
423
+ "bbox": [
424
+ 174,
425
+ 301,
426
+ 826,
427
+ 375
428
+ ],
429
+ "page_idx": 3
430
+ },
431
+ {
432
+ "type": "text",
433
+ "text": "In this paper, we consider a two-layer GWNN for semi-supervised node classification on graph. The formulation of our model is ",
434
+ "bbox": [
435
+ 173,
436
+ 381,
437
+ 823,
438
+ 410
439
+ ],
440
+ "page_idx": 3
441
+ },
442
+ {
443
+ "type": "equation",
444
+ "img_path": "images/e3ed3b8b55e2735e72729ae725daf15e2a2e147ac38adf82ad65617597efc57a.jpg",
445
+ "text": "$$\n\\mathrm { f i r s t ~ l a y e r : ~ } X _ { [ : , j ] } ^ { 2 } = \\mathrm { R e L U } ( \\psi _ { s } \\sum _ { i = 1 } ^ { p } F _ { i , j } ^ { 1 } \\psi _ { s } ^ { - 1 } X _ { [ : , i ] } ^ { 1 } ) \\qquad j = 1 , \\cdots , q ,\n$$",
446
+ "text_format": "latex",
447
+ "bbox": [
448
+ 267,
449
+ 414,
450
+ 728,
451
+ 457
452
+ ],
453
+ "page_idx": 3
454
+ },
455
+ {
456
+ "type": "equation",
457
+ "img_path": "images/fa69fc60467c37bbf7fc84193bc05ae7094880cca1b4cae3e4478c1c85501f82.jpg",
458
+ "text": "$$\n\\mathrm { s e c o n d l a y e r : ~ } Z _ { j } = \\mathrm { s o f t m a x } ( \\psi _ { s } \\sum _ { i = 1 } ^ { q } F _ { i , j } ^ { 2 } \\psi _ { s } ^ { - 1 } X _ { [ : , \\ : , i ] } ^ { 2 } ) \\qquad j = 1 , \\cdots , c ,\n$$",
459
+ "text_format": "latex",
460
+ "bbox": [
461
+ 258,
462
+ 463,
463
+ 738,
464
+ 505
465
+ ],
466
+ "page_idx": 3
467
+ },
468
+ {
469
+ "type": "text",
470
+ "text": "where $c$ is the number of classes in node classification, $z$ of dimensions $n \\times c$ is the prediction result. The loss function is the cross-entropy error over all labeled examples: ",
471
+ "bbox": [
472
+ 174,
473
+ 507,
474
+ 823,
475
+ 536
476
+ ],
477
+ "page_idx": 3
478
+ },
479
+ {
480
+ "type": "equation",
481
+ "img_path": "images/0388fb65683efc5fe6011f13ab36f3df734526d9828931e4596522e2eecbdb17.jpg",
482
+ "text": "$$\n\\boldsymbol { L o s s } = - \\sum _ { l \\in y _ { L } } \\sum _ { i = 1 } ^ { c } Y _ { l i } \\mathrm { l n } { \\boldsymbol { Z } _ { l i } } ,\n$$",
483
+ "text_format": "latex",
484
+ "bbox": [
485
+ 401,
486
+ 542,
487
+ 594,
488
+ 587
489
+ ],
490
+ "page_idx": 3
491
+ },
492
+ {
493
+ "type": "text",
494
+ "text": "where $y _ { L }$ is the labeled node set, $Y _ { l i } = 1$ if the label of node $l$ is $i$ , and ${ Y _ { l i } } = 0$ otherwise. The weights $\\pmb { F }$ are trained using gradient descent. ",
495
+ "bbox": [
496
+ 174,
497
+ 592,
498
+ 825,
499
+ 622
500
+ ],
501
+ "page_idx": 3
502
+ },
503
+ {
504
+ "type": "text",
505
+ "text": "2.5 REDUCING PARAMETER COMPLEXITY ",
506
+ "text_level": 1,
507
+ "bbox": [
508
+ 176,
509
+ 638,
510
+ 478,
511
+ 652
512
+ ],
513
+ "page_idx": 3
514
+ },
515
+ {
516
+ "type": "text",
517
+ "text": "In Equation (5), the parameter complexity of each layer is $O ( n \\times p \\times q )$ , where $n$ is the number of nodes, $p$ is the number of features of each vertex in current layer, and $q$ is the number of features of each vertex in next layer. Conventional CNN methods learn convolution kernel for each pair of input feature and output feature. This results in a huge number of parameters and generally requires huge training data for parameter learning. This is prohibited for graph-based semi-supervised learning. To combat this issue, we detach the feature transformation from graph convolution. Each layer in GWNN is divided into two components: feature transformation and graph convolution. Spectially, we have ",
518
+ "bbox": [
519
+ 173,
520
+ 664,
521
+ 825,
522
+ 775
523
+ ],
524
+ "page_idx": 3
525
+ },
526
+ {
527
+ "type": "equation",
528
+ "img_path": "images/d7dcd753043560ff1f8563014754b4c65f6de01cd098fa1c48574749f5944621.jpg",
529
+ "text": "$$\n\\begin{array} { c } { { \\mathrm { f e a t u r e ~ t r a n s f o r m a t i o n : } ~ { \\cal X } ^ { m ^ { \\prime } } = { \\cal X } ^ { m } { \\cal W } , } } \\\\ { { \\mathrm { g r a p h ~ c o n v o l u t i o n : } ~ { \\cal X } ^ { m + 1 } = h ( \\psi _ { s } { \\cal F } ^ { m } \\psi _ { s } ^ { - 1 } { \\cal X } ^ { m ^ { \\prime } } ) . } } \\end{array}\n$$",
530
+ "text_format": "latex",
531
+ "bbox": [
532
+ 326,
533
+ 772,
534
+ 671,
535
+ 820
536
+ ],
537
+ "page_idx": 3
538
+ },
539
+ {
540
+ "type": "text",
541
+ "text": "where $W \\in \\mathbb { R } ^ { p \\times q }$ is the parameter matrix for feature transformation, $X ^ { m ^ { \\prime } }$ with dimensions $n \\times q$ is the feature matrix after feature transformation, ${ \\pmb F } ^ { m }$ is the diagonal matrix for graph convolution kernel, and $h$ is a non-linear activation function. ",
542
+ "bbox": [
543
+ 174,
544
+ 832,
545
+ 825,
546
+ 875
547
+ ],
548
+ "page_idx": 3
549
+ },
550
+ {
551
+ "type": "text",
552
+ "text": "After detaching feature transformation from graph convolution, the parameter complexity is reduced from $O ( n \\times p \\times q )$ to $O ( n + p \\times q )$ . The reduction of parameters is particularly valuable fro graphbased semi-supervised learning where labels are quite limited. ",
553
+ "bbox": [
554
+ 174,
555
+ 881,
556
+ 823,
557
+ 924
558
+ ],
559
+ "page_idx": 3
560
+ },
561
+ {
562
+ "type": "text",
563
+ "text": "3 RELATED WORKS ",
564
+ "text_level": 1,
565
+ "bbox": [
566
+ 176,
567
+ 102,
568
+ 349,
569
+ 117
570
+ ],
571
+ "page_idx": 4
572
+ },
573
+ {
574
+ "type": "text",
575
+ "text": "Graph convolutional neural networks on graphs. The success of CNNs when dealing with images, videos, and speeches motivates researchers to design graph convolutional neural network on graphs. The key of generalizing CNNs to graphs is defining convolution operator on graphs. Existing methods are classified into two categories, i.e., spectral methods and spatial methods. ",
576
+ "bbox": [
577
+ 174,
578
+ 140,
579
+ 823,
580
+ 195
581
+ ],
582
+ "page_idx": 4
583
+ },
584
+ {
585
+ "type": "text",
586
+ "text": "Spectral methods define convolution via convolution theorem. Spectral CNN (Bruna et al., 2014) is the first attempt at implementing CNNs on graphs, leveraging graph Fourier transform and defining convolution kernel in spectral domain. Boscaini et al. (2015) developed a local spectral CNN approach based on the graph Windowed Fourier Transform. Defferrard et al. (2016) introduced a Chebyshev polynomial parametrization for spectral filter, offering us a fast localized spectral filtering method. Kipf & Welling (2017) provided a simplified version of ChebyNet, gaining success in graph-based semi-supervised learning task. Khasanova & Frossard (2017) represented images as signals on graph and learned their transformation invariant representations. They used Chebyshev approximations to implement graph convolution, avoiding matrix eigendecomposition. Levie et al. (2017) used rational functions instead of polynomials and created anisotropic spectral filters on manifolds. ",
587
+ "bbox": [
588
+ 174,
589
+ 203,
590
+ 825,
591
+ 356
592
+ ],
593
+ "page_idx": 4
594
+ },
595
+ {
596
+ "type": "text",
597
+ "text": "Spatial methods define convolution as a weighted average function over neighborhood of target vertex. GraphSAGE takes one-hop neighbors as neighborhoods and defines the weighting function as various aggregators over neighborhood (Hamilton et al., 2017). Graph attention network (GAT) proposes to learn the weighting function via self-attention mechanism (Velickovic et al., 2017). MoNet offers us a general framework for design spatial methods, taking convolution as the weighted average of multiple weighting functions defined over neighborhood (Monti et al., 2017). Some works devote to making graph convolutional networks more powerful. Monti et al. (2018) alternated convolutions on vertices and edges, generalizing GAT and leading to better performance. GraphsGAN (Ding et al., 2018) generalizes GANs to graph, and generates fake samples in low-density areas between subgraphs to improve the performance on graph-based semi-supervised learning. ",
598
+ "bbox": [
599
+ 174,
600
+ 362,
601
+ 825,
602
+ 502
603
+ ],
604
+ "page_idx": 4
605
+ },
606
+ {
607
+ "type": "text",
608
+ "text": "Graph wavelets. Sweldens (1998) presented a lifting scheme, a simple construction of wavelets that can be adapted to graphs without learning process. Hammond et al. (2011) proposed a method to construct wavelet transform on graphs. Moreover, they designed an efficient way to bypass the eigendecomposition of the Laplacian and approximated wavelets with Chebyshev polynomials. Tremblay & Borgnat (2014) leveraged graph wavelets for multi-scale community mining by modulating a scaling parameter. Owing to the property of describing information diffusion, Donnat et al. (2018) learned structural node embeddings via wavelets. All these works prove that graph wavelets are not only local and sparse but also valuable for signal processiong on graph. ",
609
+ "bbox": [
610
+ 173,
611
+ 508,
612
+ 825,
613
+ 621
614
+ ],
615
+ "page_idx": 4
616
+ },
617
+ {
618
+ "type": "text",
619
+ "text": "4 EXPERIMENTS ",
620
+ "text_level": 1,
621
+ "bbox": [
622
+ 176,
623
+ 651,
624
+ 326,
625
+ 667
626
+ ],
627
+ "page_idx": 4
628
+ },
629
+ {
630
+ "type": "text",
631
+ "text": "4.1 DATASETS ",
632
+ "text_level": 1,
633
+ "bbox": [
634
+ 174,
635
+ 689,
636
+ 287,
637
+ 704
638
+ ],
639
+ "page_idx": 4
640
+ },
641
+ {
642
+ "type": "text",
643
+ "text": "To evaluate the proposed GWNN, we apply GWNN on semi-supervised node classification, and conduct experiments on three benchmark datasets, namely, Cora, Citeseer and Pubmed (Sen et al., 2008). In the three citation network datasets, nodes represent documents and edges are citation links. Details of these datasets are demonstrated in Table 1. Here, the label rate denotes the proportion of labeled nodes used for training. Following the experimental setup of GCN (Kipf & Welling, 2017), we fetch 20 labeled nodes per class in each dataset to train the model. ",
644
+ "bbox": [
645
+ 174,
646
+ 719,
647
+ 825,
648
+ 804
649
+ ],
650
+ "page_idx": 4
651
+ },
652
+ {
653
+ "type": "table",
654
+ "img_path": "images/46f47136cd2e57d6c2f4a847207ad40352c6c9a762d65d6f9b2277a136fbcf2c.jpg",
655
+ "table_caption": [
656
+ "Table 1: The Statistics of Datasets "
657
+ ],
658
+ "table_footnote": [],
659
+ "table_body": "<table><tr><td>Dataset</td><td>Nodes</td><td>Edges</td><td>Classes</td><td>Features</td><td>Label Rate</td></tr><tr><td>Cora</td><td>2,708</td><td>5,429</td><td>7</td><td>1,433</td><td>0.052</td></tr><tr><td>Citeseer</td><td>3,327</td><td>4,732</td><td>6</td><td>3,703</td><td>0.036</td></tr><tr><td>Pubmed</td><td>19,717</td><td>44,338</td><td>3</td><td>500</td><td>0.003</td></tr></table>",
660
+ "bbox": [
661
+ 285,
662
+ 848,
663
+ 707,
664
+ 905
665
+ ],
666
+ "page_idx": 4
667
+ },
668
+ {
669
+ "type": "text",
670
+ "text": "4.2 BASELINES",
671
+ "text_level": 1,
672
+ "bbox": [
673
+ 174,
674
+ 103,
675
+ 294,
676
+ 117
677
+ ],
678
+ "page_idx": 5
679
+ },
680
+ {
681
+ "type": "text",
682
+ "text": "We compare with several traditional semi-supervised learning methods, including label propagation (LP) (Zhu et al., 2003), semi-supervised embedding (SemiEmb) (Weston et al., 2012), manifold regularization (ManiReg) (Belkin et al., 2006), graph embeddings (DeepWalk) (Perozzi et al., 2014), iterative classification algorithm (ICA) (Lu & Getoor, 2003) and Planetoid (Yang et al., 2016). ",
683
+ "bbox": [
684
+ 174,
685
+ 130,
686
+ 825,
687
+ 185
688
+ ],
689
+ "page_idx": 5
690
+ },
691
+ {
692
+ "type": "text",
693
+ "text": "Furthermore, along with the development of deep learning on graph, graph convolutional networks are proved to be effective in semi-supervised learning. Since our method is a spectral method based on convolution theorem, we compare it with the Spectral CNN (Bruna et al., 2014). ChebyNet (Defferrard et al., 2016) and GCN (Kipf & Welling, 2017), two variants of the Spectral CNN, are also included as our baselines. Considering spatial methods, we take MoNet (Monti et al., 2017) as our baseline, which also depends on Laplacian matrix. ",
694
+ "bbox": [
695
+ 174,
696
+ 193,
697
+ 825,
698
+ 276
699
+ ],
700
+ "page_idx": 5
701
+ },
702
+ {
703
+ "type": "text",
704
+ "text": "4.3 EXPERIMENTAL SETTINGS ",
705
+ "text_level": 1,
706
+ "bbox": [
707
+ 176,
708
+ 294,
709
+ 398,
710
+ 308
711
+ ],
712
+ "page_idx": 5
713
+ },
714
+ {
715
+ "type": "text",
716
+ "text": "We train a two-layer graph wavelet neural network with 16 hidden units, and prediction accuracy is evaluated on a test set of 1000 labeled samples. The partition of datasets is the same as GCN (Kipf & Welling, 2017) with an additional validation set of 500 labeled samples to determine hyper-parameters. ",
717
+ "bbox": [
718
+ 174,
719
+ 320,
720
+ 823,
721
+ 376
722
+ ],
723
+ "page_idx": 5
724
+ },
725
+ {
726
+ "type": "text",
727
+ "text": "Weights are initialized following Glorot & Bengio (2010). We adopt the Adam optimizer (Kingma & Ba, 2014) for parameter optimization with an initial learning rate $l r = 0 . 0 1$ . For computational efficiency, we set the elements of $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ smaller than a threshold $t$ to 0. We find the optimal hyper-parameters $s$ and $t$ through grid search, and the detailed discussion about the two hyperparameters is introduced in Appendix B. For Cora, $s = 1 . 0$ and $t = 1 e - 4$ . For Citeseer, $s = 0 . 7$ and $t = 1 e - 5$ . For Pubmed, $s = 0 . 5$ and $t = 1 e - 7$ . To avoid overfitting, dropout (Srivastava et al., 2014) is applied. Meanwhile, we terminate the training if the validation loss does not decrease for 100 consecutive epochs. ",
728
+ "bbox": [
729
+ 174,
730
+ 382,
731
+ 825,
732
+ 494
733
+ ],
734
+ "page_idx": 5
735
+ },
736
+ {
737
+ "type": "text",
738
+ "text": "4.4 ANALYSIS ON DETACHING FEATURE TRANSFORMATION FROM CONVOLUTION ",
739
+ "text_level": 1,
740
+ "bbox": [
741
+ 173,
742
+ 513,
743
+ 746,
744
+ 526
745
+ ],
746
+ "page_idx": 5
747
+ },
748
+ {
749
+ "type": "text",
750
+ "text": "Since the number of parameters for the undetached version of GWNN is $O ( n \\times p \\times q )$ , we can hardly implement this version in the case of networks with a large number $n$ of nodes and a huge number $p$ of input features. Here, we validate the effectiveness of detaching feature transformation form convolution on ChebyNet (introduced in Section 2.2), whose parameter complexity is $O ( K \\times$ $p \\times q \\rangle$ . For ChebyNet of detaching feature transformation from graph convolution, the number of parameters is reduced to $O ( K + p \\times q )$ . Table 2 shows the performance and the number of parameters on three datasets. Here, the reported performance is the optimal performance varying the order $K = 2 , 3 , 4$ . ",
751
+ "bbox": [
752
+ 174,
753
+ 537,
754
+ 825,
755
+ 650
756
+ ],
757
+ "page_idx": 5
758
+ },
759
+ {
760
+ "type": "table",
761
+ "img_path": "images/d8b7835732339c77405a5253f8a71360b62a31a0f64147efd6311681195d4217.jpg",
762
+ "table_caption": [
763
+ "Table 2: Results of Detaching Feature Transformation from Convolution "
764
+ ],
765
+ "table_footnote": [],
766
+ "table_body": "<table><tr><td></td><td>Method</td><td>Cora</td><td>Citeseer</td><td>Pubmed</td></tr><tr><td rowspan=\"2\">Prediction Accuracy</td><td>ChebyNet</td><td>81.2%</td><td>69.8%</td><td>74.4%</td></tr><tr><td>Detaching-ChebyNet</td><td>81.6%</td><td>68.5%</td><td>78.6%</td></tr><tr><td rowspan=\"2\">Number of Parameters</td><td>ChebyNet</td><td>46.080 (K=2)</td><td>178,032 (K=3)</td><td>24,144 (K=3)</td></tr><tr><td>Detaching-ChebyNet</td><td>23,048 (K=4)</td><td>59,348 (K=2)</td><td>8,054 (K=3)</td></tr></table>",
767
+ "bbox": [
768
+ 187,
769
+ 685,
770
+ 807,
771
+ 753
772
+ ],
773
+ "page_idx": 5
774
+ },
775
+ {
776
+ "type": "text",
777
+ "text": "As demonstrated in Table 2, with fewer parameters, we improve the accuracy on Pubmed by a large margin. This is due to that the label rate of Pubmed is only 0.003. By detaching feature transformation from convolution, the parameter complexity is significantly reduced, alleviating overfitting in semi-supervised learning and thus remarkably improving prediction accuracy. On Citeseer, there is a little drop on the accuracy. One possible explanation is that reducing the number of parameters may restrict the modeling capacity to some degree. ",
778
+ "bbox": [
779
+ 174,
780
+ 767,
781
+ 825,
782
+ 852
783
+ ],
784
+ "page_idx": 5
785
+ },
786
+ {
787
+ "type": "text",
788
+ "text": "4.5 PERFORMANCE OF GWNN ",
789
+ "text_level": 1,
790
+ "bbox": [
791
+ 176,
792
+ 868,
793
+ 401,
794
+ 883
795
+ ],
796
+ "page_idx": 5
797
+ },
798
+ {
799
+ "type": "text",
800
+ "text": "We now validate the effectiveness of GWNN with detaching technique on node classification. Experimental results are reported in Table 3. GWNN improves the classification accuracy on all the three datasets. In particular, replacing Fourier transform with wavelet transform, the proposed GWNN is comfortably ahead of Spectral CNN, achieving $1 0 \\%$ improvement on Cora and Citeseer, and $5 \\%$ improvement on Pubmed. The large improvement could be explained from two perspectives: (1) Convolution in Spectral CNN is non-local in vertex domain, and thus the range of feature diffusion is not restricted to neighboring nodes; (2) The scaling parameter $s$ of wavelet transform is flexible to adjust the diffusion range to suit different applications and different networks. GWNN consistently outperforms ChebyNet, since it has enough degree of freedom to learn the convolution kernel, while ChebyNet is a kind of approximation with limited degree of freedom. Furthermore, our GWNN also performs better than GCN and MoNet, reflecting that it is promising to design appropriate bases for spectral methods to achieve good performance. ",
801
+ "bbox": [
802
+ 176,
803
+ 895,
804
+ 823,
805
+ 924
806
+ ],
807
+ "page_idx": 5
808
+ },
809
+ {
810
+ "type": "table",
811
+ "img_path": "images/efcc48009a768d9a3fb2248ded3c8d2323d70d2efe5c7ea490293d52b4341c0a.jpg",
812
+ "table_caption": [
813
+ "Table 3: Results of Node Classification "
814
+ ],
815
+ "table_footnote": [],
816
+ "table_body": "<table><tr><td>Method</td><td>Cora</td><td>Citeseer</td><td>Pubmed</td></tr><tr><td>MLP</td><td>55.1%</td><td>46.5%</td><td>71.4%</td></tr><tr><td>ManiReg</td><td>59.5%</td><td>60.1%</td><td>70.7%</td></tr><tr><td>SemiEmb</td><td>59.0%</td><td>59.6%</td><td>71.7%</td></tr><tr><td>LP</td><td>68.0%</td><td>45.3%</td><td>63.0%</td></tr><tr><td>DeepWalk</td><td>67.2%</td><td>43.2%</td><td>65.3%</td></tr><tr><td>ICA</td><td>75.1%</td><td>69.1%</td><td>73.9%</td></tr><tr><td>Planetoid</td><td>75.7%</td><td>64.7%</td><td>77.2%</td></tr><tr><td>Spectral CNN</td><td>73.3%</td><td>58.9%</td><td>73.9%</td></tr><tr><td>ChebyNet</td><td>81.2%</td><td>69.8%</td><td>74.4%</td></tr><tr><td>GCN</td><td>81.5%</td><td>70.3%</td><td>79.0%</td></tr><tr><td>MoNet</td><td>81.7±0.5%</td><td></td><td>78.8±0.3%</td></tr><tr><td>GWNN</td><td>82.8%</td><td>71.7%</td><td>79.1%</td></tr></table>",
817
+ "bbox": [
818
+ 320,
819
+ 122,
820
+ 673,
821
+ 292
822
+ ],
823
+ "page_idx": 6
824
+ },
825
+ {
826
+ "type": "text",
827
+ "text": "",
828
+ "bbox": [
829
+ 173,
830
+ 318,
831
+ 825,
832
+ 457
833
+ ],
834
+ "page_idx": 6
835
+ },
836
+ {
837
+ "type": "text",
838
+ "text": "4.6 ANALYSIS ON SPARSITY ",
839
+ "text_level": 1,
840
+ "bbox": [
841
+ 176,
842
+ 474,
843
+ 380,
844
+ 488
845
+ ],
846
+ "page_idx": 6
847
+ },
848
+ {
849
+ "type": "text",
850
+ "text": "Besides the improvement on prediction accuracy, wavelet transform with localized and sparse transform matrix holds sparsity in both spatial domain and spectral domain. Here, we take Cora as an example to illustrate the sparsity of graph wavelet transform. ",
851
+ "bbox": [
852
+ 174,
853
+ 500,
854
+ 825,
855
+ 542
856
+ ],
857
+ "page_idx": 6
858
+ },
859
+ {
860
+ "type": "text",
861
+ "text": "The sparsity of transform matrix. There are 2,708 nodes in Cora. Thus, the wavelet transform matrix $\\psi _ { s } ^ { - 1 }$ and the Fourier transform matrix $U ^ { \\top }$ both belong to $\\mathbb { R } ^ { 2 , 7 0 8 \\times 2 , 7 0 8 }$ . The first two rows in Table 4 demonstrate that $\\psi _ { s } ^ { - 1 }$ is much sparser than $U ^ { \\top }$ . Sparse wavelets not only accelerate the computation, but also well capture the neighboring topology centered at each node. ",
862
+ "bbox": [
863
+ 173,
864
+ 549,
865
+ 825,
866
+ 604
867
+ ],
868
+ "page_idx": 6
869
+ },
870
+ {
871
+ "type": "text",
872
+ "text": "The sparsity of projected signal. As mentioned above, each node in Cora represents a document and has a sparse bag-of-words feature. The input feature $\\ b { X } \\in \\mathbb { R } ^ { n \\times p }$ is a binary matrix, and $X _ { [ i , j ] } =$ 1 when the $i$ -th document contains the $j$ -th word in the bag of words, it equals 0 otherwise. Here, $X _ { [ : , j ] }$ denotes the $j$ -th column of $\\boldsymbol { X }$ , and each column represents the feature vector of a word. Considering a specific signal $X _ { [ : , 9 8 4 ] }$ , we project the spatial signal into spectral domain, and get its projected vector. Here, $p = \\bar { \\psi _ { s } ^ { - 1 } } X _ { [ : , 9 8 4 ] }$ denotes the projected vector via wavelet transform, $\\pmb { q } = \\pmb { U } ^ { \\top } \\pmb { X } _ { [ : , 9 8 4 ] }$ denotes the projected vector via Fourier transform, and $\\pmb { p } , \\pmb { q } \\in \\mathbb { R } ^ { 2 , 7 0 8 }$ . The last row in Table 4 lists the numbers of non-zero elements in $\\pmb { p }$ and $\\pmb q$ . As shown in Table 4, with wavelet transform, the projected signal is much sparser. ",
873
+ "bbox": [
874
+ 173,
875
+ 612,
876
+ 825,
877
+ 742
878
+ ],
879
+ "page_idx": 6
880
+ },
881
+ {
882
+ "type": "table",
883
+ "img_path": "images/b83a988b9d0546311226519134a20bc2d2eef6892a04afc155ea89885703e987.jpg",
884
+ "table_caption": [
885
+ "Table 4: Statistics of wavelet transform and Fourier transform on Cora "
886
+ ],
887
+ "table_footnote": [],
888
+ "table_body": "<table><tr><td></td><td>Statistical Property</td><td>wavelettransform</td><td>Fouriertransform</td></tr><tr><td rowspan=\"2\">Transform Matrix</td><td>Density</td><td>2.8%</td><td>99.1%</td></tr><tr><td>Number of Non-zero Elements</td><td>205,774</td><td>7,274,383</td></tr><tr><td rowspan=\"2\">Projected Signal</td><td>Density</td><td>10.9%</td><td>100%</td></tr><tr><td>Number of Non-zero Elements</td><td>297</td><td>2,708</td></tr></table>",
889
+ "bbox": [
890
+ 192,
891
+ 776,
892
+ 802,
893
+ 845
894
+ ],
895
+ "page_idx": 6
896
+ },
897
+ {
898
+ "type": "text",
899
+ "text": "4.7 ANALYSIS ON INTERPRETABILITY ",
900
+ "text_level": 1,
901
+ "bbox": [
902
+ 176,
903
+ 869,
904
+ 449,
905
+ 883
906
+ ],
907
+ "page_idx": 6
908
+ },
909
+ {
910
+ "type": "text",
911
+ "text": "Compare with graph convolution network using Fourier transform, GWNN provides good interpretability. Here, we show the interpretability with specific examples in Cora. ",
912
+ "bbox": [
913
+ 174,
914
+ 895,
915
+ 823,
916
+ 924
917
+ ],
918
+ "page_idx": 6
919
+ },
920
+ {
921
+ "type": "text",
922
+ "text": "Each feature, i.e. word in the bag of words, has a projected vector, and each element in this vector is associated with a spectral wavelet basis. Here, each basis is centered at a node, corresponding to a document. The value can be regarded as the relation between the word and the document. Thus, each value in $\\pmb { p }$ can be interpreted as the relation between $W o r d _ { 9 8 4 }$ and a document. In order to elaborate the interpretability of wavelet transform, we analyze the projected values of different feature as following. ",
923
+ "bbox": [
924
+ 174,
925
+ 103,
926
+ 825,
927
+ 188
928
+ ],
929
+ "page_idx": 7
930
+ },
931
+ {
932
+ "type": "text",
933
+ "text": "Considering two features $W o r d _ { 9 8 4 }$ and $W o r d _ { 1 1 7 7 }$ , we select the top-10 active bases, which have the 10 largest projected values of each feature. As illustrated in Figure 2, for clarity, we magnify the local structure of corresponding nodes and marked them with bold rims. The central network in each subgraph denotes the dataset Cora, each node represents a document, and 7 different colors represent 7 classes. These nodes are clustered by OpenOrd (Martin et al., 2011) based on the adjacency matrix. ",
934
+ "bbox": [
935
+ 174,
936
+ 194,
937
+ 825,
938
+ 263
939
+ ],
940
+ "page_idx": 7
941
+ },
942
+ {
943
+ "type": "text",
944
+ "text": "Figure 2a shows the top-10 active bases of $W o r d _ { 9 8 4 }$ . In Cora, this word only appears 8 times, and all the documents containing $W o r d _ { 9 8 4 }$ belong to the class “ Case-Based ”. Consistently, all top-10 nodes activated by $W o r d _ { 9 8 4 }$ are concentrated and belong to the class “ Case-Based ”. And, the frequencies of $W o r d _ { 1 1 7 7 }$ appearing in different classes are similar, indicating that $W o r d _ { 1 1 7 7 }$ is a universal word. In concordance with our expectation, the top-10 active bases of $W o r d _ { 1 1 7 7 }$ are discrete and belong to different classes in Figure 2b. ",
945
+ "bbox": [
946
+ 173,
947
+ 270,
948
+ 825,
949
+ 354
950
+ ],
951
+ "page_idx": 7
952
+ },
953
+ {
954
+ "type": "image",
955
+ "img_path": "images/4ea6f31973347c969205987dfaf594ad41a7761eb7d83787038298d9e7dd7f3d.jpg",
956
+ "image_caption": [
957
+ "Figure 2: Top-10 active bases of two words in Cora. The central network of each subgraph represents the dataset Cora, which is split into 7 classes. Each node represents a document, and its color indicates its label. The nodes that represent the top-10 active bases are marked with bold rims. (a) $W o r d _ { 9 8 4 }$ only appears in documents of the class “ Case-Based ” in Cora. Consistently, all its 10 active bases also belong to the class “ Case-Based ”. (b) The frequencies of $W o r d _ { 1 1 7 7 }$ appearing in different classes are similar in Cora. As expected, the top-10 active bases of $W o r d _ { 1 1 7 7 }$ also belong to different classes. "
958
+ ],
959
+ "image_footnote": [],
960
+ "bbox": [
961
+ 173,
962
+ 386,
963
+ 816,
964
+ 579
965
+ ],
966
+ "page_idx": 7
967
+ },
968
+ {
969
+ "type": "text",
970
+ "text": "Owing to the properties of graph wavelets, which describe the neighboring topology centered at each node, the projected values of wavelet transform can be explained as the correlation between features and nodes. These properties provide an interpretable domain transformation and ease the understanding of graph convolution. ",
971
+ "bbox": [
972
+ 174,
973
+ 709,
974
+ 825,
975
+ 765
976
+ ],
977
+ "page_idx": 7
978
+ },
979
+ {
980
+ "type": "text",
981
+ "text": "5 CONCLUSION ",
982
+ "text_level": 1,
983
+ "bbox": [
984
+ 176,
985
+ 791,
986
+ 318,
987
+ 808
988
+ ],
989
+ "page_idx": 7
990
+ },
991
+ {
992
+ "type": "text",
993
+ "text": "Replacing graph Fourier transform with graph wavelet transform, we proposed GWNN. Graph wavelet transform has three desirable properties: (1) Graph wavelets are local and sparse; (2) Graph wavelet transform is computationally efficient; (3) Convolution is localized in vertex domain. These advantages make the whole learning process interpretable and efficient. Moreover, to reduce the number of parameters and the dependence on huge training data, we detached the feature transformation from convolution. This practice makes GWNN applicable to large graphs, with remarkable performance improvement on graph-based semi-supervised learning. ",
994
+ "bbox": [
995
+ 174,
996
+ 825,
997
+ 825,
998
+ 924
999
+ ],
1000
+ "page_idx": 7
1001
+ },
1002
+ {
1003
+ "type": "text",
1004
+ "text": "6 ACKNOWLEDGEMENTS ",
1005
+ "text_level": 1,
1006
+ "bbox": [
1007
+ 174,
1008
+ 102,
1009
+ 398,
1010
+ 118
1011
+ ],
1012
+ "page_idx": 8
1013
+ },
1014
+ {
1015
+ "type": "text",
1016
+ "text": "This work is funded by the National Natural Science Foundation of China under grant numbers 61425016, 61433014, and 91746301. Huawei Shen is also funded by K.C. Wong Education Foundation and the Youth Innovation Promotion Association of the Chinese Academy of Sciences. ",
1017
+ "bbox": [
1018
+ 174,
1019
+ 132,
1020
+ 825,
1021
+ 175
1022
+ ],
1023
+ "page_idx": 8
1024
+ },
1025
+ {
1026
+ "type": "text",
1027
+ "text": "REFERENCES ",
1028
+ "text_level": 1,
1029
+ "bbox": [
1030
+ 176,
1031
+ 196,
1032
+ 285,
1033
+ 212
1034
+ ],
1035
+ "page_idx": 8
1036
+ },
1037
+ {
1038
+ "type": "text",
1039
+ "text": "Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric framework for learning from labeled and unlabeled examples. Journal of machine learning research, 7 (Nov):2399–2434, 2006. ",
1040
+ "bbox": [
1041
+ 174,
1042
+ 219,
1043
+ 825,
1044
+ 261
1045
+ ],
1046
+ "page_idx": 8
1047
+ },
1048
+ {
1049
+ "type": "text",
1050
+ "text": "Davide Boscaini, Jonathan Masci, Simone Melzi, Michael M Bronstein, Umberto Castellani, and Pierre Vandergheynst. Learning class-specific descriptors for deformable shapes using localized spectral convolutional networks. In Computer Graphics Forum, volume 34, pp. 13–23. Wiley Online Library, 2015. ",
1051
+ "bbox": [
1052
+ 173,
1053
+ 270,
1054
+ 825,
1055
+ 327
1056
+ ],
1057
+ "page_idx": 8
1058
+ },
1059
+ {
1060
+ "type": "text",
1061
+ "text": "Michael M Bronstein, Joan Bruna, Yann LeCun, Arthur Szlam, and Pierre Vandergheynst. Geometric deep learning: going beyond euclidean data. IEEE Signal Processing Magazine, 34(4):18–42, 2017. ",
1062
+ "bbox": [
1063
+ 173,
1064
+ 335,
1065
+ 825,
1066
+ 377
1067
+ ],
1068
+ "page_idx": 8
1069
+ },
1070
+ {
1071
+ "type": "text",
1072
+ "text": "Joan Bruna, Wojciech Zaremba, Arthur Szlam, and Yann Lecun. Spectral networks and locally connected networks on graphs. In International Conference on Learning Representations (ICLR2014), CBLS, April 2014, 2014. ",
1073
+ "bbox": [
1074
+ 173,
1075
+ 387,
1076
+ 825,
1077
+ 429
1078
+ ],
1079
+ "page_idx": 8
1080
+ },
1081
+ {
1082
+ "type": "text",
1083
+ "text": "Michael Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks ¨ on graphs with fast localized spectral filtering. In Advances in Neural Information Processing Systems, pp. 3844–3852, 2016. ",
1084
+ "bbox": [
1085
+ 173,
1086
+ 438,
1087
+ 825,
1088
+ 481
1089
+ ],
1090
+ "page_idx": 8
1091
+ },
1092
+ {
1093
+ "type": "text",
1094
+ "text": "Ming Ding, Jie Tang, and Jie Zhang. Semi-supervised learning on graphs with generative adversarial nets. In Proceedings of the 27th ACM International Conference on Information and Knowledge Management, pp. 913–922. ACM, 2018. ",
1095
+ "bbox": [
1096
+ 174,
1097
+ 488,
1098
+ 823,
1099
+ 531
1100
+ ],
1101
+ "page_idx": 8
1102
+ },
1103
+ {
1104
+ "type": "text",
1105
+ "text": "Claire Donnat, Marinka Zitnik, David Hallac, and Jure Leskovec. Learning structural node embeddings via diffusion wavelets. 2018. ",
1106
+ "bbox": [
1107
+ 171,
1108
+ 540,
1109
+ 823,
1110
+ 569
1111
+ ],
1112
+ "page_idx": 8
1113
+ },
1114
+ {
1115
+ "type": "text",
1116
+ "text": "Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the thirteenth international conference on artificial intelligence and statistics, pp. 249–256, 2010. ",
1117
+ "bbox": [
1118
+ 173,
1119
+ 577,
1120
+ 823,
1121
+ 621
1122
+ ],
1123
+ "page_idx": 8
1124
+ },
1125
+ {
1126
+ "type": "text",
1127
+ "text": "Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in Neural Information Processing Systems, pp. 1024–1034, 2017. ",
1128
+ "bbox": [
1129
+ 171,
1130
+ 628,
1131
+ 823,
1132
+ 659
1133
+ ],
1134
+ "page_idx": 8
1135
+ },
1136
+ {
1137
+ "type": "text",
1138
+ "text": "David K Hammond, Pierre Vandergheynst, and Remi Gribonval. Wavelets on graphs via spectral ´ graph theory. Applied and Computational Harmonic Analysis, 30(2):129–150, 2011. ",
1139
+ "bbox": [
1140
+ 173,
1141
+ 666,
1142
+ 823,
1143
+ 695
1144
+ ],
1145
+ "page_idx": 8
1146
+ },
1147
+ {
1148
+ "type": "text",
1149
+ "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ",
1150
+ "bbox": [
1151
+ 176,
1152
+ 703,
1153
+ 823,
1154
+ 746
1155
+ ],
1156
+ "page_idx": 8
1157
+ },
1158
+ {
1159
+ "type": "text",
1160
+ "text": "Geoffrey Hinton, Li Deng, Dong Yu, George E Dahl, Abdel-rahman Mohamed, Navdeep Jaitly, Andrew Senior, Vincent Vanhoucke, Patrick Nguyen, Tara N Sainath, et al. Deep neural networks for acoustic modeling in speech recognition: The shared views of four research groups. IEEE Signal processing magazine, 29(6):82–97, 2012. ",
1161
+ "bbox": [
1162
+ 173,
1163
+ 755,
1164
+ 825,
1165
+ 813
1166
+ ],
1167
+ "page_idx": 8
1168
+ },
1169
+ {
1170
+ "type": "text",
1171
+ "text": "Renata Khasanova and Pascal Frossard. Graph-based isometry invariant representation learning. In International Conference on Machine Learning, pp. 1847–1856, 2017. ",
1172
+ "bbox": [
1173
+ 173,
1174
+ 820,
1175
+ 823,
1176
+ 849
1177
+ ],
1178
+ "page_idx": 8
1179
+ },
1180
+ {
1181
+ "type": "text",
1182
+ "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ",
1183
+ "bbox": [
1184
+ 174,
1185
+ 858,
1186
+ 821,
1187
+ 886
1188
+ ],
1189
+ "page_idx": 8
1190
+ },
1191
+ {
1192
+ "type": "text",
1193
+ "text": "Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations (ICLR), 2017. ",
1194
+ "bbox": [
1195
+ 174,
1196
+ 895,
1197
+ 820,
1198
+ 924
1199
+ ],
1200
+ "page_idx": 8
1201
+ },
1202
+ {
1203
+ "type": "text",
1204
+ "text": "Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´ document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. ",
1205
+ "bbox": [
1206
+ 171,
1207
+ 103,
1208
+ 823,
1209
+ 132
1210
+ ],
1211
+ "page_idx": 9
1212
+ },
1213
+ {
1214
+ "type": "text",
1215
+ "text": "Ron Levie, Federico Monti, Xavier Bresson, and Michael M Bronstein. Cayleynets: Graph convolutional neural networks with complex rational spectral filters. arXiv preprint arXiv:1705.07664, 2017. ",
1216
+ "bbox": [
1217
+ 176,
1218
+ 140,
1219
+ 823,
1220
+ 183
1221
+ ],
1222
+ "page_idx": 9
1223
+ },
1224
+ {
1225
+ "type": "text",
1226
+ "text": "Qing Lu and Lise Getoor. Link-based classification. In Proceedings of the 20th International Conference on Machine Learning (ICML-03), pp. 496–503, 2003. ",
1227
+ "bbox": [
1228
+ 173,
1229
+ 193,
1230
+ 825,
1231
+ 222
1232
+ ],
1233
+ "page_idx": 9
1234
+ },
1235
+ {
1236
+ "type": "text",
1237
+ "text": "Shawn Martin, W Michael Brown, Richard Klavans, and Kevin W Boyack. Openord: an opensource toolbox for large graph layout. In Visualization and Data Analysis 2011, volume 7868, pp. 786806. International Society for Optics and Photonics, 2011. ",
1238
+ "bbox": [
1239
+ 176,
1240
+ 229,
1241
+ 823,
1242
+ 273
1243
+ ],
1244
+ "page_idx": 9
1245
+ },
1246
+ {
1247
+ "type": "text",
1248
+ "text": "Federico Monti, Davide Boscaini, Jonathan Masci, Emanuele Rodola, Jan Svoboda, and Michael M Bronstein. Geometric deep learning on graphs and manifolds using mixture model cnns. In Proc. CVPR, volume 1, pp. 3, 2017. ",
1249
+ "bbox": [
1250
+ 173,
1251
+ 281,
1252
+ 826,
1253
+ 325
1254
+ ],
1255
+ "page_idx": 9
1256
+ },
1257
+ {
1258
+ "type": "text",
1259
+ "text": "Federico Monti, Oleksandr Shchur, Aleksandar Bojchevski, Or Litany, Stephan Gunnemann, ¨ and Michael M Bronstein. Dual-primal graph convolutional networks. arXiv preprint arXiv:1806.00770, 2018. ",
1260
+ "bbox": [
1261
+ 173,
1262
+ 333,
1263
+ 825,
1264
+ 376
1265
+ ],
1266
+ "page_idx": 9
1267
+ },
1268
+ {
1269
+ "type": "text",
1270
+ "text": "Bryan Perozzi, Rami Al-Rfou, and Steven Skiena. Deepwalk: Online learning of social representations. In Proceedings of the 20th ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 701–710. ACM, 2014. ",
1271
+ "bbox": [
1272
+ 174,
1273
+ 385,
1274
+ 825,
1275
+ 428
1276
+ ],
1277
+ "page_idx": 9
1278
+ },
1279
+ {
1280
+ "type": "text",
1281
+ "text": "Nathanael Perraudin, Johan Paratte, David Shuman, Lionel Martin, Vassilis Kalofolias, Pierre Van-¨ dergheynst, and David K Hammond. Gspbox: A toolbox for signal processing on graphs. arXiv preprint arXiv:1408.5781, 2014. ",
1282
+ "bbox": [
1283
+ 173,
1284
+ 436,
1285
+ 825,
1286
+ 479
1287
+ ],
1288
+ "page_idx": 9
1289
+ },
1290
+ {
1291
+ "type": "text",
1292
+ "text": "Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad. Collective classification in network data. AI magazine, 29(3):93, 2008. ",
1293
+ "bbox": [
1294
+ 174,
1295
+ 488,
1296
+ 825,
1297
+ 517
1298
+ ],
1299
+ "page_idx": 9
1300
+ },
1301
+ {
1302
+ "type": "text",
1303
+ "text": "David I Shuman, Sunil K Narang, Pascal Frossard, Antonio Ortega, and Pierre Vandergheynst. The emerging field of signal processing on graphs: Extending high-dimensional data analysis to networks and other irregular domains. IEEE Signal Processing Magazine, 30(3):83–98, 2013. ",
1304
+ "bbox": [
1305
+ 174,
1306
+ 525,
1307
+ 823,
1308
+ 569
1309
+ ],
1310
+ "page_idx": 9
1311
+ },
1312
+ {
1313
+ "type": "text",
1314
+ "text": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The Journal of Machine Learning Research, 15(1):1929–1958, 2014. ",
1315
+ "bbox": [
1316
+ 176,
1317
+ 577,
1318
+ 823,
1319
+ 621
1320
+ ],
1321
+ "page_idx": 9
1322
+ },
1323
+ {
1324
+ "type": "text",
1325
+ "text": "Wim Sweldens. The lifting scheme: A construction of second generation wavelets. SIAM journal on mathematical analysis, 29(2):511–546, 1998. ",
1326
+ "bbox": [
1327
+ 168,
1328
+ 628,
1329
+ 825,
1330
+ 659
1331
+ ],
1332
+ "page_idx": 9
1333
+ },
1334
+ {
1335
+ "type": "text",
1336
+ "text": "Nicolas Tremblay and Pierre Borgnat. Graph wavelets for multiscale community mining. IEEE Transactions on Signal Processing, 62(20):5227–5239, 2014. ",
1337
+ "bbox": [
1338
+ 171,
1339
+ 666,
1340
+ 823,
1341
+ 695
1342
+ ],
1343
+ "page_idx": 9
1344
+ },
1345
+ {
1346
+ "type": "text",
1347
+ "text": "Petar Velickovic, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, and Yoshua Bengio. Graph attention networks. arXiv preprint arXiv:1710.10903, 2017. ",
1348
+ "bbox": [
1349
+ 171,
1350
+ 704,
1351
+ 823,
1352
+ 734
1353
+ ],
1354
+ "page_idx": 9
1355
+ },
1356
+ {
1357
+ "type": "text",
1358
+ "text": "Jason Weston, Fred´ eric Ratle, Hossein Mobahi, and Ronan Collobert. Deep learning via semi- ´ supervised embedding. In Neural Networks: Tricks of the Trade, pp. 639–655. Springer, 2012. ",
1359
+ "bbox": [
1360
+ 171,
1361
+ 742,
1362
+ 821,
1363
+ 772
1364
+ ],
1365
+ "page_idx": 9
1366
+ },
1367
+ {
1368
+ "type": "text",
1369
+ "text": "Zhilin Yang, William Cohen, and Ruslan Salakhudinov. Revisiting semi-supervised learning with graph embeddings. In International Conference on Machine Learning, pp. 40–48, 2016. ",
1370
+ "bbox": [
1371
+ 171,
1372
+ 780,
1373
+ 823,
1374
+ 809
1375
+ ],
1376
+ "page_idx": 9
1377
+ },
1378
+ {
1379
+ "type": "text",
1380
+ "text": "Xiaojin Zhu, Zoubin Ghahramani, and John D Lafferty. Semi-supervised learning using gaussian fields and harmonic functions. In Proceedings of the 20th International conference on Machine learning (ICML-03), pp. 912–919, 2003. ",
1381
+ "bbox": [
1382
+ 174,
1383
+ 818,
1384
+ 825,
1385
+ 861
1386
+ ],
1387
+ "page_idx": 9
1388
+ },
1389
+ {
1390
+ "type": "text",
1391
+ "text": "We use a diagonal matrix $\\Theta$ to represent the learned kernel transformed by wavelets $\\psi _ { s } ^ { - 1 } \\pmb { y }$ , and replace the Hadamard product with matrix muplication. Then Equation (4) is: ",
1392
+ "bbox": [
1393
+ 173,
1394
+ 132,
1395
+ 823,
1396
+ 162
1397
+ ],
1398
+ "page_idx": 10
1399
+ },
1400
+ {
1401
+ "type": "equation",
1402
+ "img_path": "images/bb00eaaf20b8fc973533ae8321393cb8c9ad33242addee8f301279cb366623ee.jpg",
1403
+ "text": "$$\n\\pmb { x } * _ { \\mathcal { G } } \\pmb { y } = \\psi _ { s } \\Theta \\psi _ { s } ^ { - 1 } \\pmb { x } .\n$$",
1404
+ "text_format": "latex",
1405
+ "bbox": [
1406
+ 426,
1407
+ 167,
1408
+ 571,
1409
+ 186
1410
+ ],
1411
+ "page_idx": 10
1412
+ },
1413
+ {
1414
+ "type": "text",
1415
+ "text": "We set $\\psi _ { s } = ( \\psi _ { s 1 } , \\psi _ { s 2 } , . . . , \\psi _ { s n } )$ , $\\psi _ { s } ^ { - 1 } = ( \\psi _ { s 1 } ^ { * } , \\psi _ { s 2 } ^ { * } , . . . , \\psi _ { s n } ^ { * } )$ , and $\\Theta = \\mathrm { d i a g } ( \\{ \\theta _ { k } \\} _ { k = 1 } ^ { n } )$ . Equation (11) becomes : ",
1416
+ "bbox": [
1417
+ 176,
1418
+ 199,
1419
+ 826,
1420
+ 228
1421
+ ],
1422
+ "page_idx": 10
1423
+ },
1424
+ {
1425
+ "type": "equation",
1426
+ "img_path": "images/2826006a58deaa6e5c37eafe3865ee4566bc2a2852206f1de1021d4d95fed886.jpg",
1427
+ "text": "$$\n\\pmb { x } * _ { \\mathscr { G } } \\pmb { y } = \\sum _ { k = 1 } ^ { n } \\theta _ { k } \\psi _ { s k } ( \\psi _ { s k } ^ { * } ) ^ { \\top } \\pmb { x } .\n$$",
1428
+ "text_format": "latex",
1429
+ "bbox": [
1430
+ 397,
1431
+ 227,
1432
+ 599,
1433
+ 268
1434
+ ],
1435
+ "page_idx": 10
1436
+ },
1437
+ {
1438
+ "type": "text",
1439
+ "text": "As proved by Hammond et al. (2011), both $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ are local in small scale (s). Figure 3 shows the locality of $\\psi _ { s 1 }$ and $\\psi _ { s 1 } ^ { * }$ , i.e., the first column in $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ when $s = 3$ . Each column in $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ describes the neighboring topology of target node, which means that $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ are local. The locality of $\\psi _ { s k }$ and $\\psi _ { s k } ^ { * }$ leads to the locality of the resulting matrix of multiplication between the column vector $\\psi _ { s k }$ and row vector $( \\psi _ { s k } ^ { * } ) ^ { \\top }$ . For convenience, we set $M _ { k } = \\psi _ { s k } ( \\psi _ { s k } ^ { * } ) ^ { \\top }$ , $M _ { k [ i , j ] } > 0$ only when $\\psi _ { s k } [ i ] > 0$ and $( \\psi _ { s k } ^ { * } ) ^ { \\top } [ j ] > 0$ . In other words, if $M _ { k [ i , j ] } > 0$ , vertex $i$ and vertex $j$ can correlate with each other through vertex $k$ . ",
1440
+ "bbox": [
1441
+ 173,
1442
+ 279,
1443
+ 826,
1444
+ 383
1445
+ ],
1446
+ "page_idx": 10
1447
+ },
1448
+ {
1449
+ "type": "image",
1450
+ "img_path": "images/3bace0dca654718860a873ae36fecfdf5825bb2d5b239f07e6fb3900d9126899.jpg",
1451
+ "image_caption": [
1452
+ "Figure 3: Locality of (a) $\\psi _ { s 1 }$ and (b) $\\psi _ { s 1 } ^ { * }$ . "
1453
+ ],
1454
+ "image_footnote": [],
1455
+ "bbox": [
1456
+ 218,
1457
+ 412,
1458
+ 807,
1459
+ 553
1460
+ ],
1461
+ "page_idx": 10
1462
+ },
1463
+ {
1464
+ "type": "text",
1465
+ "text": "Since each $M _ { k }$ is local, for any convolution kernel $\\Theta$ , $\\psi _ { s } \\Theta \\psi _ { s } ^ { - 1 }$ is local, and it means that convolution is localized in vertex domain. By replacing $\\Theta$ with an identity matrix in Equation (12), we get $\\begin{array} { r } { \\pmb { x } * _ { \\mathcal { G } } \\pmb { y } = \\sum _ { k = 1 } ^ { n } M _ { k } \\pmb { x } } \\end{array}$ . We define $\\begin{array} { r } { \\mathbf { \\dot { H } } = \\sum _ { k = 1 } ^ { n ^ { * } } M _ { k } } \\end{array}$ , and Figure 4 shows $H _ { [ 1 , : ] }$ in different scaling, i.e., correlation between the first node and other nodes during convolution. The locality of $\\pmb { H }$ suggests that graph convolution is localized in vertex domain. Moreover, as the scaling parameter $s$ becomes larger, the range of feature diffusion becomes larger. ",
1466
+ "bbox": [
1467
+ 173,
1468
+ 593,
1469
+ 826,
1470
+ 679
1471
+ ],
1472
+ "page_idx": 10
1473
+ },
1474
+ {
1475
+ "type": "image",
1476
+ "img_path": "images/377dd1763f6ee42479178aa2c4bcb662df3cbd7f5dd463a3b122c3167e6d6b46.jpg",
1477
+ "image_caption": [
1478
+ "Figure 4: Correlation between first node and other nodes at (a) small scale and (b) large scale. Nonzero value of node represents correlation between this node and target node during convolution. Locality of $\\pmb { H }$ suggests that graph convolution is localized in vertex domain. Moreover, with scaling parameter $s$ becoming larger, the range of feature diffusion becomes larger. "
1479
+ ],
1480
+ "image_footnote": [],
1481
+ "bbox": [
1482
+ 218,
1483
+ 704,
1484
+ 807,
1485
+ 844
1486
+ ],
1487
+ "page_idx": 10
1488
+ },
1489
+ {
1490
+ "type": "image",
1491
+ "img_path": "images/40fcbdd4a017ec82e8d7bce4e03011ac72b42888e765e88a447a7ae0220b410e.jpg",
1492
+ "image_caption": [
1493
+ "Figure 5: Influence of $s$ and $t$ on Cora. "
1494
+ ],
1495
+ "image_footnote": [],
1496
+ "bbox": [
1497
+ 269,
1498
+ 142,
1499
+ 725,
1500
+ 393
1501
+ ],
1502
+ "page_idx": 11
1503
+ },
1504
+ {
1505
+ "type": "text",
1506
+ "text": "GWNN leverages graph wavelets to implement graph convolution, where $s$ is used to modulate the range of neighborhoods. From Figure 5, as $s$ becomes larger starting from 0, the range of neighboring nodes becomes large, resulting the increase of accuracy on Cora. However when $s$ becomes too large, some irrelevant nodes are included, leading to decreasing of accuracy. The hyperparameter $t$ only used for computational efficiency, has any slight influence on its performance. ",
1507
+ "bbox": [
1508
+ 174,
1509
+ 448,
1510
+ 825,
1511
+ 518
1512
+ ],
1513
+ "page_idx": 11
1514
+ },
1515
+ {
1516
+ "type": "text",
1517
+ "text": "For experiments on specific dataset, $s$ and $t$ are choosen via grid search using validation. Generally, a appropriate $s$ is in the range of [0.5, 1], which can not only capture the graph structure but also guarantee the locality of convolution, and $t$ is less insensive to dataset. ",
1518
+ "bbox": [
1519
+ 174,
1520
+ 525,
1521
+ 825,
1522
+ 566
1523
+ ],
1524
+ "page_idx": 11
1525
+ },
1526
+ {
1527
+ "type": "text",
1528
+ "text": "APPENDIX C PARAMETER COMPLEXITY OF NODE CLASSIFICATION ",
1529
+ "text_level": 1,
1530
+ "bbox": [
1531
+ 174,
1532
+ 588,
1533
+ 746,
1534
+ 606
1535
+ ],
1536
+ "page_idx": 11
1537
+ },
1538
+ {
1539
+ "type": "text",
1540
+ "text": "We show the parameter complexity of node classification in Table 5. The high parameter complexity $O ( n * p * q )$ of Spectral CNN makes it difficult to generalize to real world networks. ChebyNet approximates the convolution kernel via polynomial function of the diagonal matrix of Laplacian eigenvalues, reducing parameter complexity to $O ( K * p * q )$ with $K$ being the order of polynomial function. GCN simplifies ChebyNet via setting $K { = } 1$ . We detach feature transformation from graph convolution to implement GWNN and Spectral CNN in our experiments, which can reduce parameter to $O ( n + p * q )$ . ",
1541
+ "bbox": [
1542
+ 173,
1543
+ 621,
1544
+ 825,
1545
+ 720
1546
+ ],
1547
+ "page_idx": 11
1548
+ },
1549
+ {
1550
+ "type": "table",
1551
+ "img_path": "images/3397826a3f2f195422d11af03b53a1ac8fa2f563cee28d60d393f567a468acc8.jpg",
1552
+ "table_caption": [
1553
+ "Table 5: Parameter complexity of Node Classification "
1554
+ ],
1555
+ "table_footnote": [],
1556
+ "table_body": "<table><tr><td>Method</td><td>Cora</td><td>Citeseer</td><td>Pubmed</td></tr><tr><td>Spectral CNN</td><td>62,392,320</td><td>197,437,488</td><td>158,682,416</td></tr><tr><td>Spectral CNN (detaching)</td><td>28,456</td><td>65,379</td><td>47,482</td></tr><tr><td>ChebyNet</td><td>46,080 (K=2)</td><td>178,032 (K=3)</td><td>24,144 (K=3)</td></tr><tr><td>GCN</td><td>23,040</td><td>59,344</td><td>8.048</td></tr><tr><td>GWNN</td><td>28,456</td><td>65,379</td><td>47,482</td></tr></table>",
1557
+ "bbox": [
1558
+ 254,
1559
+ 757,
1560
+ 740,
1561
+ 838
1562
+ ],
1563
+ "page_idx": 11
1564
+ },
1565
+ {
1566
+ "type": "text",
1567
+ "text": "In Cora and Citeseer, with smaller parameter complexity, GWNN achieves better performance than ChebyNet, reflecting that it is promising to implement convolution via graph wavelet transform. As Pubmed has a large number of nodes, the parameter complexity of GWNN is larger than ChebyNet. As future work, it is an interesting attempt to select wavelets associated with a subset of nodes, further reducing parameter complexity with potential loss of performance. ",
1568
+ "bbox": [
1569
+ 174,
1570
+ 853,
1571
+ 825,
1572
+ 924
1573
+ ],
1574
+ "page_idx": 11
1575
+ },
1576
+ {
1577
+ "type": "text",
1578
+ "text": "APPENDIX D FAST GRAPH WAVELETS WITH CHEBYSHEV POLYNOMIAL APPROXIMATION ",
1579
+ "text_level": 1,
1580
+ "bbox": [
1581
+ 176,
1582
+ 102,
1583
+ 777,
1584
+ 136
1585
+ ],
1586
+ "page_idx": 12
1587
+ },
1588
+ {
1589
+ "type": "text",
1590
+ "text": "Hammond et al. (2011) proposed a method, using Chebyshev polynomials to efficiently approximate $\\psi _ { s }$ and $\\psi _ { s } ^ { - 1 }$ . The computational complexity is $O ( m \\times | \\mathbb { E } | )$ , where $\\lvert \\mathbb { E } \\rvert$ is the number of edges and $m$ is the order of Chebyshev polynomials. We give the details of the approximation proposed in Hammond et al. (2011). ",
1591
+ "bbox": [
1592
+ 174,
1593
+ 150,
1594
+ 825,
1595
+ 207
1596
+ ],
1597
+ "page_idx": 12
1598
+ },
1599
+ {
1600
+ "type": "text",
1601
+ "text": "With the stable recurrence relation $T _ { k } ( y ) = 2 y T _ { k - 1 } ( y ) - T _ { k - 2 } ( y )$ , we can generate the Chebyshev polynomials $T _ { k } ( y )$ . Here $T _ { 0 } = 1$ and $T _ { 1 } = y$ . For $y$ sampled between $^ { - 1 }$ and 1, the trigonometric expression $T _ { k } ( y ) = c o s ( k a r c c o s ( y ) )$ is satisfied. It shows that $T _ { k } ( y ) \\in [ - 1 , 1 ]$ when $y \\in [ - 1 , 1 ]$ . Through the Chebyshev polynomials, an orthogonal basis for the Hilbert space of square integrable functions $L ^ { 2 } ( [ - 1 , 1 ] , \\frac { d y } { \\sqrt { 1 - y ^ { 2 } } } )$ is formed. For each $h$ in this Hilbert space, we have a uniformly convergent Chebyshev series $\\begin{array} { r } { h ( y ) = \\frac { 1 } { 2 } c _ { 0 } + \\sum _ { k = 1 } ^ { \\infty } c _ { k } T _ { k } ( y ) } \\end{array}$ , and the Chebyshev coefficients $c _ { k } =$ $\\begin{array} { r } { \\frac { 2 } { \\pi } \\int _ { - 1 } ^ { 1 } \\frac { T _ { k } ( y ) h ( y ) } { \\sqrt { 1 - y ^ { 2 } } } d y = \\frac { 2 } { \\pi } \\int _ { 0 } ^ { \\pi } c o s ( k \\theta ) h ( \\bar { c o s } ( \\theta ) ) d \\theta } \\end{array}$ . A fixed scale $s$ is assumed. To approximate $g ( s x )$ for $x \\in [ 0 , \\lambda _ { m a x } ]$ , we can shift the domain through the transformation $x = a ( y + 1 ) $ , where $a =$ $\\frac { \\lambda _ { m a x } } { 2 }$ $\\begin{array} { r } { T _ { k } ^ { \\prime } ( x ) = T _ { k } ( \\frac { x - a } { a } ) } \\end{array}$ e shif, and , $\\frac { x - a } { a } \\in [ - 1 , 1 ]$ . $\\begin{array} { r } { g ( s x ) = \\frac { 1 } { 2 } c _ { 0 } + \\sum _ { k = 1 } ^ { \\infty } c _ { k } T _ { k } ^ { \\prime } ( x ) } \\end{array}$ $x \\in [ 0 , \\lambda _ { m a x } ]$ $\\begin{array} { r } { c _ { k } = \\frac { 2 } { \\pi } \\int _ { 0 } ^ { \\pi } c o s ( k \\theta ) g ( s ( a ( c o s ( \\theta ) + 1 ) ) ) d \\theta } \\end{array}$ we truncate the Chebyshev expansion to $m$ terms and achieve Polynomial approximation. ",
1602
+ "bbox": [
1603
+ 173,
1604
+ 213,
1605
+ 825,
1606
+ 395
1607
+ ],
1608
+ "page_idx": 12
1609
+ },
1610
+ {
1611
+ "type": "text",
1612
+ "text": "sgive the fast approximation wavelets by Here we give the example of the $\\psi _ { s } ^ { - 1 }$ and $\\begin{array} { r } { \\psi _ { s } ^ { - 1 } \\pmb { f } ^ { \\prime } = \\frac { 1 } { 2 } c _ { 0 } \\pmb { f } + \\sum _ { k = 1 } ^ { m } c _ { k } \\tilde { T _ { k } ^ { \\prime } } ( \\pmb { L } ) \\pmb { f } } \\end{array}$ $g ( s x ) = e ^ { - s x }$ , the graph signal is . The efficient compu- $\\pmb { f } \\in R ^ { n }$ . Then we can tation of $T _ { k } ^ { \\prime } ( { \\pmb { L } } )$ determines the utility of this approach, where $\\begin{array} { r } { T _ { k } ^ { \\prime } ( L ) \\dag = \\frac { 2 } { a } ( L - \\pmb { I } ) ( T _ { k - 1 } ^ { \\prime } ( L ) \\pmb { f } ) - } \\end{array}$ $T _ { k - 2 } ^ { \\prime } ( { \\pmb { L } } ) f$ . ",
1613
+ "bbox": [
1614
+ 173,
1615
+ 400,
1616
+ 825,
1617
+ 462
1618
+ ],
1619
+ "page_idx": 12
1620
+ },
1621
+ {
1622
+ "type": "text",
1623
+ "text": "APPENDIX E ANALYSIS ON SPASITY OF SPECTRAL TRANSFORM AND LAPLACIAN MATRIX ",
1624
+ "text_level": 1,
1625
+ "bbox": [
1626
+ 174,
1627
+ 481,
1628
+ 756,
1629
+ 515
1630
+ ],
1631
+ "page_idx": 12
1632
+ },
1633
+ {
1634
+ "type": "text",
1635
+ "text": "The sparsity of the graph wavelets depends on the sparsity of the Laplacian matrix and the hyperparameter $s$ , We show the sparsity of spectral transform matrix and Laplacian matrix in Table 6. ",
1636
+ "bbox": [
1637
+ 171,
1638
+ 530,
1639
+ 823,
1640
+ 559
1641
+ ],
1642
+ "page_idx": 12
1643
+ },
1644
+ {
1645
+ "type": "table",
1646
+ "img_path": "images/766f9b8ab3931be049c017c6559748ef27c69445d22629dd37dc23d433d61e67.jpg",
1647
+ "table_caption": [
1648
+ "Table 6: Statistics of spectral transform and Laplacian matrix on Cora "
1649
+ ],
1650
+ "table_footnote": [],
1651
+ "table_body": "<table><tr><td></td><td>Density</td><td>NumofNon-zeroElements</td></tr><tr><td>wavelettransform</td><td>2.8%</td><td>205,774</td></tr><tr><td>Fouriertransform</td><td>99.1%</td><td>7,274,383</td></tr><tr><td>Laplacian matrix</td><td>0.15%</td><td>10,858</td></tr></table>",
1652
+ "bbox": [
1653
+ 297,
1654
+ 593,
1655
+ 694,
1656
+ 648
1657
+ ],
1658
+ "page_idx": 12
1659
+ },
1660
+ {
1661
+ "type": "text",
1662
+ "text": "The sparsity of Laplacian matrix is sparser than graph wavelets, and this property limits our method, i.e., the higher time complexity than some methods depending on Laplacian matrix and identity matrix, e.g., GCN. Specifically, both our method and GCN aim to improve Spectral CNN via designing localized graph convolution. GCN, as a simplified version of ChebyNet, leverages Laplacian matrix as weighted matrix and expresses the spectral graph convolution in spatial domain, acting as spatial-like method (Monti et al., 2017). However, our method resorts to using graph wavelets as a new set of bases, directly designing localized spectral graph convolution. GWNN offers a localized graph convolution via replacing graph Fourier transform with graph wavelet transform, finding good spectral basis with localization property and good interpretability. This distinguishes GWNN from ChebyNet and GCN, which express the graph convolution defined via graph Fourier transform in vertex domain. ",
1663
+ "bbox": [
1664
+ 173,
1665
+ 662,
1666
+ 825,
1667
+ 815
1668
+ ],
1669
+ "page_idx": 12
1670
+ }
1671
+ ]
parse/train/H1ewdiR5tQ/H1ewdiR5tQ_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/H1ewdiR5tQ/H1ewdiR5tQ_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/HShLSEcVZJ4/HShLSEcVZJ4.md ADDED
@@ -0,0 +1,283 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Do Different Tracking Tasks Require Different Appearance Models?
2
+
3
+ Zhongdao Wang1,2
4
+
5
+ Hengshuang Zhao3,4
6
+
7
+ Ya-Li Li1,2
8
+
9
+ Shengjin Wang1,2∗
10
+
11
+ Philip H.S. Torr3
12
+
13
+ Luca Bertinetto5
14
+
15
+ 1Beijing National Research Center for Information Science and Technology (BNRist) 2Department of Electronic Engineering, Tsinghua University 3Torr Vision Group, University of Oxford 4The University of Hong Kong 5Five AI
16
+
17
+ https://zhongdao.github.io/UniTrack
18
+
19
+ # Abstract
20
+
21
+ Tracking objects of interest in a video is one of the most popular and widely applicable problems in computer vision. However, with the years, a Cambrian explosion of use cases and benchmarks has fragmented the problem in a multitude of different experimental setups. As a consequence, the literature has fragmented too, and now novel approaches proposed by the community are usually specialised to fit only one specific setup. To understand to what extent this specialisation is necessary, in this work we present UniTrack, a solution to address five different tasks within the same framework. UniTrack consists of a single and task-agnostic appearance model, which can be learned in a supervised or self-supervised fashion, and multiple “heads” that address individual tasks and do not require training. We show how most tracking tasks can be solved within this framework, and that the same appearance model can be successfully used to obtain results that are competitive against specialised methods for most of the tasks considered. The framework also allows us to analyse appearance models obtained with the most recent self-supervised methods, thus extending their evaluation and comparison to a larger variety of important problems.
22
+
23
+ # 1 Introduction
24
+
25
+ Unlike popular image-based computer vision tasks such as classification and object detection, which are (for the most part) unambiguous and clearly defined, the problem of object tracking has been considered under different setups and scenarios, each motivating the design of a separate set of benchmarks and methods. For instance, for the Single Object Tracking (SOT) and Video Object Segmentation (VOS) communities [70, 29, 48], tracking means estimating the location of an arbitrary user-annotated target object throughout a video, where the location of the object is represented by a bounding box in SOT and by a pixel-wise mask in VOS. Instead, in multiple object tracking settings (MOT [41], MOTS [57] and PoseTrack [2]), tracking means connecting sets of (often given) detections across video frames to address the problem of identity association and forming trajectories. Despite these tasks only differing in the number of objects per frame to consider and observation format (bounding boxes, keypoints or masks), the best practices developed by the methods tackling them vary significantly.
26
+
27
+ Though the proliferation of setups, benchmarks and methods is positive in that it allows specific use cases to be thoroughly studied, we argue it makes increasingly harder to effectively study one of the fundamental problems that all these tasks have in common, i.e. what constitutes a good representation to track objects throughout a video? Recent advancements in large-scale models for language [15, 6] and vision [24, 10] have suggested that a strong representation can help addressing multiple downstream tasks. Similarly, we speculate that a good representation is likely to benefit many different tracking tasks, regardless of their specific setup. In order to validate our speculation, in this paper we present a framework that allows to adopt the same appearance model to address five different tracking tasks (Figure 2). In our taxonomy (Figure 4), we consider existing tracking tasks as problems that have either propagation or association at their core. When the core problem is propagation (as in SOT and VOS), one has to localise a target object in the current frame given its location in the previous one. Instead, in association problems (MOT, MOTS, and PoseTrack), target states in both previous and current frames are given, and the goal is to determine the correspondence between the two sets of observations. We show how most tracking tasks currently considered by the community can be simply expressed starting from the primitives of propagation or association. For propagation tasks, we employ existing box and mask propagation algorithms [5, 61, 58]. For association tasks, we propose a novel reconstruction-based metric that leverages fine-grained correspondence to measure similarities between observations. In the proposed framework, each individual task is assigned to a dedicated “head” that allows to represent the object(s) in the appropriate format to compare against prior arts on the relevant benchmarks.
28
+
29
+ Note that, in our framework, only the appearance model contains parameters that can be learned via back-propagation, and that we do not experiment with appearance models that have been trained on specific tracking tasks. Instead, we adopt models trained via recent self-supervised learning (SSL) techniques and that have already demonstrated their effectiveness on a variety of image-based tasks. Our motivation is twofold. First, SSL models are particularly interesting for our use-case, as they are explicitly conceived to be of general purpose. As a byproduct, our work also serves the purpose of evaluating and comparing appearance models obtained from self-supervised learning approaches (see Figure 1). Second, we hope to facilitate the tracking community in directly benefiting from the rapid advancements of the self-supervised learning literature.
30
+
31
+ To summarise, the contributions of our work are as follows:
32
+
33
+ • We propose UniTrack, a framework that supports five tracking tasks: SOT [70], VOS [48], MOT [41], MOTS [57], and PoseTrack [2]; and that can be easily extended to new ones. • We show how UniTrack can leverage many existing general-purpose appearance models to achieve a performance that is competitive with the state-of-the-art on several tracking tasks. • We propose a novel reconstruction-based similarity metric for association that preserves fine-grained visual features and supports multiple observation formats (box, mask and pose). • We perform an extensive evaluation of self-supervised models, significantly extending the empirical analysis of prior literature to video-based tasks.
34
+
35
+ # 2 The UniTrack Framework
36
+
37
+ # 2.1 Overview
38
+
39
+ Inspecting existing tracking tasks and benchmarks, we noticed that their differences can be roughly categorised across four axes, illustrated in Figure 2 and detailed below.
40
+
41
+ 1. Whether the requirement is to track a single object (SOT [70, 29], VOS [48]), or multiple objects (MOT [48], MOTS [57], PoseTrack [2]).
42
+ 2. Whether the targets are specified by a user in the first frame only (SOT, VOS), or instead are given in every frame, e.g. by a pre-trained detector (MOT, MOTS, PoseTrack).
43
+ 3. Whether the target objects are represented by bounding-boxes (SOT, MOT), pixel-wise masks (VOS, MOTS) or pose annotations (PoseTrack).
44
+ 4. Whether the task is class-agnostic, i.e. the target objects can be of any class (SOT, VOS); or if instead they are from a predefined set of classes (MOT, MOTS, PoseTrack).
45
+
46
+ ![](images/973edc595a191507bf2aea6445c5996ec93f72ddb0e88f26b36898a37c68af52.jpg)
47
+ Figure 1: High-level overview of the performance of sixteen self-supervised learning models on five tracking tasks: SOT, VOS, MOT, PoseTracking and MOTS. A higher rank (better performance) corresponds to a vertex nearer to the outer circle. A larger area of the pentagon signifies better overall performance of its respective appearance model. Results of a vanilla ImageNet-supervised model are indicated with a gray dashed line as reference. Notice how the best model VFS [74] dominates on four out of the five tasks considered.
48
+
49
+ ![](images/bbb9bbd4ea2617640f93f785e04a83089c4d9e40003bce1b4598c8efce9b5721.jpg)
50
+ Figure 2: Existing tracking problems and their respective benchmarks differ from each other under several aspects: the assumption could be that there is a single or multiple objects to track; targets can be specified by the user in the first frame only, or assumed to be given at every frame (e.g. provided by a detector); the classes of the targets can be known (classspecific) or unknown (class-agnostic); the representation of the targets can be bounding boxes, pixel-wise masks, or pose annotations.
51
+
52
+ ![](images/3e4c1d7a0a214e23bfae3bfd3eb4d0f1e7cffa401be4de9a82fa1cb0dbdbfff7.jpg)
53
+ Figure 3: Overview of UniTrack. The framework can be divided in three levels. Level-1: a trainable appearance model. Level-2: the fundamental primitives of propagation and association. Level-3: task-specific heads.
54
+
55
+ Typically, in single-object tasks the target is specified by the user in the first frame, and it can be of any class. Instead, for multi-object tasks detections are generally considered as given for every frame, and the main challenge is to solve identity association for the several objects. Moreover, in multi-object tasks the set of classes to address is generally known (e.g. pedestrians or cars).
56
+
57
+ Figure 3 depicts a schematic overview of the proposed UniTrack framework, which can be understood as conceptually divided in three “levels”. The first level is represented by the appearance model, responsible for extracting high-resolution feature maps from the input frame (Section 2.2). The second level consists of the algorithmic primitives addressing propagation (Section 2.3) and association (Section 2.4). Finally, the last level comprises multiple task-specific algorithms that make direct use of the primitives of the second level. In this work, we illustrate how UniTrack can be used to obtain competitive performance on all of the five tracking tasks of level-3 from Figure 3. Moreover, new tracking tasks can be easily integrated.
58
+
59
+ Importantly, note that the appearance model is the only component containing trainable parameters. The reason we opted for a shared and non task-specific representation is twofold. Firstly, the large amount of different setups motivated us to investigate whether having separately-trained models for each setup is necessary. Since training on specific datasets can bias the representation towards a limited set of visual concepts (e.g. animals or vehicles) and limit its applicability to “open-world” settings, we wanted to understand how far can a shared representation go. Second, we wanted to provide the community with multiple baselines that can be used to better assess newly proposed contributions, and that can be immediately used on new datasets and tasks without the need of retraining.
60
+
61
+ ![](images/c9435ea1ecca12f41b32445059642d2821ee0a2c6e98ee2db02ea1a012fc3958.jpg)
62
+ Figure 4: Propagation v.s. Association. In the propagation problem, the goal is to estimate the target state at the current frame given the observation in the previous one. This is typically addressed for one object at the time. In the association problem, observations in both previous and current frames are given, and the goal is to determine correspondences between the two sets.
63
+
64
+ # 2.2 Base appearance model
65
+
66
+ The base appearance model $\phi$ takes as input a 2D image $I$ and outputs a feature map $X = \phi ( I ) \in$ $\mathbb { R } ^ { H \times W \times C }$ . Since ideally an appearance model used for object propagation and association should be able to leverage fine-grained semantic correspondences between images, we choose a network with a small stride of $r = 8$ , so that its output in feature space can have a relatively large resolution.
67
+
68
+ We refer to the vector (along the channel dimension) of a single point in the feature map as a point vector. We expect a point vector $x _ { 1 } ^ { i } \in \mathbb { R } ^ { C }$ from the feature map $X _ { 1 }$ to have a high similarity with its “true match” point vector $x _ { 2 } ^ { \hat { i } }$ in $X _ { 2 }$ , while being far apart from all the other point vectors $x _ { 2 } ^ { j }$ in $X _ { 2 }$ ; i.e. we expect $s ( x _ { 1 } ^ { i } , x _ { 2 } ^ { \hat { i } } ) > s ( x _ { 1 } ^ { i } , x _ { 2 } ^ { j } ) , \forall j \neq \hat { i }$ , where $s ( \cdot , \cdot )$ represents a similarity function.
69
+
70
+ In order to learn fine-grained correspondences, fully-supervised methods are only amenable for synthetic datasets (e.g. Flying Chairs for optical flow [16]). With real-world data, it is intractable to label pixel-level correspondences and train models in a fully-supervised fashion. To overcome this obstacle, in this paper we adopt representations obtained with self-supervision. We experiment both with models trained with approaches that leverage pixel-wise pretext tasks [27, 58] and, inspired by prior works that have pointed out how fine-grained correspondences emerge in middle-level features [39, 74], with models obtained from image-level tasks (e.g. MoCo [24], SimCLR [10]).
71
+
72
+ # 2.3 Propagation
73
+
74
+ Problem definition. Figure 4a schematically illustrates the problem of propagation, which we use as a primitive to address SOT and VOS tasks. Considering the single-object case, given video frames $\{ I _ { t } \} _ { t = 1 } ^ { T }$ and an initial ground truth observation $z _ { 1 }$ as input, the goal is to predict object states $\{ \hat { z } _ { t } \} _ { t = 2 } ^ { T }$ for each time-step $t$ . In this work we consider three formats to represent objects: bounding boxes, segmentation masks and pose skeletons.
75
+
76
+ Mask propagation. In order to propagate masks, we rely on the approach popularised by recent video self-supervised methods [27, 58, 35, 31]. Consider the feature maps of a pair of consecutive frames $X _ { t - 1 }$ and $X _ { t }$ , both $\in \mathbb { R } ^ { s \times C }$ , and the label mask $z _ { t - 1 } \in [ 0 , 1 ] ^ { s }$ of the previous frame 2, where $s = H \times W$ indicates its spatial resolution. We compute the matrix of transitions $K _ { t - 1 } ^ { t } = [ k _ { i , j } ] _ { s \times s }$ as the affinity matrix between $X _ { t - 1 }$ and $X _ { t }$ . Each element $k _ { i , j }$ is defined as
77
+
78
+ $$
79
+ k _ { i , j } = \mathrm { S o f t m a x } ( X _ { t - 1 } , X _ { t } ^ { \top } ; \tau ) _ { i j } = \frac { \exp ( \left. x _ { t - 1 } ^ { i } , x _ { t } ^ { j } \right. / \tau ) } { \sum _ { k } ^ { s } \exp ( \left. x _ { t - 1 } ^ { i } , x _ { t } ^ { k } \right. / \tau ) } ,
80
+ $$
81
+
82
+ where $\langle \cdot , \cdot \rangle$ indicates inner product, and $\tau$ is a temperature hyperparameter. As in [27], we only keep the top $K$ values for each row and set other values to zero. Then, the mask for the current frame at time $t$ is predicted by propagating the previous prediction: $z _ { t } = K _ { t - 1 } ^ { t } z _ { t - 1 }$ . Mask propagation proceeds in a recurrent fashion: the output mask of the current frame is used as input for the next one.
83
+
84
+ Pose propagation. In order to represent pose keypoints, we use the widely adopted Gaussian belief maps [66]. For a keypoint $p$ , we obtain a belief map $z ^ { p } \in [ 0 , 1 ] ^ { s }$ by using a Gaussian with mean equal to the keypoint’s location and variance proportional to the subject’s body size. In order to propagate a pose, we can then individually propagate each belief map in the same manner as mask propagation, again as $z _ { t } ^ { p } = K _ { t - 1 } ^ { t } z _ { t - 1 } ^ { p }$ .
85
+
86
+ Box propagation. The position of an object can also be more simply expressed with a fourdimensional vector ${ z = ( u , v , w , h ) }$ , where $( u , v )$ are the coordinates of the bounding-box center, and $( w , h )$ are its width and height. While one could reuse the strategy adopted above by simply converting the bounding-box to a pixel-wise mask, we observed that using this strategy leads to inaccurate predictions. Instead, we use the approach of SiamFC [5], which consists in performing cross-correlation (XCORR) between the target template $z _ { t - 1 }$ and the frame $X _ { t }$ to find the new location of the target in frame $t$ . Cross-correlation is performed at different scales, so that the bounding-box representation can be resized accordingly. We also provide a Correlation Filter-based alternative (DCF) [54, 61] (see Appendix B.1).
87
+
88
+ # 2.4 Association
89
+
90
+ Problem definition. Figure 4b schematically illustrates the association problem, which we use as primitive to address the tasks of MOT, MOTS and PoseTrack. In this case, observations for object states $\{ \hat { \mathcal { Z } } _ { t } \} _ { t = 1 } ^ { T }$ are given for all the frames $\{ I _ { t } \} _ { t = 1 } ^ { T }$ , typically via the output of a pre-trained detector. The goal here is to form trajectories by connecting observations across adjacent frames according to their identity.
91
+
92
+ Association algorithm. We adopt the association algorithm proposed in JDE [65] for MOT, MOTS and PoseTrack tasks, of which detailed description can be found in Appendix C.1. In summary, we compute an $N \times M$ distance matrix between $N$ already-existing tracklets and $M$ “new” detections from the last processed frame. We then use the Hungarian algorithm [30] to determine pairs of matches between tracklets and detections, using the distance matrix as input. To obtain the matrix of distances used by the algorithm, we compute the linear combination of two terms accounting for motion and appearance cues. For the former, we compute a matrix indicating how likely a detection corresponds to the object state predicted by a Kalman Filter [28]. Instead, the appearance component is directly computed by using feature-map representations obtained by processing individual frames with the appearance model (Section 2.2). While object-level features for box and mask observations can be directly obtained by cropping frame-level feature maps, when an object is represented via a pose it first needs to be converted to a mask (via a procedure described in Appendix C.2).
93
+
94
+ A key issue of this scenario is how to measure similarities between object-level features. We find existing methods limited. First, objects are often compared by computing the cosine similarity of average-pooled object-level feature maps [84, 51]. However, the operation of average inherently discards local information, which is important for fine-grained recognition. Approaches [18, 52] that instead to some extent do preserve fine-grained information, such as those computing the cosine similarity of (flattened) feature maps, do not support objects with differently-sized representation (situation that occurs for instance with pixel-level masks). To cope with the above limitations, we propose a reconstruction-based similarity metric that is able to deal with different observation formats, while still preserving fine-grained information.
95
+
96
+ Reconstruction Similarity Metric (RSM). Let $\{ t _ { i } \} _ { i = 1 } ^ { N }$ denote the object-level features of $N$ existing tracklets, $t _ { i } \in \mathbb { R } ^ { s _ { t _ { i } } \times C }$ and $s _ { t _ { i } }$ indicates the spatial size of the object, i.e. the area of the box or the mask representing it. Similarly, $\{ d _ { j } \} _ { j = 1 } ^ { M }$ denotes the object-level features of $M$ new detections. With the goal of computing similarities to obtain an $N \times M$ affinity matrix to feed to the Hungarian algorithm, we propose a novel reconstruction-based similarity metric (RSM) between pairs $( i , j )$ , which is obtained as
97
+
98
+ $$
99
+ \mathrm { R S M } ( i , j ) = \frac { 1 } { 2 } ( \cos ( t _ { i } , \hat { t } _ { i j } ) + \cos ( d _ { j } , \hat { d } _ { j i } ) ) ,
100
+ $$
101
+
102
+ where $\hat { t } _ { i j }$ represents $t _ { i }$ reconstructed from $d _ { j }$ and $\hat { d } _ { j i }$ represents $d _ { j }$ reconstructed from $t _ { i }$ . In multi-object tracking scenarios, observations are often incomplete due to frequent occlusions. As such, directly comparing features between incomplete and complete observations often fails because of misalignment between local features. Suppose $d _ { j }$ is a detection feature representing a severely occluded pedestrian, while $t _ { i }$ a tracklet feature representing the same person, but unoccluded. Likely, directly computing the cosine similarity between the two will not be very telling. RSM addresses this issue by introducing a step of reconstruction after which the co-occurring parts of point features will be better aligned, thus making the final similarity more likely to be meaningful.
103
+
104
+ ![](images/3c0778a55532a316c020ae1fcced1a6dd69ef2502728dd8706e449a49e823e1a.jpg)
105
+ Figure 5: Reconstruction Similarity Metric (RSM): First, object-level features of existing tracklets and current detections are flattened and concatenated. Then, an affinity matrix between the two feature sets is computed. For a pair of tracklet $t _ { i }$ and detection $d _ { j }$ , we “extract” the corresponding sub-matrix from the entire affinity matrix as linear weights and reconstruct $t _ { i }$ from $d _ { j }$ using these linear weights. The similarity between the original object-level feature and its reconstructed version is finally taken as the RSM. We want the metric to be symmetric, so we perform reconstruction both forward $( t _ { i } d _ { j }$ ) and backward $( t _ { i } \to d _ { j }$ ).
106
+
107
+ The reconstructed object-level feature map $\hat { t } _ { i j }$ is a simple linear transformation of $d _ { j }$ , i.e. $\hat { t } _ { i j } = R _ { i j } d _ { j }$ , where $R _ { i j } \in \mathbb { R } ^ { s _ { t _ { i } } \times s _ { d _ { j } } }$ is a transformation matrix obtained as follows. We first flatten and concatenate all object-level features belonging to a tracklet (i.e. the set of observations corresponding to an object) into a single feature matrix $\begin{array} { r } { { \cal T } ~ \in ~ \mathbb { R } ^ { ( \sum _ { i } s _ { t _ { i } } ) \times C } } \end{array}$ . Similarly, we obtain all the object-level feature maps of a new set of detections $\begin{array} { r } { D \in \mathbb { R } ^ { ( \sum _ { j } s _ { d _ { j } } ) \times C } } \end{array}$ . Then, we compute the affinity matrix $A = \mathrm { S o f f m a x } ( T D ^ { \top } )$ and “extract” individual $R _ { i j }$ map$A$ propriate . For a sc $( i , j )$ tracklet-detection pair: tic representation of the p $R _ { i j } =$ $\begin{array} { r } { A \left[ \sum _ { i ^ { \prime } = 1 } ^ { i - 1 } s _ { i ^ { \prime } } : \sum _ { i ^ { \prime } = 1 } ^ { i } s _ { i ^ { \prime } } , \sum _ { j ^ { \prime } = 1 } ^ { j - 1 } s _ { j ^ { \prime } } : \sum _ { j ^ { \prime } = 1 } ^ { j } s _ { j ^ { \prime } } \right] } \end{array}$
108
+ just described, see Figure 5.
109
+
110
+ RSM can be interpreted from an attention [55] perspective. The feature map of a tracklet $t _ { i }$ being reconstructed can be seen as a set of queries, and the “source” detection feature $d _ { j }$ can be interpreted both as keys and values. The goal is to reconstruct the queries by linear combination of the values. The linear combination (attention) weights are computed using the affinity between queries and keys. Specifically, we first compute a global affinity matrix between $t _ { i }$ and all the $d _ { j ^ { \prime } }$ for $j ^ { \prime } = 1 , . . . , M$ , and then extract the corresponding sub-matrix for $t _ { i }$ and $d _ { j ^ { \prime } }$ as the attention weights. Our formulation leads to a desired property: if the attention weights approach zero, the corresponding reconstructed point vectors will approach zero and so the RSM between $t _ { i }$ and $d _ { j }$ .
111
+
112
+ Measuring similarity by reconstruction is popular in problems such as few-shot learning [67, 80], self-supervised learning [38], and person re-identification [26]. However, reconstruction is typically framed as a ridge regression or optimal transport problem. With $O ( n ^ { 2 } )$ complexity, RSM is more efficient than ridge regression and it has a similar computation cost to calculating the Earth Moving Distance for the optimal transport problem. Appendix D shows a series of ablation studies illustrating the importance of the proposed RSM for the effectiveness of UniTrack on association-type tasks.
113
+
114
+ # 3 Experiments
115
+
116
+ Since UniTrack does not require task-specific training, we were able to experiment with many alternative appearance models (see Figure 3) with little computational cost. In Section 3.1 we perform an extensive evaluation to benchmark a wide variety of off-the-shelf, modern self-supervised models, showing their strengths and weaknesses on all five tasks considered. In this section we also conduct a correlation study with the so-called “linear probe” strategy [81], which became a popular way to evaluate representations obtained with self-supervised learning. Then, in Section 3.2 we compare UniTrack (equipped with supervised or unsupervised appearance models) against recent and task-specific tracking methods.
117
+
118
+ Implementation details. We use ResNet-18 [25] or ResNet-50 as the default architecture. With ImageNet-supervised appearance model, we refer to the ImageNet pre-trained weights made available in PyTorch’s “Model Zoo”. To prevent excessive downsampling, we modify the spatial stride of layer3 and layer4 to 1, achieving a total stride of $r = 8$ . We extract features from both layer3 and layer4. We report results with layer3 features when comparing against task-specific methods (Section 3.2), and with both layer3 and layer4 when evaluating multiple different representations (Section 3.1). Further implementation details are deferred to Appendix B and C.
119
+
120
+ Datasets and evaluation metrics. For fair comparison with existing methods, we report results on standard benchmarks with conventional metrics for each task. Please refer to Appendix A for details.
121
+
122
+ # 3.1 UniTrack as evaluation platform of previously-learned representations
123
+
124
+ The process of evaluating representations obtained via self-supervised learning (SSL) often involves additional training [17, 24, 10], for instance via the use of linear probes [81], which require to fix the pre-trained model and train an additional linear classifier on top of it. In contrast, using UniTrack as evaluation platform (1) does not require any additional training and (2) enables the evaluation on a battery of important video tasks, which have generally been neglected in self-supervised-learning papers in favour of more established image-level tasks such as classification.
125
+
126
+ In this section, we evaluate three types of SSL representations: (a) Image-level representations learned from images, e.g. MoCo [24] and BYOL [21]; (b) Pixel-level representations learned from images (such as DetCo [72] and PixPro [73]) and (c) videos (such as UVC [35] and CRW [27]). For all methods considered, we use the pre-trained weights provided by the authors.
127
+
128
+ Results are shown in Table 1 and 2, where we report the results obtained by using features from either layer3 or layer4 of the pre-trained ResNet backbone. We report both results and separate them by a $\cdot / { \cdot }$ in the table. Note that, for this analysis only, for association-type tasks motion cues are discarded to better highlight distinctions between different representations and avoid potential confounding factors. Figure 1 provides a high-level summary of the results by focusing on the ranking obtained by different SSL methods on the five tasks considered (each represented by a vertex in the radar-style plot). Several observations can be made:
129
+
130
+ (1) There is no significant correlation between “linear probe accuracy” on ImageNet and overall tracking performance. The linear probe approach [81] has become a standard way to compare SSL representations. In Figure 6, we plot tracking performance on five tasks (y-axes) against ImageNet top-1 accuracy of 16 different models ( $\mathbf { \dot { X } }$ -axes), and report Pearson and Spearman (rank) correlation coefficients. We observe that the correlation between ImageNet accuracy and tracking performance is small, i.e. the Pearson’s $r$ ranges from $- 0 . 3 8$ to $+ 0 . 2 0$ , and Spearman’s $\rho$ ranges from $- 0 . 3 6$ to $+ 0 . 2 6$ . For most tasks, there is almost no correlation, while for VOS the two measures are mildly inversely correlated. The result suggests that evaluating SSL models on five extra tasks with UniTrack could constitute a useful complement to ImageNet linear probe evaluation, and encourage the SSL community to pursue the design of even more general purpose representations.
131
+
132
+ (2) A vanilla ImageNet-trained supervised representation is surprisingly effective across the board. On most tasks, it reports a performance competitive with the best representation for that task. This is particularly evident from Figure 1, where its performance is outlined as a gray dashed line. This result suggests that results obtained with vanilla ImageNet features should be reported when investigating new tracking methods.
133
+
134
+ (3) The best self-supervised representation ranks first on most tasks. Recently, it has been shown how SSL-trained representations can match or surpass their supervised counterparts on ImageNet classification (e.g. [21]) and many downstream tasks [17, 72]. Within UniTrack, although no individual SSL representation is able to beat the vanilla ImageNet-trained representation on every single task, we observe that the recently proposed VFS [74] ranks first on every task, except for single-object tracking. This suggests that advancements of the self-supervised learning literature can directly benefit the tracking community: it is reasonable to expect that newly-proposed representations will further improve performance across the board.
135
+
136
+ <table><tr><td rowspan="2">Representation</td><td colspan="2">SOT [70]</td><td>VOS [48]</td><td colspan="2">MOT [41]</td><td colspan="2">MOTS [57]</td><td colspan="2">PoseTrack [2]</td></tr><tr><td>AUCxCorr ↑</td><td>AUCDCF ↑</td><td>J-mean↑</td><td>IDF1个</td><td>HOTA↑</td><td>IDF1个</td><td>HOTA↑</td><td>IDF1个</td><td>IDs↓</td></tr><tr><td>Random Init.</td><td>10.3 /9.0</td><td>28.0 /20.0</td><td>29.3 /33.9</td><td>8.4/8.9</td><td>8.4/8.5</td><td>20.8 / 23.1</td><td>25.9 / 28.7</td><td>40.2 /38.5</td><td>88792/90963</td></tr><tr><td>ImageNet-sup.</td><td>58.6/49.5</td><td>62.0 / 53.9</td><td>62.3/57.9</td><td>75.6/73.2</td><td>63.3/ 61.8</td><td>68.4 /69.4</td><td>70.2/71.0</td><td>73.7/73.3</td><td>6969/7103</td></tr><tr><td>InsDis [71]</td><td>47.6 /47.3</td><td>61.8 / 51.1</td><td>62.6/ 60.1</td><td>66.7 /73.9</td><td>57.9 / 61.9</td><td>68.4 /68.0</td><td>69.6 /70.3</td><td>72.4 /73.9</td><td>7106 /7015</td></tr><tr><td>MoCoV1 [24]</td><td>50.9 /47.9</td><td>62.2/53.7</td><td>61.5 / 57.9</td><td>69.2 /74.1</td><td>59.4 / 61.9</td><td>70.6/ 69.3</td><td>71.6/70.9</td><td>72.8 / 739</td><td>6872/7092</td></tr><tr><td>PCLV1[34]</td><td>56.8/31.5</td><td>61.3/35.0</td><td>60.4/38.8</td><td>74.8/68.8</td><td>62.8 / 59.1</td><td>67.6 / 65.2</td><td>69.7 / 67.3</td><td>73.3 / 71.1</td><td>6855/10694</td></tr><tr><td>PIRL [42]</td><td>43.8 / 51.0</td><td>61.2 / 53.4</td><td>60.8/57.7</td><td>62.0 /73.4</td><td>54.6 / 61.9</td><td>66.0 / 67.4</td><td>66.7 /69.9</td><td>72.1/73.0</td><td>7235/7173</td></tr><tr><td>PCLV2 [34]</td><td>54.9/50.3</td><td>62.5 /51.6</td><td>61.2/52.5</td><td>74.9 /72.9</td><td>62.7/ 61.8</td><td>68.3/66.6</td><td>70.5/69.0</td><td>73.5/73.4</td><td>6859/ 8489</td></tr><tr><td>SimCLRV1[10]</td><td>47.3 / 51.9</td><td>61.3 / 50.7</td><td>60.5 /56.5</td><td>66.9 / 75.6</td><td>57.7 / 63.2</td><td>65.8 / 67.6</td><td>67.7 /69.5</td><td>72.3 /73.5</td><td>7084 /7367</td></tr><tr><td>MoCoV2 [12]</td><td>53.7 /47.2</td><td>61.5 /53.3</td><td>61.2 /54.0</td><td>72.0 / 74.9</td><td>61.2 / 62.8</td><td>67.5 /67.3</td><td>69.6 / 69.6</td><td>73.0 /73.7</td><td>6932 /7702</td></tr><tr><td>SimCLRV2[11]</td><td>50.0 / 54.7</td><td>61.7 /56.8</td><td>61.6 /58.4</td><td>67.6/75.7</td><td>58.1/ 63.3</td><td>69.1 / 67.4</td><td>70.4 / 69.4</td><td>72.5 /73.6</td><td>7228/7856</td></tr><tr><td>SeLaV2 [3]</td><td>51.0/9.6</td><td>63.1/14.2</td><td>60.2/40.2</td><td>68.8/68.9</td><td>59.0 / 59.3</td><td>66.8/66.1</td><td>68.7/ 68.5</td><td>72.9 /72.3</td><td>6983/7815</td></tr><tr><td>Infomin [53]</td><td>48.5/46.8</td><td>61.2 / 51.9</td><td>58.4/51.1</td><td>66.7 /73.4</td><td>57.6/61.9</td><td>66.7/66.3</td><td>68.5/68.8</td><td>72.5 /74.0</td><td>7066/7901</td></tr><tr><td>BarLow [79]</td><td>44.5/55.5</td><td>60.5 /60.1</td><td>61.7 / 57.8</td><td>63.7/74.5</td><td>55.4/62.4</td><td>68.7/67.4</td><td>69.5/ 69.8</td><td>72.3 /74.3</td><td>7131/7456</td></tr><tr><td>BYOL [21]</td><td>48.3/55.5</td><td>58.9 /56.8</td><td>58.8 / 54.3</td><td>65.3 /74.9</td><td>56.8 / 62.9</td><td>70.1/ 66.8</td><td>70.8 /69.3</td><td>72.4 / 73.8</td><td>7213/8032</td></tr><tr><td>DeepCluster [7]</td><td>51.5 / 52.9</td><td>61.2/61.2</td><td>59.3/53.4</td><td>66.9 /75.1</td><td>57.8 / 63.5</td><td>67.7 /67.4</td><td>69.4 /69.8</td><td>72.7 /73.7</td><td>7018/7283</td></tr><tr><td>SwAV [8]</td><td>49.2/52.4 51.1/45.3</td><td>61.5 /59.4 60.3/43.8</td><td>59.4/57.0</td><td>65.6/74.4</td><td>56.9 / 62.3</td><td>68.8/67.0</td><td>69.9 /69.5</td><td>72.7 /73.6</td><td>7025 /7377</td></tr><tr><td>VFS [74]</td><td></td><td></td><td>62.8/56.8</td><td>74.1/ 77.0</td><td>62.6 / 63.9</td><td>71.0/ 68.0</td><td>72.1/70.4</td><td>73.3/74.2</td><td>6731/7091</td></tr><tr><td>PixPro [73]</td><td>40.5 /49.2</td><td>57.4 /49.3</td><td>56.4/52.2</td><td>61.7 /67.7</td><td>54.3/58.6</td><td>64.2/66.2</td><td>65.1/67.6</td><td>72.4 / 73.1</td><td>7163 /6953</td></tr><tr><td>DetCo [72]</td><td>55.0/47.1</td><td>59.0/53.2</td><td>62.3/56.1</td><td>75.3 /72.9</td><td>62.8/61.6</td><td>67.8/66.8</td><td>70.0 /69.4</td><td>73.9/73.3</td><td>7357/8009</td></tr><tr><td>TimeCycle [64]</td><td>43.8 / 24.2</td><td>57.5/48.7</td><td>51.8 / 48.9</td><td>68.7 / 28.2</td><td>59.3 /25.5</td><td>69.9 / 47.1</td><td>71.3 /49.3</td><td>72.0 / 62.3</td><td>7837 /27884</td></tr></table>
137
+
138
+ Table 1: Tracking performance of pre-trained image-based SSL models. All methods employ a ResNet-50.
139
+
140
+ <table><tr><td rowspan="3">Representation</td><td colspan="2">SOT [70]</td><td>vOS [48]</td><td colspan="2">MOT [41]</td><td colspan="2">MOTS [57]</td><td colspan="2">PoseTrack [2]</td></tr><tr><td>AUCxcorr 个</td><td>AUCDcF ↑</td><td>J-mean↑</td><td>IDF1↑</td><td>HOTA↑</td><td>IDF1个</td><td>HOTA↑</td><td>IDF1个</td><td>IDs↓</td></tr><tr><td>Random Init.</td><td>16.0 /18.2</td><td>36.1/ 32.1</td><td>33.0 /36.7</td><td>18.4 / 14.6</td><td>20.2 / 12.9</td><td>34.5 /33.1</td><td>39.9 /37.6</td><td>52.8 / 50.5</td><td>65317 /66230</td></tr><tr><td>ImageNet-sup.</td><td>55.0/46.2</td><td>61.8 / 52.6</td><td>58.4/46.7</td><td>74.8 / 74.5</td><td>62.7 / 62.1</td><td>67.6/ 68.6</td><td>69.8 / 70.5</td><td>72.7 / 73.2</td><td>6808 /7024</td></tr><tr><td>Color.[58]+mem.</td><td>41.6 /43.4</td><td>56.7 /58.7</td><td>53.6 / 59.7</td><td>64.9 / 62.8</td><td>56.8/55.5</td><td>68.8/66.1</td><td>69.4 / 66.3</td><td>72.4 / 72.6</td><td>6850/6778</td></tr><tr><td>UVC [35]</td><td>46.0/38.7</td><td>58.1/59.9</td><td>56.5 / 53.9</td><td>66.9/64.5</td><td>57.7/54.1</td><td>69.9 / 68.7</td><td>69.6 / 69.4</td><td>72.6/72.8</td><td>6843/ 6972</td></tr><tr><td>CRW [27]</td><td>46.3/49.1</td><td>58.9 / 54.9</td><td>63.2/60.7</td><td>67.8/73.0</td><td>58.4 / 61.7</td><td>69.0/71.3</td><td>69.2/71.9</td><td>72.7 /73.0</td><td>6799/6761</td></tr></table>
141
+
142
+ Table 2: Tracking performance of pre-trained video-based SSL models. All methods employ a ResNet-18. In the above two tables, we report results with [layer3 / layer4] features in each cell, and the best performance between the two is bolded. We use the bolded values to rank the models in each column, and visualise (column-wise) better performance with darker cell colors. Best results in each column are underlined.
143
+
144
+ ![](images/298e1349e66d64591ba9deb65f91e69066f5b3dd00510fe516e2e8e0efd32d1c.jpg)
145
+ Figure 6: Tracking performance is poorly correlated with ImageNet accuracy. On the $\mathbf { X }$ -axes we plot ImageNet linear probe top-1 accuracy and on the y-axes the tracking performance on five tracking datasets. Correlation coefficients (Spearman’s $\rho$ and Pearson’s $r$ ) are shown in the left bottom of each plot.
146
+
147
+ (4) Pixel-level SSL representations do not seem to have a consistent advantage in pixel-level tasks. In Table 2 and at the bottom of Table 1 we compare recent SSL representations trained with pixellevel proxy tasks: PixPro [73], DetCo [72], TimeCycle [64], Colorization [58], UVC [35] and Contrastive Random Walk (CRW) [27]. Considering that pixel-level models leverage more finegrained information during training, one may expect them to outperform image-based models in the tracking tasks where this is important. It is not straightforward to compare pixel-level SSL models with image-level ones, as the two types employ different default backbone networks. However, note how good image-based models (MoCo-v1, SimCLR-v2) are on par with their supervised counterpart in all tasks, while good pixel-level models (DetCo, CRW) still have gaps with respect to their supervised counterparts in tasks like SOT and MOT. Moreover, from Table 1, one can notice how the last three rows, despite representing methods leveraging pixel-level information during training, are actually outperformed by image-level representations on the pixel-level tasks of VOS, MOTS and PoseTrack.
148
+
149
+ (5) Video data can benefit representation learning for video tasks. The top-ranking VFS is similar to MoCo, SimCLR and BYOL in terms of learning scheme: they all perform contrastive learning on image level features. The most important distinction is the training data. Previous SSL methods mostly train on still-image based datasets (typically ImageNet), while VFS employs a large-scale video dataset Kinetics [9]. Clearly, this is not very surprising, as training on video data can help closing the domain gap with the (video-based) downstream tasks considered in this paper.
150
+
151
+ <table><tr><td>Methods</td><td>IDF1个</td><td>IDs↓</td><td>MOTA↑</td><td>HOTA↑</td></tr><tr><td>JDE [65]</td><td>55.8</td><td>1544</td><td>64.4</td><td>-</td></tr><tr><td>CTracker [47]</td><td>57.2</td><td>1897</td><td>67.6</td><td>48.8</td></tr><tr><td>TubeTK[46]</td><td>62.2</td><td>1236</td><td>66.9</td><td>50.8</td></tr><tr><td>MAT [23]</td><td>63.8</td><td>928</td><td>73.5</td><td>56.3</td></tr><tr><td>TraDes [69]</td><td>64.7</td><td>1144</td><td>70.1</td><td>53.2</td></tr><tr><td>CSTrack [36]</td><td>71.8</td><td>1071</td><td>70.7</td><td>59.8</td></tr><tr><td>FairMOT† [82]</td><td>72.8</td><td>1074</td><td>74.9</td><td>61.6</td></tr><tr><td>UniTrack_ImageNet†</td><td>71.8</td><td>683</td><td>74.7</td><td>59.1</td></tr><tr><td>UniTrack_VFS†</td><td>70.3</td><td>829</td><td>72.7</td><td>58.6</td></tr></table>
152
+
153
+ (a) MOT@MOT-16 [41] test split, private detection.
154
+
155
+ (b) MOTS@MOTS [57] test split.
156
+
157
+ <table><tr><td>Methods</td><td>IDF1个</td><td>IDs↓</td><td>sMOTA↑</td></tr><tr><td>TrackRCNN [57]</td><td>42.4</td><td>567</td><td>40.6</td></tr><tr><td>SORTS [68]</td><td>57.3</td><td>577</td><td>55.0</td></tr><tr><td>PointTrack [76]</td><td>42.9</td><td>868</td><td>62.3</td></tr><tr><td>GMPHD [50]</td><td>65.6</td><td>566</td><td>69.0</td></tr><tr><td>COSTAt [1]</td><td>70.3</td><td>421</td><td>69.5</td></tr><tr><td>UniTrack_ImageNet†</td><td>67.2</td><td>622</td><td>68.9</td></tr><tr><td>UniTrack_VFSt</td><td>68.2</td><td>342</td><td>69.7</td></tr></table>
158
+
159
+ Table 3: Comparison with task-tailored unsupervised and supervised methods on five typical tracking tasks. $\dagger$ indicates methods using identical observations.
160
+
161
+ <table><tr><td>Methods</td><td>IDF1个</td><td>IDs↓</td><td>MOTA↑</td></tr><tr><td>MDPN [22]</td><td>=</td><td>-</td><td>50.6</td></tr><tr><td>OpenSVAI [44]</td><td></td><td>-</td><td>62.4</td></tr><tr><td>Miracle [78]</td><td></td><td>=</td><td>64.0</td></tr><tr><td>KeyTrack [49]</td><td></td><td>-</td><td>66.6</td></tr><tr><td>TWVA [19]</td><td>=</td><td>=</td><td>64.7</td></tr><tr><td>LightTrack† [43]</td><td>52.2</td><td>3024</td><td>64.8</td></tr><tr><td>UniTrack_ImageNet†</td><td>73.2</td><td>6760</td><td>63.5</td></tr><tr><td>UniTrack_VFS†</td><td>74.2</td><td>7091</td><td>63.3</td></tr></table>
162
+
163
+ (c) PoseTrack@PoseTrack2018 [2] val split.
164
+
165
+ <table><tr><td>Methods</td><td>J-mean↑</td></tr><tr><td>Supervised:</td><td></td></tr><tr><td>SiamMask [62]</td><td>54.3</td></tr><tr><td>FEELVOS [56]</td><td>63.7</td></tr><tr><td>STM [45]</td><td>79.2</td></tr><tr><td>Unsupervised:</td><td></td></tr><tr><td>Colorization [58]</td><td>34.6</td></tr><tr><td>TimeCylce [64]</td><td>40.1</td></tr><tr><td>UVC [35]</td><td>56.7</td></tr><tr><td>CRW [27]</td><td>64.8</td></tr><tr><td>UniTrack_ImageNet</td><td>58.4</td></tr><tr><td>UniTrack_VFS</td><td>62.8</td></tr></table>
166
+
167
+ (d) VOS@DAVIS-2017 [48].
168
+
169
+ <table><tr><td>Methods</td><td>AUC↑</td></tr><tr><td>Supervised:</td><td></td></tr><tr><td>SiamFC[5]</td><td>58.2</td></tr><tr><td>SiamRPN [33]</td><td>63.7</td></tr><tr><td>SiamRPN++ [32]</td><td>69.6</td></tr><tr><td>Unsupervised:</td><td></td></tr><tr><td>UDT [59]</td><td>59.4</td></tr><tr><td>UDT+[59]</td><td>63.2</td></tr><tr><td>LUDT [60]</td><td>60.2</td></tr><tr><td>LUDT+ [60]</td><td>63.9</td></tr><tr><td>UniTrack_ImageNet_XCorr</td><td>55.5</td></tr><tr><td>UniTrack_ImageNet_DCF</td><td>61.8</td></tr><tr><td>UniTrack_VFS_DCF</td><td>60.3</td></tr></table>
170
+
171
+ (e) SOT@OTB-2015 [70].
172
+
173
+ # 3.2 Comparison with task-specific tracking methods
174
+
175
+ Unsupervised methods. We observe that UniTrack performs competitively against unsupervised state-of-the-art methods in both the propagation-type tasks we considered (Table 3d and 3e). For SOT, UniTrack with a DCF head [61] outperforms UDT [59] (a strong recent method) by 2.4 AUC points, while it is surpassed by LUDT $^ +$ [60] by 2.1 points. Considering that LUDT $^ +$ adopts an additional online template update mechanism [13] while ours does not, we believe the gap could be closed. In VOS, existing unsupervised methods are usually trained on video datasets [35, 27], and some of the most recent outperform UniTrack (with an ImageNet-trained representation). Nonetheless, when we use a VFS-trained representation, this performance difference is reduced to $2 \%$ . Finally, note that for association-type tasks we are not aware of any existing unsupervised learning method, and thus in this case we limit the comparison to supervised methods.
176
+
177
+ Comparison with supervised methods. In general, UniTrack with a ResNet-18 appearance model already performs on par with several existing task-specific supervised methods, and in several tasks it even shows superior accuracy, especially for identity-related metrics. (1) For SOT, UniTrack with a DCF head outperforms SiamFC [5] by 3.6 AUC points. This is a significant margin considering that SiamFC is trained with a large amount of crops from video datasets with annotated bounding boxes. (2) For VOS, UniTrack surpasses SiamMask [62] by 4.1 $\mathcal { I }$ -mean points, despite this being trained on the joint set of three large-scale video datasets [37, 14, 75]. (3) For MOT, we employ the same detections used by the state-of-the-art tracker FairMOT [82]. The appearance embedding in FairMOT is trained with 270K bounding boxes of 8.7K labeled identities, from a MOT-specific dataset. In contrast, despite our appearance model not being trained with any MOT-specific data, our IDF1 score is quite competitive (71.8 v.s. 72.8 of FairMOT), and the ID switches are considerably reduced by $3 6 . { \overset { - } { 4 } } \%$ , from 1074 to 683. (4) For MOTS, we start from the same segmentation masks used by the COSTA [1] tracker, and observe a degradation in terms of ID switches (622 vs the 421 of the state of the art), and also a gap in IDF1 and sMOTA. (5) Finally, for pose tracking, we employ the same pose estimator used by LightTrack [43]. Compared with LightTrack, the MOTA of UniTrack degrades of 1.3 points because of an increased amount of ID switches. However, the IDF-1 score is improved by a significant margin $( + 2 1 . 0 $ points). This shows UniTrack preserves identity more accurately for long tracklets: even if ID switches occur more frequently, after a short period UniTrack is able to correct the wrong association, leading to a higher IDF-1.
178
+
179
+ Notice how, overall, UniTrack obtains more competitive performance on tasks that have association at their core, i.e. MOT, MOTS and PoseTrack. Upon inspection, we observed that most failure cases in propagation-type tasks regard the “drift” occurring when the scale of the object is improperly estimated. In future work, this could be addressed for instance by a bounding-box regression module to refine predictions, or by carefully designing a motion model. For association-type tasks, the consequences of any type of inaccuracy are isolated to individual pairs of frames, and thus much less catastrophic by nature.
180
+
181
+ # 4 Related Work
182
+
183
+ To the best of our knowledge, sharing the appearance model across multiple tracking tasks has not been extensively studied in the computer vision literature, and especially not in the context of SSL representations. Some existing methods do share a common backbone architecture across tasks. For instance, STEm-Seg [4] addresses VIS [77] and MOTS; while TraDeS [69] addresses MOT, MOTS and VIS. However, both methods need to be trained separately and on different datasets for every task. Conversely, we reuse the same representation across five tasks. A promising direction for future work would be to use UniTrack to train a shared representation in a multi-task fashion. Only a few relevant works do adopt a multi-task approach [62, 83, 40], and they usually consider SOT and VOS tasks only. In general, despite the multi-task direction being surely interesting, it requires the availability of large-scale datasets with annotations in multiple formats, and costly training. These are two of the main reasons for which we believe that having a framework that allows to achieve competitive performance on multiple tasks with previously-trained models is a worthwhile endeavour.
184
+
185
+ Self-supervised model evaluation. Given the difference between the pretext tasks used to train self-supervised models and the downstream tasks used to evaluate them, the comparison between self-supervised approaches has always been a delicate matter. Existing evaluation strategies typically require additional training once a general-purpose representation has been obtained. One strategy keeps the representation fixed, and then trains additional task-specific heads with very limited capacity (e.g. a linear classifier [20, 10, 24] or a regression head for object detection [20]). A second strategy, instead, leverages SSL to obtain particularly effective initializations, and then proceeds to fine-tune such initialized models on the downstream task of interest. A wider range of tasks can be tested using this setup, such as semantic segmentation [17, 20] and surface normal estimation [20, 63]. In contrast, UniTrack provides a simpler way to evaluate SSL models, one that does not require additional training or fine-tuning. Also, this work is the first to extend SSL evaluation to a set of diverse video tasks. We believe this contribution will allow the study of self-supervised learning methods with a broader scope of applicability. Our work is also related to a line of self-supervised learning methods [27, 58, 35, 31] that learn their representations in a task-agnostic fashion, and then test it on propagation tasks (SOT and VOS). The design of UniTrack is inspired by their task-agnostic philosophy, while significantly extending their scope to a new set of tasks.
186
+
187
+ # 5 Conclusion
188
+
189
+ Do different tracking tasks require different appearance models? In order to address this question, the proposed UniTrack framework has been instrumental, as it has allowed to easily experiment with alternative representations on a wide variety of downstream problems. Although the answer is not a resounding “no”, as only sometimes a single shared appearance model can outperform dedicated methods, we argue that a unified framework is an appealing alternative to task-specific methods. The main reason is that it allows us to make the most of the progress made in the representation learning literature at no extra cost. With the rapid development of self-supervised learning, and the large amount of computational resources dedicated to it, we believe it is reasonable to expect that, in the future, a general-purpose representation will be able to outperform task-specific methods across the board. Until then, UniTrack could still serve as a useful evaluation tool for novel representations, especially considering the lack of correlation with the standard linear-probe approach. We believe this will encourage the community to develop self-supervised representations that are of “general purpose” in a broader sense.
190
+
191
+ Broader impact. Upon reflection, we believe that progress in tracking applications and selfsupervised learning is beneficial for society, as it can significantly impact (for instance) the development of autonomous vehicles, which we consider a net positive for society. We also recognise that the same technologies could constitute a threat if deployed for surveillance by entities hostile to civil liberties.
192
+
193
+ # 6 Funding Transparency Statement
194
+
195
+ This work was supported by the National Natural Science Foundation of China under Grant No. 61771288, Cross-Media Intelligent Technology Project of Beijing National Research Center for Information Science and Technology (BNRist) under Grant No. BNR2019TD01022 and the research fund under Grant No. 2019GQG0001 from the Institute for Guo Qiang, Tsinghua University.
196
+
197
+ This work was also supported by the EPSRC grant: Turing AI Fellowship: EP/W002981/1, EPSRC/MURI grant EP/N019474/1. We would also like to thank the Royal Academy of Engineering and FiveAI.
198
+
199
+ # References
200
+
201
+ [1] Costa_st tracker. https://motchallenge.net/method/MOTS 87&chl=17.
202
+ [2] Mykhaylo Andriluka, Umar Iqbal, Eldar Insafutdinov, Leonid Pishchulin, Anton Milan, Juergen Gall, and Bernt Schiele. Posetrack: A benchmark for human pose estimation and tracking. In CVPR, 2018.
203
+ [3] Yuki Markus Asano, Christian Rupprecht, and Andrea Vedaldi. Self-labelling via simultaneous clustering and representation learning. In ICLR, 2020.
204
+ [4] Ali Athar, Sabarinath Mahadevan, Aljoša Ošep, Laura Leal-Taixé, and Bastian Leibe. Stem-seg: Spatiotemporal embeddings for instance segmentation in videos. In ECCV, 2020.
205
+ [5] Luca Bertinetto, Jack Valmadre, Joao F Henriques, Andrea Vedaldi, and Philip HS Torr. Fully-convolutional siamese networks for object tracking. In ECCV workshops, 2016.
206
+ [6] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv:2005.14165, 2020.
207
+ [7] Mathilde Caron, Piotr Bojanowski, Armand Joulin, and Matthijs Douze. Deep clustering for unsupervised learning of visual features. In ECCV, 2018.
208
+ [8] Mathilde Caron, Ishan Misra, Julien Mairal, Priya Goyal, Piotr Bojanowski, and Armand Joulin. Unsupervised learning of visual features by contrasting cluster assignments. In NeurIPS, 2018.
209
+ [9] Joao Carreira and Andrew Zisserman. Quo vadis, action recognition? a new model and the kinetics dataset. In CVPR, 2017.
210
+ [10] Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. 2020.
211
+ [11] Ting Chen, Simon Kornblith, Kevin Swersky, Mohammad Norouzi, and Geoffrey Hinton. Big selfsupervised models are strong semi-supervised learners. arXiv:2006.10029, 2020.
212
+ [12] Xinlei Chen, Haoqi Fan, Ross Girshick, and Kaiming He. Improved baselines with momentum contrastive learning. arXiv:2003.04297, 2020.
213
+ [13] Martin Danelljan, Goutam Bhat, Fahad Shahbaz Khan, and Michael Felsberg. Eco: Efficient convolution operators for tracking. In CVPR, 2017.
214
+ [14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR, 2009.
215
+ [15] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. 2018.
216
+ [16] Alexey Dosovitskiy, Philipp Fischer, Eddy Ilg, Philip Hausser, Caner Hazirbas, Vladimir Golkov, Patrick Van Der Smagt, Daniel Cremers, and Thomas Brox. Flownet: Learning optical flow with convolutional networks. In ICCV, 2015.
217
+ [17] Linus Ericsson, Henry Gouk, and Timothy M Hospedales. How well do self-supervised models transfer? In CVPR, 2021.
218
+ [18] Masoud Faraki, Xiang Yu, Yi-Hsuan Tsai, Yumin Suh, and Manmohan Chandraker. Cross-domain similarity learning for face recognition in unseen domains. arXiv:2103.07503, 2021.
219
+ [19] Yang Fu, Sifei Liu, Umar Iqbal, Shalini De Mello, Humphrey Shi, and Jan Kautz. Learning to track instances without video annotations. In CVPR, 2021.
220
+ [20] Priya Goyal, Dhruv Mahajan, Abhinav Gupta, and Ishan Misra. Scaling and benchmarking self-supervised visual representation learning. arXiv:1905.01235, 2019.
221
+ [21] Jean-Bastien Grill, Florian Strub, Florent Altché, Corentin Tallec, Pierre H Richemond, Elena Buchatskaya, Carl Doersch, Bernardo Avila Pires, Zhaohan Daniel Guo, Mohammad Gheshlaghi Azar, et al. Bootstrap your own latent: A new approach to self-supervised learning. arXiv:2006.07733, 2020.
222
+ [22] Hengkai Guo, Tang Tang, Guozhong Luo, Riwei Chen, Yongchen Lu, and Linfu Wen. Multi-domain pose network for multi-person pose estimation and tracking. In ECCV, workshop, 2018.
223
+ [23] Shoudong Han, Piao Huang, Hongwei Wang, En Yu, Donghaisheng Liu, Xiaofeng Pan, and Jun Zhao. Mat: Motion-aware multi-object tracking. arXiv:2009.04794, 2020. visual representation learning. In CVPR, 2020.
224
+ [25] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016.
225
+ [26] Lingxiao He, Jian Liang, Haiqing Li, and Zhenan Sun. Deep spatial feature reconstruction for partial person re-identification: Alignment-free approach. In CVPR, 2018.
226
+ [27] Allan Jabri, Andrew Owens, and Alexei A Efros. Space-time correspondence as a contrastive random walk. In NeurIPS, 2020.
227
+ [28] Rudolph Emil Kalman. A new approach to linear filtering and prediction problems. 1960.
228
+ [29] Matej Kristan, Jiri Matas, Aleš Leonardis, Tomáš Vojíˇr, Roman Pflugfelder, Gustavo Fernandez, Georg Nebehay, Fatih Porikli, and Luka Cehovin. A novel performance evaluation methodology for single-target ˇ trackers. IEEE TPAMI, 2016.
229
+ [30] Harold W Kuhn. The hungarian method for the assignment problem. Naval research logistics quarterly, 2(1-2):83–97, 1955.
230
+ [31] Zihang Lai, Erika Lu, and Weidi Xie. Mast: A memory-augmented self-supervised tracker. In CVPR, 2020.
231
+ [32] Bo Li, Wei Wu, Qiang Wang, Fangyi Zhang, Junliang Xing, and Junjie Yan. Siamrpn $^ { + + }$ : Evolution of siamese visual tracking with very deep networks. In CVPR, 2019.
232
+ [33] Bo Li, Junjie Yan, Wei Wu, Zheng Zhu, and Xiaolin Hu. High performance visual tracking with siamese region proposal network. In CVPR, 2018.
233
+ [34] Junnan Li, Pan Zhou, Caiming Xiong, Richard Socher, and Steven CH Hoi. Prototypical contrastive learning of unsupervised representations. In ICLR, 2021.
234
+ [35] Xueting Li, Sifei Liu, Shalini De Mello, Xiaolong Wang, Jan Kautz, and Ming-Hsuan Yang. Joint-task self-supervised learning for temporal correspondence. In NeurIPS, 2019.
235
+ [36] Chao Liang, Zhipeng Zhang, Yi Lu, Xue Zhou, Bing Li, Xiyong Ye, and Jianxiao Zou. Rethinking the competition between detection and reid in multi-object tracking. arXiv:2010.12138, 2020.
236
+ [37] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In ECCV, 2014.
237
+ [38] Songtao Liu, Zeming Li, and Jian Sun. Self-emd: Self-supervised object detection without imagenet. arXiv:2011.13677, 2020.
238
+ [39] Jonathan Long, Ning Zhang, and Trevor Darrell. Do convnets learn correspondence? In NeurIPS, 2014.
239
+ [40] Alan Lukezic, Jiri Matas, and Matej Kristan. D3s-a discriminative single shot segmentation tracker. In CVPR, 2020.
240
+ [41] Anton Milan, Laura Leal-Taixé, Ian Reid, Stefan Roth, and Konrad Schindler. Mot16: A benchmark for multi-object tracking. arXiv:1603.00831, 2016.
241
+ [42] Ishan Misra and Laurens van der Maaten. Self-supervised learning of pretext-invariant representations. In CVPR, 2020.
242
+ [43] Guanghan Ning and Heng Huang. Lighttrack: A generic framework for online top-down human pose tracking. In CVPR, workshop, 2020.
243
+ [44] Guanghan Ning, Ping Liu, Xiaochuan Fan, and Chi Zhang. A top-down approach to articulated human pose estimation and tracking. In ECCV, workshop, 2018.
244
+ [45] Seoung Wug Oh, Joon-Young Lee, Ning Xu, and Seon Joo Kim. Video object segmentation using space-time memory networks. In ICCV, 2019.
245
+ [46] Bo Pang, Yizhuo Li, Yifan Zhang, Muchen Li, and Cewu Lu. Tubetk: Adopting tubes to track multi-object in a one-step training model. In CVPR, 2020.
246
+ [47] Jinlong Peng, Changan Wang, Fangbin Wan, Yang Wu, Yabiao Wang, Ying Tai, Chengjie Wang, Jilin Li, Feiyue Huang, and Yanwei Fu. Chained-tracker: Chaining paired attentive regression results for end-to-end joint multiple-object detection and tracking. In ECCV, 2020.
247
+ [48] F. Perazzi, J. Pont-Tuset, B. McWilliams, L. Van Gool, M. Gross, and A. Sorkine-Hornung. A benchmark dataset and evaluation methodology for video object segmentation. In CVPR, 2016.
248
+ [49] Michael Snower, Asim Kadav, Farley Lai, and Hans Peter Graf. 15 keypoints is all you need. In CVPR, 2020.
249
+ [50] Young-min Song and Moongu Jeon. Online multi-object tracking and segmentation with gmphd filter and simple affinity fusion. arXiv:2009.00100, 2020.
250
+ [51] Yifan Sun, Qin Xu, Yali Li, Chi Zhang, Yikang Li, Shengjin Wang, and Jian Sun. Perceive where to focus: Learning visibility-aware part-level features for partial person re-identification. In CVPR, 2019.
251
+ [52] Yifan Sun, Liang Zheng, Yi Yang, Qi Tian, and Shengjin Wang. Beyond part models: Person retrieval with refined part pooling (and a strong convolutional baseline). In ECCV, 2018.
252
+ [53] Yonglong Tian, Chen Sun, Ben Poole, Dilip Krishnan, Cordelia Schmid, and Phillip Isola. What makes for good views for contrastive learning. In NeurIPS, 2020.
253
+ [54] Jack Valmadre, Luca Bertinetto, Joao Henriques, Andrea Vedaldi, and Philip HS Torr. End-to-end representation learning for correlation filter based tracking. In CVPR, 2017.
254
+ [55] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Ł ukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017.
255
+ [56] Paul Voigtlaender, Yuning Chai, Florian Schroff, Hartwig Adam, Bastian Leibe, and Liang-Chieh Chen. Feelvos: Fast end-to-end embedding learning for video object segmentation. In CVPR, 2019.
256
+ [57] Paul Voigtlaender, Michael Krause, Aljosa Osep, Jonathon Luiten, Berin Balachandar Gnana Sekar, Andreas Geiger, and Bastian Leibe. Mots: Multi-object tracking and segmentation. In CVPR, 2019.
257
+ [58] Carl Vondrick, Abhinav Shrivastava, Alireza Fathi, Sergio Guadarrama, and Kevin Murphy. Tracking emerges by colorizing videos. In ECCV, 2018.
258
+ [59] Ning Wang, Yibing Song, Chao Ma, Wengang Zhou, Wei Liu, and Houqiang Li. Unsupervised deep tracking. In CVPR, 2019.
259
+ [60] Ning Wang, Wengang Zhou, Yibing Song, Chao Ma, Wei Liu, and Houqiang Li. Unsupervised deep representation learning for real-time tracking. IJCV, 2020.
260
+ [61] Qiang Wang, Jin Gao, Junliang Xing, Mengdan Zhang, and Weiming Hu. Dcfnet: Discriminant correlation filters network for visual tracking. arXiv:1704.04057, 2017.
261
+ [62] Qiang Wang, Li Zhang, Luca Bertinetto, Weiming Hu, and Philip HS Torr. Fast online object tracking and segmentation: A unifying approach. In CVPR, 2019.
262
+ [63] Xiaolong Wang and Abhinav Gupta. Unsupervised learning of visual representations using videos. In ICCV, 2015.
263
+ [64] Xiaolong Wang, Allan Jabri, and Alexei A Efros. Learning correspondence from the cycle-consistency of time. In CVPR, 2019.
264
+ [65] Zhongdao Wang, Liang Zheng, Yixuan Liu, and Shengjin Wang. Towards real-time multi-object tracking. In ECCV, 2020.
265
+ [66] Shih-En Wei, Varun Ramakrishna, Takeo Kanade, and Yaser Sheikh. Convolutional pose machines. In CVPR, 2016.
266
+ [67] Davis Wertheimer, Luming Tang, and Bharath Hariharan. Fine-grained few-shot classification with feature map reconstruction networks. CVPR, 2021.
267
+ [68] Nicolai Wojke, Alex Bewley, and Dietrich Paulus. Simple online and realtime tracking with a deep association metric. In ICIP, 2017.
268
+ [69] Jialian Wu, Jiale Cao, Liangchen Song, Yu Wang, Ming Yang, and Junsong Yuan. Track to detect and segment: An online multi-object tracker. In CVPR, 2021.
269
+ [70] Yi Wu, Jongwoo Lim, and Ming-Hsuan Yang. Online object tracking: A benchmark. In CVPR, 2013.
270
+ [71] Zhirong Wu, Yuanjun Xiong, Stella X Yu, and Dahua Lin. Unsupervised feature learning via non-parametric instance discrimination. In CVPR, 2018.
271
+ [72] Enze Xie, Jian Ding, Wenhai Wang, Xiaohang Zhan, Hang Xu, Zhenguo Li, and Ping Luo. Detco: Unsupervised contrastive learning for object detection. arXiv:2102.04803, 2021.
272
+ [73] Zhenda Xie, Yutong Lin, Zheng Zhang, Yue Cao, Stephen Lin, and Han Hu. Propagate yourself: Exploring pixel-level consistency for unsupervised visual representation learning. In CVPR, 2021.
273
+ [74] Jiarui Xu and Xiaolong Wang. Rethinking self-supervised correspondence learning: A video frame-level similarity perspective. arXiv:2103.17263, 2021.
274
+ [75] Ning Xu, Linjie Yang, Yuchen Fan, Jianchao Yang, Dingcheng Yue, Yuchen Liang, Brian Price, Scott Cohen, and Thomas Huang. Youtube-vos: Sequence-to-sequence video object segmentation. In ECCV, 2018.
275
+ [76] Zhenbo Xu, Wei Zhang, Xiao Tan, Wei Yang, Huan Huang, Shilei Wen, Errui Ding, and Liusheng Huang. Segment as points for efficient online multi-object tracking and segmentation. In ECCV, 2020.
276
+ [77] Linjie Yang, Yuchen Fan, and Ning Xu. Video instance segmentation. In ICCV, 2019.
277
+ [78] Dongdong Yu, Kai Su, Jia Sun, and Changhu Wang. Multi-person pose estimation for pose tracking with enhanced cascaded pyramid network. In ECCV, workshop, 2018.
278
+ [79] Jure Zbontar, Li Jing, Ishan Misra, Yann LeCun, and Stéphane Deny. Barlow twins: Self-supervised learning via redundancy reduction. arXiv:2103.03230, 2021.
279
+ [80] Chi Zhang, Yujun Cai, Guosheng Lin, and Chunhua Shen. Deepemd: Few-shot image classification with differentiable earth mover’s distance and structured classifiers. In CVPR, 2020.
280
+ [81] Richard Zhang, Phillip Isola, and Alexei A Efros. Split-brain autoencoders: Unsupervised learning by cross-channel prediction. In CVPR, 2017.
281
+ [82] Yifu Zhang, Chunyu Wang, Xinggang Wang, Wenjun Zeng, and Wenyu Liu. Fairmot: On the fairness of detection and re-identification in multiple object tracking. arXiv:2004.01888, 2020.
282
+ [83] Zhipeng Zhang, Bing Li, Weiming Hu, and Houweng Peng. Towards accurate pixel-wise object tracking by attention retrieval. arXiv:2008.02745, 2020.
283
+ [84] Kuan Zhu, Haiyun Guo, Zhiwei Liu, Ming Tang, and Jinqiao Wang. Identity-guided human semantic parsing for person re-identification. In ECCV, 2020.
parse/train/HShLSEcVZJ4/HShLSEcVZJ4_content_list.json ADDED
@@ -0,0 +1,1103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "Do Different Tracking Tasks Require Different Appearance Models? ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 274,
8
+ 122,
9
+ 723,
10
+ 172
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Zhongdao Wang1,2 ",
17
+ "bbox": [
18
+ 240,
19
+ 224,
20
+ 375,
21
+ 241
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "Hengshuang Zhao3,4 ",
28
+ "bbox": [
29
+ 442,
30
+ 224,
31
+ 589,
32
+ 241
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "Ya-Li Li1,2 ",
39
+ "bbox": [
40
+ 673,
41
+ 224,
42
+ 751,
43
+ 239
44
+ ],
45
+ "page_idx": 0
46
+ },
47
+ {
48
+ "type": "text",
49
+ "text": "Shengjin Wang1,2∗ ",
50
+ "bbox": [
51
+ 251,
52
+ 253,
53
+ 382,
54
+ 268
55
+ ],
56
+ "page_idx": 0
57
+ },
58
+ {
59
+ "type": "text",
60
+ "text": "Philip H.S. Torr3 ",
61
+ "bbox": [
62
+ 459,
63
+ 253,
64
+ 580,
65
+ 268
66
+ ],
67
+ "page_idx": 0
68
+ },
69
+ {
70
+ "type": "text",
71
+ "text": "Luca Bertinetto5 ",
72
+ "bbox": [
73
+ 647,
74
+ 253,
75
+ 766,
76
+ 268
77
+ ],
78
+ "page_idx": 0
79
+ },
80
+ {
81
+ "type": "text",
82
+ "text": "1Beijing National Research Center for Information Science and Technology (BNRist) 2Department of Electronic Engineering, Tsinghua University 3Torr Vision Group, University of Oxford 4The University of Hong Kong 5Five AI ",
83
+ "bbox": [
84
+ 220,
85
+ 275,
86
+ 779,
87
+ 347
88
+ ],
89
+ "page_idx": 0
90
+ },
91
+ {
92
+ "type": "text",
93
+ "text": "https://zhongdao.github.io/UniTrack ",
94
+ "bbox": [
95
+ 348,
96
+ 361,
97
+ 648,
98
+ 376
99
+ ],
100
+ "page_idx": 0
101
+ },
102
+ {
103
+ "type": "text",
104
+ "text": "Abstract ",
105
+ "text_level": 1,
106
+ "bbox": [
107
+ 462,
108
+ 411,
109
+ 535,
110
+ 428
111
+ ],
112
+ "page_idx": 0
113
+ },
114
+ {
115
+ "type": "text",
116
+ "text": "Tracking objects of interest in a video is one of the most popular and widely applicable problems in computer vision. However, with the years, a Cambrian explosion of use cases and benchmarks has fragmented the problem in a multitude of different experimental setups. As a consequence, the literature has fragmented too, and now novel approaches proposed by the community are usually specialised to fit only one specific setup. To understand to what extent this specialisation is necessary, in this work we present UniTrack, a solution to address five different tasks within the same framework. UniTrack consists of a single and task-agnostic appearance model, which can be learned in a supervised or self-supervised fashion, and multiple “heads” that address individual tasks and do not require training. We show how most tracking tasks can be solved within this framework, and that the same appearance model can be successfully used to obtain results that are competitive against specialised methods for most of the tasks considered. The framework also allows us to analyse appearance models obtained with the most recent self-supervised methods, thus extending their evaluation and comparison to a larger variety of important problems. ",
117
+ "bbox": [
118
+ 233,
119
+ 440,
120
+ 766,
121
+ 661
122
+ ],
123
+ "page_idx": 0
124
+ },
125
+ {
126
+ "type": "text",
127
+ "text": "1 Introduction ",
128
+ "text_level": 1,
129
+ "bbox": [
130
+ 174,
131
+ 685,
132
+ 310,
133
+ 702
134
+ ],
135
+ "page_idx": 0
136
+ },
137
+ {
138
+ "type": "text",
139
+ "text": "Unlike popular image-based computer vision tasks such as classification and object detection, which are (for the most part) unambiguous and clearly defined, the problem of object tracking has been considered under different setups and scenarios, each motivating the design of a separate set of benchmarks and methods. For instance, for the Single Object Tracking (SOT) and Video Object Segmentation (VOS) communities [70, 29, 48], tracking means estimating the location of an arbitrary user-annotated target object throughout a video, where the location of the object is represented by a bounding box in SOT and by a pixel-wise mask in VOS. Instead, in multiple object tracking settings (MOT [41], MOTS [57] and PoseTrack [2]), tracking means connecting sets of (often given) detections across video frames to address the problem of identity association and forming trajectories. Despite these tasks only differing in the number of objects per frame to consider and observation format (bounding boxes, keypoints or masks), the best practices developed by the methods tackling them vary significantly. ",
140
+ "bbox": [
141
+ 174,
142
+ 715,
143
+ 825,
144
+ 881
145
+ ],
146
+ "page_idx": 0
147
+ },
148
+ {
149
+ "type": "text",
150
+ "text": "Though the proliferation of setups, benchmarks and methods is positive in that it allows specific use cases to be thoroughly studied, we argue it makes increasingly harder to effectively study one of the fundamental problems that all these tasks have in common, i.e. what constitutes a good representation to track objects throughout a video? Recent advancements in large-scale models for language [15, 6] and vision [24, 10] have suggested that a strong representation can help addressing multiple downstream tasks. Similarly, we speculate that a good representation is likely to benefit many different tracking tasks, regardless of their specific setup. In order to validate our speculation, in this paper we present a framework that allows to adopt the same appearance model to address five different tracking tasks (Figure 2). In our taxonomy (Figure 4), we consider existing tracking tasks as problems that have either propagation or association at their core. When the core problem is propagation (as in SOT and VOS), one has to localise a target object in the current frame given its location in the previous one. Instead, in association problems (MOT, MOTS, and PoseTrack), target states in both previous and current frames are given, and the goal is to determine the correspondence between the two sets of observations. We show how most tracking tasks currently considered by the community can be simply expressed starting from the primitives of propagation or association. For propagation tasks, we employ existing box and mask propagation algorithms [5, 61, 58]. For association tasks, we propose a novel reconstruction-based metric that leverages fine-grained correspondence to measure similarities between observations. In the proposed framework, each individual task is assigned to a dedicated “head” that allows to represent the object(s) in the appropriate format to compare against prior arts on the relevant benchmarks. ",
151
+ "bbox": [
152
+ 174,
153
+ 90,
154
+ 825,
155
+ 367
156
+ ],
157
+ "page_idx": 1
158
+ },
159
+ {
160
+ "type": "text",
161
+ "text": "Note that, in our framework, only the appearance model contains parameters that can be learned via back-propagation, and that we do not experiment with appearance models that have been trained on specific tracking tasks. Instead, we adopt models trained via recent self-supervised learning (SSL) techniques and that have already demonstrated their effectiveness on a variety of image-based tasks. Our motivation is twofold. First, SSL models are particularly interesting for our use-case, as they are explicitly conceived to be of general purpose. As a byproduct, our work also serves the purpose of evaluating and comparing appearance models obtained from self-supervised learning approaches (see Figure 1). Second, we hope to facilitate the tracking community in directly benefiting from the rapid advancements of the self-supervised learning literature. ",
162
+ "bbox": [
163
+ 173,
164
+ 373,
165
+ 825,
166
+ 498
167
+ ],
168
+ "page_idx": 1
169
+ },
170
+ {
171
+ "type": "text",
172
+ "text": "To summarise, the contributions of our work are as follows: ",
173
+ "bbox": [
174
+ 174,
175
+ 505,
176
+ 565,
177
+ 518
178
+ ],
179
+ "page_idx": 1
180
+ },
181
+ {
182
+ "type": "text",
183
+ "text": "• We propose UniTrack, a framework that supports five tracking tasks: SOT [70], VOS [48], MOT [41], MOTS [57], and PoseTrack [2]; and that can be easily extended to new ones. • We show how UniTrack can leverage many existing general-purpose appearance models to achieve a performance that is competitive with the state-of-the-art on several tracking tasks. • We propose a novel reconstruction-based similarity metric for association that preserves fine-grained visual features and supports multiple observation formats (box, mask and pose). • We perform an extensive evaluation of self-supervised models, significantly extending the empirical analysis of prior literature to video-based tasks. ",
184
+ "bbox": [
185
+ 217,
186
+ 530,
187
+ 826,
188
+ 660
189
+ ],
190
+ "page_idx": 1
191
+ },
192
+ {
193
+ "type": "text",
194
+ "text": "2 The UniTrack Framework ",
195
+ "text_level": 1,
196
+ "bbox": [
197
+ 176,
198
+ 684,
199
+ 426,
200
+ 702
201
+ ],
202
+ "page_idx": 1
203
+ },
204
+ {
205
+ "type": "text",
206
+ "text": "2.1 Overview ",
207
+ "text_level": 1,
208
+ "bbox": [
209
+ 174,
210
+ 717,
211
+ 279,
212
+ 731
213
+ ],
214
+ "page_idx": 1
215
+ },
216
+ {
217
+ "type": "text",
218
+ "text": "Inspecting existing tracking tasks and benchmarks, we noticed that their differences can be roughly categorised across four axes, illustrated in Figure 2 and detailed below. ",
219
+ "bbox": [
220
+ 176,
221
+ 742,
222
+ 823,
223
+ 771
224
+ ],
225
+ "page_idx": 1
226
+ },
227
+ {
228
+ "type": "text",
229
+ "text": "1. Whether the requirement is to track a single object (SOT [70, 29], VOS [48]), or multiple objects (MOT [48], MOTS [57], PoseTrack [2]). \n2. Whether the targets are specified by a user in the first frame only (SOT, VOS), or instead are given in every frame, e.g. by a pre-trained detector (MOT, MOTS, PoseTrack). \n3. Whether the target objects are represented by bounding-boxes (SOT, MOT), pixel-wise masks (VOS, MOTS) or pose annotations (PoseTrack). \n4. Whether the task is class-agnostic, i.e. the target objects can be of any class (SOT, VOS); or if instead they are from a predefined set of classes (MOT, MOTS, PoseTrack). ",
230
+ "bbox": [
231
+ 210,
232
+ 782,
233
+ 825,
234
+ 912
235
+ ],
236
+ "page_idx": 1
237
+ },
238
+ {
239
+ "type": "image",
240
+ "img_path": "images/973edc595a191507bf2aea6445c5996ec93f72ddb0e88f26b36898a37c68af52.jpg",
241
+ "image_caption": [
242
+ "Figure 1: High-level overview of the performance of sixteen self-supervised learning models on five tracking tasks: SOT, VOS, MOT, PoseTracking and MOTS. A higher rank (better performance) corresponds to a vertex nearer to the outer circle. A larger area of the pentagon signifies better overall performance of its respective appearance model. Results of a vanilla ImageNet-supervised model are indicated with a gray dashed line as reference. Notice how the best model VFS [74] dominates on four out of the five tasks considered. "
243
+ ],
244
+ "image_footnote": [],
245
+ "bbox": [
246
+ 176,
247
+ 88,
248
+ 823,
249
+ 241
250
+ ],
251
+ "page_idx": 2
252
+ },
253
+ {
254
+ "type": "image",
255
+ "img_path": "images/bbb9bbd4ea2617640f93f785e04a83089c4d9e40003bce1b4598c8efce9b5721.jpg",
256
+ "image_caption": [
257
+ "Figure 2: Existing tracking problems and their respective benchmarks differ from each other under several aspects: the assumption could be that there is a single or multiple objects to track; targets can be specified by the user in the first frame only, or assumed to be given at every frame (e.g. provided by a detector); the classes of the targets can be known (classspecific) or unknown (class-agnostic); the representation of the targets can be bounding boxes, pixel-wise masks, or pose annotations. "
258
+ ],
259
+ "image_footnote": [],
260
+ "bbox": [
261
+ 176,
262
+ 330,
263
+ 599,
264
+ 523
265
+ ],
266
+ "page_idx": 2
267
+ },
268
+ {
269
+ "type": "image",
270
+ "img_path": "images/3e4c1d7a0a214e23bfae3bfd3eb4d0f1e7cffa401be4de9a82fa1cb0dbdbfff7.jpg",
271
+ "image_caption": [
272
+ "Figure 3: Overview of UniTrack. The framework can be divided in three levels. Level-1: a trainable appearance model. Level-2: the fundamental primitives of propagation and association. Level-3: task-specific heads. "
273
+ ],
274
+ "image_footnote": [],
275
+ "bbox": [
276
+ 624,
277
+ 356,
278
+ 818,
279
+ 515
280
+ ],
281
+ "page_idx": 2
282
+ },
283
+ {
284
+ "type": "text",
285
+ "text": "Typically, in single-object tasks the target is specified by the user in the first frame, and it can be of any class. Instead, for multi-object tasks detections are generally considered as given for every frame, and the main challenge is to solve identity association for the several objects. Moreover, in multi-object tasks the set of classes to address is generally known (e.g. pedestrians or cars). ",
286
+ "bbox": [
287
+ 174,
288
+ 648,
289
+ 825,
290
+ 704
291
+ ],
292
+ "page_idx": 2
293
+ },
294
+ {
295
+ "type": "text",
296
+ "text": "Figure 3 depicts a schematic overview of the proposed UniTrack framework, which can be understood as conceptually divided in three “levels”. The first level is represented by the appearance model, responsible for extracting high-resolution feature maps from the input frame (Section 2.2). The second level consists of the algorithmic primitives addressing propagation (Section 2.3) and association (Section 2.4). Finally, the last level comprises multiple task-specific algorithms that make direct use of the primitives of the second level. In this work, we illustrate how UniTrack can be used to obtain competitive performance on all of the five tracking tasks of level-3 from Figure 3. Moreover, new tracking tasks can be easily integrated. ",
297
+ "bbox": [
298
+ 173,
299
+ 710,
300
+ 825,
301
+ 821
302
+ ],
303
+ "page_idx": 2
304
+ },
305
+ {
306
+ "type": "text",
307
+ "text": "Importantly, note that the appearance model is the only component containing trainable parameters. The reason we opted for a shared and non task-specific representation is twofold. Firstly, the large amount of different setups motivated us to investigate whether having separately-trained models for each setup is necessary. Since training on specific datasets can bias the representation towards a limited set of visual concepts (e.g. animals or vehicles) and limit its applicability to “open-world” settings, we wanted to understand how far can a shared representation go. Second, we wanted to provide the community with multiple baselines that can be used to better assess newly proposed contributions, and that can be immediately used on new datasets and tasks without the need of retraining. ",
308
+ "bbox": [
309
+ 174,
310
+ 828,
311
+ 825,
312
+ 911
313
+ ],
314
+ "page_idx": 2
315
+ },
316
+ {
317
+ "type": "image",
318
+ "img_path": "images/c9435ea1ecca12f41b32445059642d2821ee0a2c6e98ee2db02ea1a012fc3958.jpg",
319
+ "image_caption": [
320
+ "Figure 4: Propagation v.s. Association. In the propagation problem, the goal is to estimate the target state at the current frame given the observation in the previous one. This is typically addressed for one object at the time. In the association problem, observations in both previous and current frames are given, and the goal is to determine correspondences between the two sets. "
321
+ ],
322
+ "image_footnote": [],
323
+ "bbox": [
324
+ 220,
325
+ 87,
326
+ 772,
327
+ 185
328
+ ],
329
+ "page_idx": 3
330
+ },
331
+ {
332
+ "type": "text",
333
+ "text": "",
334
+ "bbox": [
335
+ 174,
336
+ 272,
337
+ 825,
338
+ 314
339
+ ],
340
+ "page_idx": 3
341
+ },
342
+ {
343
+ "type": "text",
344
+ "text": "2.2 Base appearance model ",
345
+ "text_level": 1,
346
+ "bbox": [
347
+ 174,
348
+ 332,
349
+ 377,
350
+ 348
351
+ ],
352
+ "page_idx": 3
353
+ },
354
+ {
355
+ "type": "text",
356
+ "text": "The base appearance model $\\phi$ takes as input a 2D image $I$ and outputs a feature map $X = \\phi ( I ) \\in$ $\\mathbb { R } ^ { H \\times W \\times C }$ . Since ideally an appearance model used for object propagation and association should be able to leverage fine-grained semantic correspondences between images, we choose a network with a small stride of $r = 8$ , so that its output in feature space can have a relatively large resolution. ",
357
+ "bbox": [
358
+ 173,
359
+ 358,
360
+ 825,
361
+ 415
362
+ ],
363
+ "page_idx": 3
364
+ },
365
+ {
366
+ "type": "text",
367
+ "text": "We refer to the vector (along the channel dimension) of a single point in the feature map as a point vector. We expect a point vector $x _ { 1 } ^ { i } \\in \\mathbb { R } ^ { C }$ from the feature map $X _ { 1 }$ to have a high similarity with its “true match” point vector $x _ { 2 } ^ { \\hat { i } }$ in $X _ { 2 }$ , while being far apart from all the other point vectors $x _ { 2 } ^ { j }$ in $X _ { 2 }$ ; i.e. we expect $s ( x _ { 1 } ^ { i } , x _ { 2 } ^ { \\hat { i } } ) > s ( x _ { 1 } ^ { i } , x _ { 2 } ^ { j } ) , \\forall j \\neq \\hat { i }$ , where $s ( \\cdot , \\cdot )$ represents a similarity function. ",
368
+ "bbox": [
369
+ 173,
370
+ 420,
371
+ 825,
372
+ 484
373
+ ],
374
+ "page_idx": 3
375
+ },
376
+ {
377
+ "type": "text",
378
+ "text": "In order to learn fine-grained correspondences, fully-supervised methods are only amenable for synthetic datasets (e.g. Flying Chairs for optical flow [16]). With real-world data, it is intractable to label pixel-level correspondences and train models in a fully-supervised fashion. To overcome this obstacle, in this paper we adopt representations obtained with self-supervision. We experiment both with models trained with approaches that leverage pixel-wise pretext tasks [27, 58] and, inspired by prior works that have pointed out how fine-grained correspondences emerge in middle-level features [39, 74], with models obtained from image-level tasks (e.g. MoCo [24], SimCLR [10]). ",
379
+ "bbox": [
380
+ 173,
381
+ 489,
382
+ 825,
383
+ 587
384
+ ],
385
+ "page_idx": 3
386
+ },
387
+ {
388
+ "type": "text",
389
+ "text": "2.3 Propagation ",
390
+ "text_level": 1,
391
+ "bbox": [
392
+ 174,
393
+ 604,
394
+ 299,
395
+ 619
396
+ ],
397
+ "page_idx": 3
398
+ },
399
+ {
400
+ "type": "text",
401
+ "text": "Problem definition. Figure 4a schematically illustrates the problem of propagation, which we use as a primitive to address SOT and VOS tasks. Considering the single-object case, given video frames $\\{ I _ { t } \\} _ { t = 1 } ^ { T }$ and an initial ground truth observation $z _ { 1 }$ as input, the goal is to predict object states $\\{ \\hat { z } _ { t } \\} _ { t = 2 } ^ { T }$ for each time-step $t$ . In this work we consider three formats to represent objects: bounding boxes, segmentation masks and pose skeletons. ",
402
+ "bbox": [
403
+ 173,
404
+ 631,
405
+ 825,
406
+ 700
407
+ ],
408
+ "page_idx": 3
409
+ },
410
+ {
411
+ "type": "text",
412
+ "text": "Mask propagation. In order to propagate masks, we rely on the approach popularised by recent video self-supervised methods [27, 58, 35, 31]. Consider the feature maps of a pair of consecutive frames $X _ { t - 1 }$ and $X _ { t }$ , both $\\in \\mathbb { R } ^ { s \\times C }$ , and the label mask $z _ { t - 1 } \\in [ 0 , 1 ] ^ { s }$ of the previous frame 2, where $s = H \\times W$ indicates its spatial resolution. We compute the matrix of transitions $K _ { t - 1 } ^ { t } = [ k _ { i , j } ] _ { s \\times s }$ as the affinity matrix between $X _ { t - 1 }$ and $X _ { t }$ . Each element $k _ { i , j }$ is defined as ",
413
+ "bbox": [
414
+ 173,
415
+ 707,
416
+ 825,
417
+ 777
418
+ ],
419
+ "page_idx": 3
420
+ },
421
+ {
422
+ "type": "equation",
423
+ "img_path": "images/6792461fd2bfb639a1b2d8c133224b2e10957e2ef46de96891a8eed5b93fbc54.jpg",
424
+ "text": "$$\nk _ { i , j } = \\mathrm { S o f t m a x } ( X _ { t - 1 } , X _ { t } ^ { \\top } ; \\tau ) _ { i j } = \\frac { \\exp ( \\left. x _ { t - 1 } ^ { i } , x _ { t } ^ { j } \\right. / \\tau ) } { \\sum _ { k } ^ { s } \\exp ( \\left. x _ { t - 1 } ^ { i } , x _ { t } ^ { k } \\right. / \\tau ) } ,\n$$",
425
+ "text_format": "latex",
426
+ "bbox": [
427
+ 312,
428
+ 786,
429
+ 684,
430
+ 819
431
+ ],
432
+ "page_idx": 3
433
+ },
434
+ {
435
+ "type": "text",
436
+ "text": "where $\\langle \\cdot , \\cdot \\rangle$ indicates inner product, and $\\tau$ is a temperature hyperparameter. As in [27], we only keep the top $K$ values for each row and set other values to zero. Then, the mask for the current frame at time $t$ is predicted by propagating the previous prediction: $z _ { t } = K _ { t - 1 } ^ { t } z _ { t - 1 }$ . Mask propagation proceeds in a recurrent fashion: the output mask of the current frame is used as input for the next one. ",
437
+ "bbox": [
438
+ 174,
439
+ 828,
440
+ 825,
441
+ 885
442
+ ],
443
+ "page_idx": 3
444
+ },
445
+ {
446
+ "type": "text",
447
+ "text": "Pose propagation. In order to represent pose keypoints, we use the widely adopted Gaussian belief maps [66]. For a keypoint $p$ , we obtain a belief map $z ^ { p } \\in [ 0 , 1 ] ^ { s }$ by using a Gaussian with mean equal to the keypoint’s location and variance proportional to the subject’s body size. In order to propagate a pose, we can then individually propagate each belief map in the same manner as mask propagation, again as $z _ { t } ^ { p } = K _ { t - 1 } ^ { t } z _ { t - 1 } ^ { p }$ . ",
448
+ "bbox": [
449
+ 174,
450
+ 92,
451
+ 825,
452
+ 162
453
+ ],
454
+ "page_idx": 4
455
+ },
456
+ {
457
+ "type": "text",
458
+ "text": "Box propagation. The position of an object can also be more simply expressed with a fourdimensional vector ${ z = ( u , v , w , h ) }$ , where $( u , v )$ are the coordinates of the bounding-box center, and $( w , h )$ are its width and height. While one could reuse the strategy adopted above by simply converting the bounding-box to a pixel-wise mask, we observed that using this strategy leads to inaccurate predictions. Instead, we use the approach of SiamFC [5], which consists in performing cross-correlation (XCORR) between the target template $z _ { t - 1 }$ and the frame $X _ { t }$ to find the new location of the target in frame $t$ . Cross-correlation is performed at different scales, so that the bounding-box representation can be resized accordingly. We also provide a Correlation Filter-based alternative (DCF) [54, 61] (see Appendix B.1). ",
459
+ "bbox": [
460
+ 173,
461
+ 166,
462
+ 825,
463
+ 292
464
+ ],
465
+ "page_idx": 4
466
+ },
467
+ {
468
+ "type": "text",
469
+ "text": "2.4 Association ",
470
+ "text_level": 1,
471
+ "bbox": [
472
+ 173,
473
+ 308,
474
+ 292,
475
+ 321
476
+ ],
477
+ "page_idx": 4
478
+ },
479
+ {
480
+ "type": "text",
481
+ "text": "Problem definition. Figure 4b schematically illustrates the association problem, which we use as primitive to address the tasks of MOT, MOTS and PoseTrack. In this case, observations for object states $\\{ \\hat { \\mathcal { Z } } _ { t } \\} _ { t = 1 } ^ { T }$ are given for all the frames $\\{ I _ { t } \\} _ { t = 1 } ^ { T }$ , typically via the output of a pre-trained detector. The goal here is to form trajectories by connecting observations across adjacent frames according to their identity. ",
482
+ "bbox": [
483
+ 173,
484
+ 333,
485
+ 825,
486
+ 405
487
+ ],
488
+ "page_idx": 4
489
+ },
490
+ {
491
+ "type": "text",
492
+ "text": "Association algorithm. We adopt the association algorithm proposed in JDE [65] for MOT, MOTS and PoseTrack tasks, of which detailed description can be found in Appendix C.1. In summary, we compute an $N \\times M$ distance matrix between $N$ already-existing tracklets and $M$ “new” detections from the last processed frame. We then use the Hungarian algorithm [30] to determine pairs of matches between tracklets and detections, using the distance matrix as input. To obtain the matrix of distances used by the algorithm, we compute the linear combination of two terms accounting for motion and appearance cues. For the former, we compute a matrix indicating how likely a detection corresponds to the object state predicted by a Kalman Filter [28]. Instead, the appearance component is directly computed by using feature-map representations obtained by processing individual frames with the appearance model (Section 2.2). While object-level features for box and mask observations can be directly obtained by cropping frame-level feature maps, when an object is represented via a pose it first needs to be converted to a mask (via a procedure described in Appendix C.2). ",
493
+ "bbox": [
494
+ 174,
495
+ 411,
496
+ 825,
497
+ 577
498
+ ],
499
+ "page_idx": 4
500
+ },
501
+ {
502
+ "type": "text",
503
+ "text": "A key issue of this scenario is how to measure similarities between object-level features. We find existing methods limited. First, objects are often compared by computing the cosine similarity of average-pooled object-level feature maps [84, 51]. However, the operation of average inherently discards local information, which is important for fine-grained recognition. Approaches [18, 52] that instead to some extent do preserve fine-grained information, such as those computing the cosine similarity of (flattened) feature maps, do not support objects with differently-sized representation (situation that occurs for instance with pixel-level masks). To cope with the above limitations, we propose a reconstruction-based similarity metric that is able to deal with different observation formats, while still preserving fine-grained information. ",
504
+ "bbox": [
505
+ 174,
506
+ 583,
507
+ 825,
508
+ 708
509
+ ],
510
+ "page_idx": 4
511
+ },
512
+ {
513
+ "type": "text",
514
+ "text": "Reconstruction Similarity Metric (RSM). Let $\\{ t _ { i } \\} _ { i = 1 } ^ { N }$ denote the object-level features of $N$ existing tracklets, $t _ { i } \\in \\mathbb { R } ^ { s _ { t _ { i } } \\times C }$ and $s _ { t _ { i } }$ indicates the spatial size of the object, i.e. the area of the box or the mask representing it. Similarly, $\\{ d _ { j } \\} _ { j = 1 } ^ { M }$ denotes the object-level features of $M$ new detections. With the goal of computing similarities to obtain an $N \\times M$ affinity matrix to feed to the Hungarian algorithm, we propose a novel reconstruction-based similarity metric (RSM) between pairs $( i , j )$ , which is obtained as ",
515
+ "bbox": [
516
+ 174,
517
+ 713,
518
+ 825,
519
+ 799
520
+ ],
521
+ "page_idx": 4
522
+ },
523
+ {
524
+ "type": "equation",
525
+ "img_path": "images/24c056e18a46adb1271334380cc817197b43c775b5f64436f41bc8408ecbb292.jpg",
526
+ "text": "$$\n\\mathrm { R S M } ( i , j ) = \\frac { 1 } { 2 } ( \\cos ( t _ { i } , \\hat { t } _ { i j } ) + \\cos ( d _ { j } , \\hat { d } _ { j i } ) ) ,\n$$",
527
+ "text_format": "latex",
528
+ "bbox": [
529
+ 339,
530
+ 803,
531
+ 656,
532
+ 833
533
+ ],
534
+ "page_idx": 4
535
+ },
536
+ {
537
+ "type": "text",
538
+ "text": "where $\\hat { t } _ { i j }$ represents $t _ { i }$ reconstructed from $d _ { j }$ and $\\hat { d } _ { j i }$ represents $d _ { j }$ reconstructed from $t _ { i }$ . In multi-object tracking scenarios, observations are often incomplete due to frequent occlusions. As such, directly comparing features between incomplete and complete observations often fails because of misalignment between local features. Suppose $d _ { j }$ is a detection feature representing a severely occluded pedestrian, while $t _ { i }$ a tracklet feature representing the same person, but unoccluded. Likely, directly computing the cosine similarity between the two will not be very telling. RSM addresses this issue by introducing a step of reconstruction after which the co-occurring parts of point features will be better aligned, thus making the final similarity more likely to be meaningful. ",
539
+ "bbox": [
540
+ 174,
541
+ 840,
542
+ 825,
543
+ 911
544
+ ],
545
+ "page_idx": 4
546
+ },
547
+ {
548
+ "type": "image",
549
+ "img_path": "images/3c0778a55532a316c020ae1fcced1a6dd69ef2502728dd8706e449a49e823e1a.jpg",
550
+ "image_caption": [
551
+ "Figure 5: Reconstruction Similarity Metric (RSM): First, object-level features of existing tracklets and current detections are flattened and concatenated. Then, an affinity matrix between the two feature sets is computed. For a pair of tracklet $t _ { i }$ and detection $d _ { j }$ , we “extract” the corresponding sub-matrix from the entire affinity matrix as linear weights and reconstruct $t _ { i }$ from $d _ { j }$ using these linear weights. The similarity between the original object-level feature and its reconstructed version is finally taken as the RSM. We want the metric to be symmetric, so we perform reconstruction both forward $( t _ { i } d _ { j }$ ) and backward $( t _ { i } \\to d _ { j }$ ). "
552
+ ],
553
+ "image_footnote": [],
554
+ "bbox": [
555
+ 289,
556
+ 89,
557
+ 709,
558
+ 246
559
+ ],
560
+ "page_idx": 5
561
+ },
562
+ {
563
+ "type": "text",
564
+ "text": "",
565
+ "bbox": [
566
+ 174,
567
+ 356,
568
+ 825,
569
+ 398
570
+ ],
571
+ "page_idx": 5
572
+ },
573
+ {
574
+ "type": "text",
575
+ "text": "The reconstructed object-level feature map $\\hat { t } _ { i j }$ is a simple linear transformation of $d _ { j }$ , i.e. $\\hat { t } _ { i j } = R _ { i j } d _ { j }$ , where $R _ { i j } \\in \\mathbb { R } ^ { s _ { t _ { i } } \\times s _ { d _ { j } } }$ is a transformation matrix obtained as follows. We first flatten and concatenate all object-level features belonging to a tracklet (i.e. the set of observations corresponding to an object) into a single feature matrix $\\begin{array} { r } { { \\cal T } ~ \\in ~ \\mathbb { R } ^ { ( \\sum _ { i } s _ { t _ { i } } ) \\times C } } \\end{array}$ . Similarly, we obtain all the object-level feature maps of a new set of detections $\\begin{array} { r } { D \\in \\mathbb { R } ^ { ( \\sum _ { j } s _ { d _ { j } } ) \\times C } } \\end{array}$ . Then, we compute the affinity matrix $A = \\mathrm { S o f f m a x } ( T D ^ { \\top } )$ and “extract” individual $R _ { i j }$ map$A$ propriate . For a sc $( i , j )$ tracklet-detection pair: tic representation of the p $R _ { i j } =$ $\\begin{array} { r } { A \\left[ \\sum _ { i ^ { \\prime } = 1 } ^ { i - 1 } s _ { i ^ { \\prime } } : \\sum _ { i ^ { \\prime } = 1 } ^ { i } s _ { i ^ { \\prime } } , \\sum _ { j ^ { \\prime } = 1 } ^ { j - 1 } s _ { j ^ { \\prime } } : \\sum _ { j ^ { \\prime } = 1 } ^ { j } s _ { j ^ { \\prime } } \\right] } \\end{array}$ \njust described, see Figure 5. ",
576
+ "bbox": [
577
+ 173,
578
+ 406,
579
+ 826,
580
+ 547
581
+ ],
582
+ "page_idx": 5
583
+ },
584
+ {
585
+ "type": "text",
586
+ "text": "RSM can be interpreted from an attention [55] perspective. The feature map of a tracklet $t _ { i }$ being reconstructed can be seen as a set of queries, and the “source” detection feature $d _ { j }$ can be interpreted both as keys and values. The goal is to reconstruct the queries by linear combination of the values. The linear combination (attention) weights are computed using the affinity between queries and keys. Specifically, we first compute a global affinity matrix between $t _ { i }$ and all the $d _ { j ^ { \\prime } }$ for $j ^ { \\prime } = 1 , . . . , M$ , and then extract the corresponding sub-matrix for $t _ { i }$ and $d _ { j ^ { \\prime } }$ as the attention weights. Our formulation leads to a desired property: if the attention weights approach zero, the corresponding reconstructed point vectors will approach zero and so the RSM between $t _ { i }$ and $d _ { j }$ . ",
587
+ "bbox": [
588
+ 173,
589
+ 553,
590
+ 826,
591
+ 665
592
+ ],
593
+ "page_idx": 5
594
+ },
595
+ {
596
+ "type": "text",
597
+ "text": "Measuring similarity by reconstruction is popular in problems such as few-shot learning [67, 80], self-supervised learning [38], and person re-identification [26]. However, reconstruction is typically framed as a ridge regression or optimal transport problem. With $O ( n ^ { 2 } )$ complexity, RSM is more efficient than ridge regression and it has a similar computation cost to calculating the Earth Moving Distance for the optimal transport problem. Appendix D shows a series of ablation studies illustrating the importance of the proposed RSM for the effectiveness of UniTrack on association-type tasks. ",
598
+ "bbox": [
599
+ 174,
600
+ 671,
601
+ 825,
602
+ 753
603
+ ],
604
+ "page_idx": 5
605
+ },
606
+ {
607
+ "type": "text",
608
+ "text": "3 Experiments ",
609
+ "text_level": 1,
610
+ "bbox": [
611
+ 174,
612
+ 773,
613
+ 312,
614
+ 791
615
+ ],
616
+ "page_idx": 5
617
+ },
618
+ {
619
+ "type": "text",
620
+ "text": "Since UniTrack does not require task-specific training, we were able to experiment with many alternative appearance models (see Figure 3) with little computational cost. In Section 3.1 we perform an extensive evaluation to benchmark a wide variety of off-the-shelf, modern self-supervised models, showing their strengths and weaknesses on all five tasks considered. In this section we also conduct a correlation study with the so-called “linear probe” strategy [81], which became a popular way to evaluate representations obtained with self-supervised learning. Then, in Section 3.2 we compare UniTrack (equipped with supervised or unsupervised appearance models) against recent and task-specific tracking methods. ",
621
+ "bbox": [
622
+ 174,
623
+ 805,
624
+ 825,
625
+ 875
626
+ ],
627
+ "page_idx": 5
628
+ },
629
+ {
630
+ "type": "text",
631
+ "text": "",
632
+ "bbox": [
633
+ 174,
634
+ 90,
635
+ 823,
636
+ 132
637
+ ],
638
+ "page_idx": 6
639
+ },
640
+ {
641
+ "type": "text",
642
+ "text": "Implementation details. We use ResNet-18 [25] or ResNet-50 as the default architecture. With ImageNet-supervised appearance model, we refer to the ImageNet pre-trained weights made available in PyTorch’s “Model Zoo”. To prevent excessive downsampling, we modify the spatial stride of layer3 and layer4 to 1, achieving a total stride of $r = 8$ . We extract features from both layer3 and layer4. We report results with layer3 features when comparing against task-specific methods (Section 3.2), and with both layer3 and layer4 when evaluating multiple different representations (Section 3.1). Further implementation details are deferred to Appendix B and C. ",
643
+ "bbox": [
644
+ 174,
645
+ 138,
646
+ 825,
647
+ 237
648
+ ],
649
+ "page_idx": 6
650
+ },
651
+ {
652
+ "type": "text",
653
+ "text": "Datasets and evaluation metrics. For fair comparison with existing methods, we report results on standard benchmarks with conventional metrics for each task. Please refer to Appendix A for details. ",
654
+ "bbox": [
655
+ 173,
656
+ 242,
657
+ 825,
658
+ 271
659
+ ],
660
+ "page_idx": 6
661
+ },
662
+ {
663
+ "type": "text",
664
+ "text": "3.1 UniTrack as evaluation platform of previously-learned representations ",
665
+ "text_level": 1,
666
+ "bbox": [
667
+ 173,
668
+ 296,
669
+ 700,
670
+ 311
671
+ ],
672
+ "page_idx": 6
673
+ },
674
+ {
675
+ "type": "text",
676
+ "text": "The process of evaluating representations obtained via self-supervised learning (SSL) often involves additional training [17, 24, 10], for instance via the use of linear probes [81], which require to fix the pre-trained model and train an additional linear classifier on top of it. In contrast, using UniTrack as evaluation platform (1) does not require any additional training and (2) enables the evaluation on a battery of important video tasks, which have generally been neglected in self-supervised-learning papers in favour of more established image-level tasks such as classification. ",
677
+ "bbox": [
678
+ 174,
679
+ 324,
680
+ 825,
681
+ 409
682
+ ],
683
+ "page_idx": 6
684
+ },
685
+ {
686
+ "type": "text",
687
+ "text": "In this section, we evaluate three types of SSL representations: (a) Image-level representations learned from images, e.g. MoCo [24] and BYOL [21]; (b) Pixel-level representations learned from images (such as DetCo [72] and PixPro [73]) and (c) videos (such as UVC [35] and CRW [27]). For all methods considered, we use the pre-trained weights provided by the authors. ",
688
+ "bbox": [
689
+ 174,
690
+ 415,
691
+ 825,
692
+ 469
693
+ ],
694
+ "page_idx": 6
695
+ },
696
+ {
697
+ "type": "text",
698
+ "text": "Results are shown in Table 1 and 2, where we report the results obtained by using features from either layer3 or layer4 of the pre-trained ResNet backbone. We report both results and separate them by a $\\cdot / { \\cdot }$ in the table. Note that, for this analysis only, for association-type tasks motion cues are discarded to better highlight distinctions between different representations and avoid potential confounding factors. Figure 1 provides a high-level summary of the results by focusing on the ranking obtained by different SSL methods on the five tasks considered (each represented by a vertex in the radar-style plot). Several observations can be made: ",
699
+ "bbox": [
700
+ 174,
701
+ 477,
702
+ 825,
703
+ 573
704
+ ],
705
+ "page_idx": 6
706
+ },
707
+ {
708
+ "type": "text",
709
+ "text": "(1) There is no significant correlation between “linear probe accuracy” on ImageNet and overall tracking performance. The linear probe approach [81] has become a standard way to compare SSL representations. In Figure 6, we plot tracking performance on five tasks (y-axes) against ImageNet top-1 accuracy of 16 different models ( $\\mathbf { \\dot { X } }$ -axes), and report Pearson and Spearman (rank) correlation coefficients. We observe that the correlation between ImageNet accuracy and tracking performance is small, i.e. the Pearson’s $r$ ranges from $- 0 . 3 8$ to $+ 0 . 2 0$ , and Spearman’s $\\rho$ ranges from $- 0 . 3 6$ to $+ 0 . 2 6$ . For most tasks, there is almost no correlation, while for VOS the two measures are mildly inversely correlated. The result suggests that evaluating SSL models on five extra tasks with UniTrack could constitute a useful complement to ImageNet linear probe evaluation, and encourage the SSL community to pursue the design of even more general purpose representations. ",
710
+ "bbox": [
711
+ 173,
712
+ 580,
713
+ 825,
714
+ 718
715
+ ],
716
+ "page_idx": 6
717
+ },
718
+ {
719
+ "type": "text",
720
+ "text": "(2) A vanilla ImageNet-trained supervised representation is surprisingly effective across the board. On most tasks, it reports a performance competitive with the best representation for that task. This is particularly evident from Figure 1, where its performance is outlined as a gray dashed line. This result suggests that results obtained with vanilla ImageNet features should be reported when investigating new tracking methods. ",
721
+ "bbox": [
722
+ 174,
723
+ 724,
724
+ 825,
725
+ 794
726
+ ],
727
+ "page_idx": 6
728
+ },
729
+ {
730
+ "type": "text",
731
+ "text": "(3) The best self-supervised representation ranks first on most tasks. Recently, it has been shown how SSL-trained representations can match or surpass their supervised counterparts on ImageNet classification (e.g. [21]) and many downstream tasks [17, 72]. Within UniTrack, although no individual SSL representation is able to beat the vanilla ImageNet-trained representation on every single task, we observe that the recently proposed VFS [74] ranks first on every task, except for single-object tracking. This suggests that advancements of the self-supervised learning literature can directly benefit the tracking community: it is reasonable to expect that newly-proposed representations will further improve performance across the board. ",
732
+ "bbox": [
733
+ 173,
734
+ 800,
735
+ 825,
736
+ 911
737
+ ],
738
+ "page_idx": 6
739
+ },
740
+ {
741
+ "type": "table",
742
+ "img_path": "images/0dc24063e9adab9828c2cfacfba52582dab8eb824e61c01b0b899ae4c005aef2.jpg",
743
+ "table_caption": [],
744
+ "table_footnote": [],
745
+ "table_body": "<table><tr><td rowspan=\"2\">Representation</td><td colspan=\"2\">SOT [70]</td><td>VOS [48]</td><td colspan=\"2\">MOT [41]</td><td colspan=\"2\">MOTS [57]</td><td colspan=\"2\">PoseTrack [2]</td></tr><tr><td>AUCxCorr ↑</td><td>AUCDCF ↑</td><td>J-mean↑</td><td>IDF1个</td><td>HOTA↑</td><td>IDF1个</td><td>HOTA↑</td><td>IDF1个</td><td>IDs↓</td></tr><tr><td>Random Init.</td><td>10.3 /9.0</td><td>28.0 /20.0</td><td>29.3 /33.9</td><td>8.4/8.9</td><td>8.4/8.5</td><td>20.8 / 23.1</td><td>25.9 / 28.7</td><td>40.2 /38.5</td><td>88792/90963</td></tr><tr><td>ImageNet-sup.</td><td>58.6/49.5</td><td>62.0 / 53.9</td><td>62.3/57.9</td><td>75.6/73.2</td><td>63.3/ 61.8</td><td>68.4 /69.4</td><td>70.2/71.0</td><td>73.7/73.3</td><td>6969/7103</td></tr><tr><td>InsDis [71]</td><td>47.6 /47.3</td><td>61.8 / 51.1</td><td>62.6/ 60.1</td><td>66.7 /73.9</td><td>57.9 / 61.9</td><td>68.4 /68.0</td><td>69.6 /70.3</td><td>72.4 /73.9</td><td>7106 /7015</td></tr><tr><td>MoCoV1 [24]</td><td>50.9 /47.9</td><td>62.2/53.7</td><td>61.5 / 57.9</td><td>69.2 /74.1</td><td>59.4 / 61.9</td><td>70.6/ 69.3</td><td>71.6/70.9</td><td>72.8 / 739</td><td>6872/7092</td></tr><tr><td>PCLV1[34]</td><td>56.8/31.5</td><td>61.3/35.0</td><td>60.4/38.8</td><td>74.8/68.8</td><td>62.8 / 59.1</td><td>67.6 / 65.2</td><td>69.7 / 67.3</td><td>73.3 / 71.1</td><td>6855/10694</td></tr><tr><td>PIRL [42]</td><td>43.8 / 51.0</td><td>61.2 / 53.4</td><td>60.8/57.7</td><td>62.0 /73.4</td><td>54.6 / 61.9</td><td>66.0 / 67.4</td><td>66.7 /69.9</td><td>72.1/73.0</td><td>7235/7173</td></tr><tr><td>PCLV2 [34]</td><td>54.9/50.3</td><td>62.5 /51.6</td><td>61.2/52.5</td><td>74.9 /72.9</td><td>62.7/ 61.8</td><td>68.3/66.6</td><td>70.5/69.0</td><td>73.5/73.4</td><td>6859/ 8489</td></tr><tr><td>SimCLRV1[10]</td><td>47.3 / 51.9</td><td>61.3 / 50.7</td><td>60.5 /56.5</td><td>66.9 / 75.6</td><td>57.7 / 63.2</td><td>65.8 / 67.6</td><td>67.7 /69.5</td><td>72.3 /73.5</td><td>7084 /7367</td></tr><tr><td>MoCoV2 [12]</td><td>53.7 /47.2</td><td>61.5 /53.3</td><td>61.2 /54.0</td><td>72.0 / 74.9</td><td>61.2 / 62.8</td><td>67.5 /67.3</td><td>69.6 / 69.6</td><td>73.0 /73.7</td><td>6932 /7702</td></tr><tr><td>SimCLRV2[11]</td><td>50.0 / 54.7</td><td>61.7 /56.8</td><td>61.6 /58.4</td><td>67.6/75.7</td><td>58.1/ 63.3</td><td>69.1 / 67.4</td><td>70.4 / 69.4</td><td>72.5 /73.6</td><td>7228/7856</td></tr><tr><td>SeLaV2 [3]</td><td>51.0/9.6</td><td>63.1/14.2</td><td>60.2/40.2</td><td>68.8/68.9</td><td>59.0 / 59.3</td><td>66.8/66.1</td><td>68.7/ 68.5</td><td>72.9 /72.3</td><td>6983/7815</td></tr><tr><td>Infomin [53]</td><td>48.5/46.8</td><td>61.2 / 51.9</td><td>58.4/51.1</td><td>66.7 /73.4</td><td>57.6/61.9</td><td>66.7/66.3</td><td>68.5/68.8</td><td>72.5 /74.0</td><td>7066/7901</td></tr><tr><td>BarLow [79]</td><td>44.5/55.5</td><td>60.5 /60.1</td><td>61.7 / 57.8</td><td>63.7/74.5</td><td>55.4/62.4</td><td>68.7/67.4</td><td>69.5/ 69.8</td><td>72.3 /74.3</td><td>7131/7456</td></tr><tr><td>BYOL [21]</td><td>48.3/55.5</td><td>58.9 /56.8</td><td>58.8 / 54.3</td><td>65.3 /74.9</td><td>56.8 / 62.9</td><td>70.1/ 66.8</td><td>70.8 /69.3</td><td>72.4 / 73.8</td><td>7213/8032</td></tr><tr><td>DeepCluster [7]</td><td>51.5 / 52.9</td><td>61.2/61.2</td><td>59.3/53.4</td><td>66.9 /75.1</td><td>57.8 / 63.5</td><td>67.7 /67.4</td><td>69.4 /69.8</td><td>72.7 /73.7</td><td>7018/7283</td></tr><tr><td>SwAV [8]</td><td>49.2/52.4 51.1/45.3</td><td>61.5 /59.4 60.3/43.8</td><td>59.4/57.0</td><td>65.6/74.4</td><td>56.9 / 62.3</td><td>68.8/67.0</td><td>69.9 /69.5</td><td>72.7 /73.6</td><td>7025 /7377</td></tr><tr><td>VFS [74]</td><td></td><td></td><td>62.8/56.8</td><td>74.1/ 77.0</td><td>62.6 / 63.9</td><td>71.0/ 68.0</td><td>72.1/70.4</td><td>73.3/74.2</td><td>6731/7091</td></tr><tr><td>PixPro [73]</td><td>40.5 /49.2</td><td>57.4 /49.3</td><td>56.4/52.2</td><td>61.7 /67.7</td><td>54.3/58.6</td><td>64.2/66.2</td><td>65.1/67.6</td><td>72.4 / 73.1</td><td>7163 /6953</td></tr><tr><td>DetCo [72]</td><td>55.0/47.1</td><td>59.0/53.2</td><td>62.3/56.1</td><td>75.3 /72.9</td><td>62.8/61.6</td><td>67.8/66.8</td><td>70.0 /69.4</td><td>73.9/73.3</td><td>7357/8009</td></tr><tr><td>TimeCycle [64]</td><td>43.8 / 24.2</td><td>57.5/48.7</td><td>51.8 / 48.9</td><td>68.7 / 28.2</td><td>59.3 /25.5</td><td>69.9 / 47.1</td><td>71.3 /49.3</td><td>72.0 / 62.3</td><td>7837 /27884</td></tr></table>",
746
+ "bbox": [
747
+ 173,
748
+ 88,
749
+ 828,
750
+ 310
751
+ ],
752
+ "page_idx": 7
753
+ },
754
+ {
755
+ "type": "table",
756
+ "img_path": "images/acd0287653158841a782e61e16c8453a3f819c121cee449a14221dc0658f2298.jpg",
757
+ "table_caption": [
758
+ "Table 1: Tracking performance of pre-trained image-based SSL models. All methods employ a ResNet-50. "
759
+ ],
760
+ "table_footnote": [],
761
+ "table_body": "<table><tr><td rowspan=\"3\">Representation</td><td colspan=\"2\">SOT [70]</td><td>vOS [48]</td><td colspan=\"2\">MOT [41]</td><td colspan=\"2\">MOTS [57]</td><td colspan=\"2\">PoseTrack [2]</td></tr><tr><td>AUCxcorr 个</td><td>AUCDcF ↑</td><td>J-mean↑</td><td>IDF1↑</td><td>HOTA↑</td><td>IDF1个</td><td>HOTA↑</td><td>IDF1个</td><td>IDs↓</td></tr><tr><td>Random Init.</td><td>16.0 /18.2</td><td>36.1/ 32.1</td><td>33.0 /36.7</td><td>18.4 / 14.6</td><td>20.2 / 12.9</td><td>34.5 /33.1</td><td>39.9 /37.6</td><td>52.8 / 50.5</td><td>65317 /66230</td></tr><tr><td>ImageNet-sup.</td><td>55.0/46.2</td><td>61.8 / 52.6</td><td>58.4/46.7</td><td>74.8 / 74.5</td><td>62.7 / 62.1</td><td>67.6/ 68.6</td><td>69.8 / 70.5</td><td>72.7 / 73.2</td><td>6808 /7024</td></tr><tr><td>Color.[58]+mem.</td><td>41.6 /43.4</td><td>56.7 /58.7</td><td>53.6 / 59.7</td><td>64.9 / 62.8</td><td>56.8/55.5</td><td>68.8/66.1</td><td>69.4 / 66.3</td><td>72.4 / 72.6</td><td>6850/6778</td></tr><tr><td>UVC [35]</td><td>46.0/38.7</td><td>58.1/59.9</td><td>56.5 / 53.9</td><td>66.9/64.5</td><td>57.7/54.1</td><td>69.9 / 68.7</td><td>69.6 / 69.4</td><td>72.6/72.8</td><td>6843/ 6972</td></tr><tr><td>CRW [27]</td><td>46.3/49.1</td><td>58.9 / 54.9</td><td>63.2/60.7</td><td>67.8/73.0</td><td>58.4 / 61.7</td><td>69.0/71.3</td><td>69.2/71.9</td><td>72.7 /73.0</td><td>6799/6761</td></tr></table>",
762
+ "bbox": [
763
+ 174,
764
+ 333,
765
+ 826,
766
+ 415
767
+ ],
768
+ "page_idx": 7
769
+ },
770
+ {
771
+ "type": "text",
772
+ "text": "Table 2: Tracking performance of pre-trained video-based SSL models. All methods employ a ResNet-18. In the above two tables, we report results with [layer3 / layer4] features in each cell, and the best performance between the two is bolded. We use the bolded values to rank the models in each column, and visualise (column-wise) better performance with darker cell colors. Best results in each column are underlined. ",
773
+ "bbox": [
774
+ 173,
775
+ 424,
776
+ 825,
777
+ 474
778
+ ],
779
+ "page_idx": 7
780
+ },
781
+ {
782
+ "type": "image",
783
+ "img_path": "images/298e1349e66d64591ba9deb65f91e69066f5b3dd00510fe516e2e8e0efd32d1c.jpg",
784
+ "image_caption": [
785
+ "Figure 6: Tracking performance is poorly correlated with ImageNet accuracy. On the $\\mathbf { X }$ -axes we plot ImageNet linear probe top-1 accuracy and on the y-axes the tracking performance on five tracking datasets. Correlation coefficients (Spearman’s $\\rho$ and Pearson’s $r$ ) are shown in the left bottom of each plot. "
786
+ ],
787
+ "image_footnote": [],
788
+ "bbox": [
789
+ 191,
790
+ 478,
791
+ 808,
792
+ 568
793
+ ],
794
+ "page_idx": 7
795
+ },
796
+ {
797
+ "type": "text",
798
+ "text": "(4) Pixel-level SSL representations do not seem to have a consistent advantage in pixel-level tasks. In Table 2 and at the bottom of Table 1 we compare recent SSL representations trained with pixellevel proxy tasks: PixPro [73], DetCo [72], TimeCycle [64], Colorization [58], UVC [35] and Contrastive Random Walk (CRW) [27]. Considering that pixel-level models leverage more finegrained information during training, one may expect them to outperform image-based models in the tracking tasks where this is important. It is not straightforward to compare pixel-level SSL models with image-level ones, as the two types employ different default backbone networks. However, note how good image-based models (MoCo-v1, SimCLR-v2) are on par with their supervised counterpart in all tasks, while good pixel-level models (DetCo, CRW) still have gaps with respect to their supervised counterparts in tasks like SOT and MOT. Moreover, from Table 1, one can notice how the last three rows, despite representing methods leveraging pixel-level information during training, are actually outperformed by image-level representations on the pixel-level tasks of VOS, MOTS and PoseTrack. ",
799
+ "bbox": [
800
+ 173,
801
+ 642,
802
+ 826,
803
+ 820
804
+ ],
805
+ "page_idx": 7
806
+ },
807
+ {
808
+ "type": "text",
809
+ "text": "(5) Video data can benefit representation learning for video tasks. The top-ranking VFS is similar to MoCo, SimCLR and BYOL in terms of learning scheme: they all perform contrastive learning on image level features. The most important distinction is the training data. Previous SSL methods mostly train on still-image based datasets (typically ImageNet), while VFS employs a large-scale video dataset Kinetics [9]. Clearly, this is not very surprising, as training on video data can help closing the domain gap with the (video-based) downstream tasks considered in this paper. ",
810
+ "bbox": [
811
+ 174,
812
+ 828,
813
+ 825,
814
+ 911
815
+ ],
816
+ "page_idx": 7
817
+ },
818
+ {
819
+ "type": "table",
820
+ "img_path": "images/900b810dce854ef48b69b5fd4aa58548c53df54ad22c4cde049fda63bb5dc7e1.jpg",
821
+ "table_caption": [],
822
+ "table_footnote": [
823
+ "(a) MOT@MOT-16 [41] test split, private detection. "
824
+ ],
825
+ "table_body": "<table><tr><td>Methods</td><td>IDF1个</td><td>IDs↓</td><td>MOTA↑</td><td>HOTA↑</td></tr><tr><td>JDE [65]</td><td>55.8</td><td>1544</td><td>64.4</td><td>-</td></tr><tr><td>CTracker [47]</td><td>57.2</td><td>1897</td><td>67.6</td><td>48.8</td></tr><tr><td>TubeTK[46]</td><td>62.2</td><td>1236</td><td>66.9</td><td>50.8</td></tr><tr><td>MAT [23]</td><td>63.8</td><td>928</td><td>73.5</td><td>56.3</td></tr><tr><td>TraDes [69]</td><td>64.7</td><td>1144</td><td>70.1</td><td>53.2</td></tr><tr><td>CSTrack [36]</td><td>71.8</td><td>1071</td><td>70.7</td><td>59.8</td></tr><tr><td>FairMOT† [82]</td><td>72.8</td><td>1074</td><td>74.9</td><td>61.6</td></tr><tr><td>UniTrack_ImageNet†</td><td>71.8</td><td>683</td><td>74.7</td><td>59.1</td></tr><tr><td>UniTrack_VFS†</td><td>70.3</td><td>829</td><td>72.7</td><td>58.6</td></tr></table>",
826
+ "bbox": [
827
+ 217,
828
+ 88,
829
+ 517,
830
+ 204
831
+ ],
832
+ "page_idx": 8
833
+ },
834
+ {
835
+ "type": "table",
836
+ "img_path": "images/6be5f5157396ad7bc8873682cc995e34591ba966c033f67ab24ae1ad7632306e.jpg",
837
+ "table_caption": [
838
+ "(b) MOTS@MOTS [57] test split. "
839
+ ],
840
+ "table_footnote": [],
841
+ "table_body": "<table><tr><td>Methods</td><td>IDF1个</td><td>IDs↓</td><td>sMOTA↑</td></tr><tr><td>TrackRCNN [57]</td><td>42.4</td><td>567</td><td>40.6</td></tr><tr><td>SORTS [68]</td><td>57.3</td><td>577</td><td>55.0</td></tr><tr><td>PointTrack [76]</td><td>42.9</td><td>868</td><td>62.3</td></tr><tr><td>GMPHD [50]</td><td>65.6</td><td>566</td><td>69.0</td></tr><tr><td>COSTAt [1]</td><td>70.3</td><td>421</td><td>69.5</td></tr><tr><td>UniTrack_ImageNet†</td><td>67.2</td><td>622</td><td>68.9</td></tr><tr><td>UniTrack_VFSt</td><td>68.2</td><td>342</td><td>69.7</td></tr></table>",
842
+ "bbox": [
843
+ 552,
844
+ 97,
845
+ 803,
846
+ 194
847
+ ],
848
+ "page_idx": 8
849
+ },
850
+ {
851
+ "type": "table",
852
+ "img_path": "images/b05d09529c37ff7520bc914b69932794f5b95f533eac1806916bae536565c9d5.jpg",
853
+ "table_caption": [
854
+ "Table 3: Comparison with task-tailored unsupervised and supervised methods on five typical tracking tasks. $\\dagger$ indicates methods using identical observations. "
855
+ ],
856
+ "table_footnote": [
857
+ "(c) PoseTrack@PoseTrack2018 [2] val split. "
858
+ ],
859
+ "table_body": "<table><tr><td>Methods</td><td>IDF1个</td><td>IDs↓</td><td>MOTA↑</td></tr><tr><td>MDPN [22]</td><td>=</td><td>-</td><td>50.6</td></tr><tr><td>OpenSVAI [44]</td><td></td><td>-</td><td>62.4</td></tr><tr><td>Miracle [78]</td><td></td><td>=</td><td>64.0</td></tr><tr><td>KeyTrack [49]</td><td></td><td>-</td><td>66.6</td></tr><tr><td>TWVA [19]</td><td>=</td><td>=</td><td>64.7</td></tr><tr><td>LightTrack† [43]</td><td>52.2</td><td>3024</td><td>64.8</td></tr><tr><td>UniTrack_ImageNet†</td><td>73.2</td><td>6760</td><td>63.5</td></tr><tr><td>UniTrack_VFS†</td><td>74.2</td><td>7091</td><td>63.3</td></tr></table>",
860
+ "bbox": [
861
+ 189,
862
+ 248,
863
+ 437,
864
+ 354
865
+ ],
866
+ "page_idx": 8
867
+ },
868
+ {
869
+ "type": "table",
870
+ "img_path": "images/cb1a44962ab760f330da88f79ad5b9b875827c25e05635494e1823bd242c5b73.jpg",
871
+ "table_caption": [],
872
+ "table_footnote": [
873
+ "(d) VOS@DAVIS-2017 [48]. "
874
+ ],
875
+ "table_body": "<table><tr><td>Methods</td><td>J-mean��</td></tr><tr><td>Supervised:</td><td></td></tr><tr><td>SiamMask [62]</td><td>54.3</td></tr><tr><td>FEELVOS [56]</td><td>63.7</td></tr><tr><td>STM [45]</td><td>79.2</td></tr><tr><td>Unsupervised:</td><td></td></tr><tr><td>Colorization [58]</td><td>34.6</td></tr><tr><td>TimeCylce [64]</td><td>40.1</td></tr><tr><td>UVC [35]</td><td>56.7</td></tr><tr><td>CRW [27]</td><td>64.8</td></tr><tr><td>UniTrack_ImageNet</td><td>58.4</td></tr><tr><td>UniTrack_VFS</td><td>62.8</td></tr></table>",
876
+ "bbox": [
877
+ 449,
878
+ 234,
879
+ 612,
880
+ 369
881
+ ],
882
+ "page_idx": 8
883
+ },
884
+ {
885
+ "type": "table",
886
+ "img_path": "images/51c5b82ed7f6498fb161a227254e59f619bbee14eb69a816445bc2fb1a5525ed.jpg",
887
+ "table_caption": [],
888
+ "table_footnote": [
889
+ "(e) SOT@OTB-2015 [70]. "
890
+ ],
891
+ "table_body": "<table><tr><td>Methods</td><td>AUC↑</td></tr><tr><td>Supervised:</td><td></td></tr><tr><td>SiamFC[5]</td><td>58.2</td></tr><tr><td>SiamRPN [33]</td><td>63.7</td></tr><tr><td>SiamRPN++ [32]</td><td>69.6</td></tr><tr><td>Unsupervised:</td><td></td></tr><tr><td>UDT [59]</td><td>59.4</td></tr><tr><td>UDT+[59]</td><td>63.2</td></tr><tr><td>LUDT [60]</td><td>60.2</td></tr><tr><td>LUDT+ [60]</td><td>63.9</td></tr><tr><td>UniTrack_ImageNet_XCorr</td><td>55.5</td></tr><tr><td>UniTrack_ImageNet_DCF</td><td>61.8</td></tr><tr><td>UniTrack_VFS_DCF</td><td>60.3</td></tr></table>",
892
+ "bbox": [
893
+ 625,
894
+ 229,
895
+ 805,
896
+ 375
897
+ ],
898
+ "page_idx": 8
899
+ },
900
+ {
901
+ "type": "text",
902
+ "text": "3.2 Comparison with task-specific tracking methods ",
903
+ "text_level": 1,
904
+ "bbox": [
905
+ 178,
906
+ 441,
907
+ 547,
908
+ 455
909
+ ],
910
+ "page_idx": 8
911
+ },
912
+ {
913
+ "type": "text",
914
+ "text": "Unsupervised methods. We observe that UniTrack performs competitively against unsupervised state-of-the-art methods in both the propagation-type tasks we considered (Table 3d and 3e). For SOT, UniTrack with a DCF head [61] outperforms UDT [59] (a strong recent method) by 2.4 AUC points, while it is surpassed by LUDT $^ +$ [60] by 2.1 points. Considering that LUDT $^ +$ adopts an additional online template update mechanism [13] while ours does not, we believe the gap could be closed. In VOS, existing unsupervised methods are usually trained on video datasets [35, 27], and some of the most recent outperform UniTrack (with an ImageNet-trained representation). Nonetheless, when we use a VFS-trained representation, this performance difference is reduced to $2 \\%$ . Finally, note that for association-type tasks we are not aware of any existing unsupervised learning method, and thus in this case we limit the comparison to supervised methods. ",
915
+ "bbox": [
916
+ 174,
917
+ 469,
918
+ 825,
919
+ 608
920
+ ],
921
+ "page_idx": 8
922
+ },
923
+ {
924
+ "type": "text",
925
+ "text": "Comparison with supervised methods. In general, UniTrack with a ResNet-18 appearance model already performs on par with several existing task-specific supervised methods, and in several tasks it even shows superior accuracy, especially for identity-related metrics. (1) For SOT, UniTrack with a DCF head outperforms SiamFC [5] by 3.6 AUC points. This is a significant margin considering that SiamFC is trained with a large amount of crops from video datasets with annotated bounding boxes. (2) For VOS, UniTrack surpasses SiamMask [62] by 4.1 $\\mathcal { I }$ -mean points, despite this being trained on the joint set of three large-scale video datasets [37, 14, 75]. (3) For MOT, we employ the same detections used by the state-of-the-art tracker FairMOT [82]. The appearance embedding in FairMOT is trained with 270K bounding boxes of 8.7K labeled identities, from a MOT-specific dataset. In contrast, despite our appearance model not being trained with any MOT-specific data, our IDF1 score is quite competitive (71.8 v.s. 72.8 of FairMOT), and the ID switches are considerably reduced by $3 6 . { \\overset { - } { 4 } } \\%$ , from 1074 to 683. (4) For MOTS, we start from the same segmentation masks used by the COSTA [1] tracker, and observe a degradation in terms of ID switches (622 vs the 421 of the state of the art), and also a gap in IDF1 and sMOTA. (5) Finally, for pose tracking, we employ the same pose estimator used by LightTrack [43]. Compared with LightTrack, the MOTA of UniTrack degrades of 1.3 points because of an increased amount of ID switches. However, the IDF-1 score is improved by a significant margin $( + 2 1 . 0 $ points). This shows UniTrack preserves identity more accurately for long tracklets: even if ID switches occur more frequently, after a short period UniTrack is able to correct the wrong association, leading to a higher IDF-1. ",
926
+ "bbox": [
927
+ 173,
928
+ 613,
929
+ 825,
930
+ 877
931
+ ],
932
+ "page_idx": 8
933
+ },
934
+ {
935
+ "type": "text",
936
+ "text": "Notice how, overall, UniTrack obtains more competitive performance on tasks that have association at their core, i.e. MOT, MOTS and PoseTrack. Upon inspection, we observed that most failure cases in propagation-type tasks regard the “drift” occurring when the scale of the object is improperly estimated. In future work, this could be addressed for instance by a bounding-box regression module to refine predictions, or by carefully designing a motion model. For association-type tasks, the consequences of any type of inaccuracy are isolated to individual pairs of frames, and thus much less catastrophic by nature. ",
937
+ "bbox": [
938
+ 174,
939
+ 883,
940
+ 820,
941
+ 911
942
+ ],
943
+ "page_idx": 8
944
+ },
945
+ {
946
+ "type": "text",
947
+ "text": "",
948
+ "bbox": [
949
+ 174,
950
+ 92,
951
+ 825,
952
+ 161
953
+ ],
954
+ "page_idx": 9
955
+ },
956
+ {
957
+ "type": "text",
958
+ "text": "4 Related Work ",
959
+ "text_level": 1,
960
+ "bbox": [
961
+ 174,
962
+ 186,
963
+ 321,
964
+ 204
965
+ ],
966
+ "page_idx": 9
967
+ },
968
+ {
969
+ "type": "text",
970
+ "text": "To the best of our knowledge, sharing the appearance model across multiple tracking tasks has not been extensively studied in the computer vision literature, and especially not in the context of SSL representations. Some existing methods do share a common backbone architecture across tasks. For instance, STEm-Seg [4] addresses VIS [77] and MOTS; while TraDeS [69] addresses MOT, MOTS and VIS. However, both methods need to be trained separately and on different datasets for every task. Conversely, we reuse the same representation across five tasks. A promising direction for future work would be to use UniTrack to train a shared representation in a multi-task fashion. Only a few relevant works do adopt a multi-task approach [62, 83, 40], and they usually consider SOT and VOS tasks only. In general, despite the multi-task direction being surely interesting, it requires the availability of large-scale datasets with annotations in multiple formats, and costly training. These are two of the main reasons for which we believe that having a framework that allows to achieve competitive performance on multiple tasks with previously-trained models is a worthwhile endeavour. ",
971
+ "bbox": [
972
+ 174,
973
+ 223,
974
+ 825,
975
+ 387
976
+ ],
977
+ "page_idx": 9
978
+ },
979
+ {
980
+ "type": "text",
981
+ "text": "Self-supervised model evaluation. Given the difference between the pretext tasks used to train self-supervised models and the downstream tasks used to evaluate them, the comparison between self-supervised approaches has always been a delicate matter. Existing evaluation strategies typically require additional training once a general-purpose representation has been obtained. One strategy keeps the representation fixed, and then trains additional task-specific heads with very limited capacity (e.g. a linear classifier [20, 10, 24] or a regression head for object detection [20]). A second strategy, instead, leverages SSL to obtain particularly effective initializations, and then proceeds to fine-tune such initialized models on the downstream task of interest. A wider range of tasks can be tested using this setup, such as semantic segmentation [17, 20] and surface normal estimation [20, 63]. In contrast, UniTrack provides a simpler way to evaluate SSL models, one that does not require additional training or fine-tuning. Also, this work is the first to extend SSL evaluation to a set of diverse video tasks. We believe this contribution will allow the study of self-supervised learning methods with a broader scope of applicability. Our work is also related to a line of self-supervised learning methods [27, 58, 35, 31] that learn their representations in a task-agnostic fashion, and then test it on propagation tasks (SOT and VOS). The design of UniTrack is inspired by their task-agnostic philosophy, while significantly extending their scope to a new set of tasks. ",
982
+ "bbox": [
983
+ 174,
984
+ 395,
985
+ 825,
986
+ 616
987
+ ],
988
+ "page_idx": 9
989
+ },
990
+ {
991
+ "type": "text",
992
+ "text": "5 Conclusion ",
993
+ "text_level": 1,
994
+ "bbox": [
995
+ 174,
996
+ 633,
997
+ 297,
998
+ 651
999
+ ],
1000
+ "page_idx": 9
1001
+ },
1002
+ {
1003
+ "type": "text",
1004
+ "text": "Do different tracking tasks require different appearance models? In order to address this question, the proposed UniTrack framework has been instrumental, as it has allowed to easily experiment with alternative representations on a wide variety of downstream problems. Although the answer is not a resounding “no”, as only sometimes a single shared appearance model can outperform dedicated methods, we argue that a unified framework is an appealing alternative to task-specific methods. The main reason is that it allows us to make the most of the progress made in the representation learning literature at no extra cost. With the rapid development of self-supervised learning, and the large amount of computational resources dedicated to it, we believe it is reasonable to expect that, in the future, a general-purpose representation will be able to outperform task-specific methods across the board. Until then, UniTrack could still serve as a useful evaluation tool for novel representations, especially considering the lack of correlation with the standard linear-probe approach. We believe this will encourage the community to develop self-supervised representations that are of “general purpose” in a broader sense. ",
1005
+ "bbox": [
1006
+ 174,
1007
+ 662,
1008
+ 825,
1009
+ 840
1010
+ ],
1011
+ "page_idx": 9
1012
+ },
1013
+ {
1014
+ "type": "text",
1015
+ "text": "Broader impact. Upon reflection, we believe that progress in tracking applications and selfsupervised learning is beneficial for society, as it can significantly impact (for instance) the development of autonomous vehicles, which we consider a net positive for society. We also recognise that the same technologies could constitute a threat if deployed for surveillance by entities hostile to civil liberties. ",
1016
+ "bbox": [
1017
+ 174,
1018
+ 843,
1019
+ 825,
1020
+ 911
1021
+ ],
1022
+ "page_idx": 9
1023
+ },
1024
+ {
1025
+ "type": "text",
1026
+ "text": "6 Funding Transparency Statement ",
1027
+ "text_level": 1,
1028
+ "bbox": [
1029
+ 174,
1030
+ 89,
1031
+ 486,
1032
+ 107
1033
+ ],
1034
+ "page_idx": 10
1035
+ },
1036
+ {
1037
+ "type": "text",
1038
+ "text": "This work was supported by the National Natural Science Foundation of China under Grant No. 61771288, Cross-Media Intelligent Technology Project of Beijing National Research Center for Information Science and Technology (BNRist) under Grant No. BNR2019TD01022 and the research fund under Grant No. 2019GQG0001 from the Institute for Guo Qiang, Tsinghua University. ",
1039
+ "bbox": [
1040
+ 174,
1041
+ 121,
1042
+ 826,
1043
+ 176
1044
+ ],
1045
+ "page_idx": 10
1046
+ },
1047
+ {
1048
+ "type": "text",
1049
+ "text": "This work was also supported by the EPSRC grant: Turing AI Fellowship: EP/W002981/1, EPSRC/MURI grant EP/N019474/1. We would also like to thank the Royal Academy of Engineering and FiveAI. ",
1050
+ "bbox": [
1051
+ 174,
1052
+ 183,
1053
+ 825,
1054
+ 224
1055
+ ],
1056
+ "page_idx": 10
1057
+ },
1058
+ {
1059
+ "type": "text",
1060
+ "text": "References ",
1061
+ "text_level": 1,
1062
+ "bbox": [
1063
+ 174,
1064
+ 251,
1065
+ 266,
1066
+ 267
1067
+ ],
1068
+ "page_idx": 10
1069
+ },
1070
+ {
1071
+ "type": "text",
1072
+ "text": "[1] Costa_st tracker. https://motchallenge.net/method/MOTS 87&chl=17. \n[2] Mykhaylo Andriluka, Umar Iqbal, Eldar Insafutdinov, Leonid Pishchulin, Anton Milan, Juergen Gall, and Bernt Schiele. Posetrack: A benchmark for human pose estimation and tracking. In CVPR, 2018. \n[3] Yuki Markus Asano, Christian Rupprecht, and Andrea Vedaldi. Self-labelling via simultaneous clustering and representation learning. In ICLR, 2020. \n[4] Ali Athar, Sabarinath Mahadevan, Aljoša Ošep, Laura Leal-Taixé, and Bastian Leibe. Stem-seg: Spatiotemporal embeddings for instance segmentation in videos. In ECCV, 2020. \n[5] Luca Bertinetto, Jack Valmadre, Joao F Henriques, Andrea Vedaldi, and Philip HS Torr. Fully-convolutional siamese networks for object tracking. In ECCV workshops, 2016. \n[6] Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv:2005.14165, 2020. \n[7] Mathilde Caron, Piotr Bojanowski, Armand Joulin, and Matthijs Douze. Deep clustering for unsupervised learning of visual features. In ECCV, 2018. \n[8] Mathilde Caron, Ishan Misra, Julien Mairal, Priya Goyal, Piotr Bojanowski, and Armand Joulin. Unsupervised learning of visual features by contrasting cluster assignments. In NeurIPS, 2018. \n[9] Joao Carreira and Andrew Zisserman. Quo vadis, action recognition? a new model and the kinetics dataset. In CVPR, 2017. \n[10] Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. 2020. \n[11] Ting Chen, Simon Kornblith, Kevin Swersky, Mohammad Norouzi, and Geoffrey Hinton. Big selfsupervised models are strong semi-supervised learners. arXiv:2006.10029, 2020. \n[12] Xinlei Chen, Haoqi Fan, Ross Girshick, and Kaiming He. Improved baselines with momentum contrastive learning. arXiv:2003.04297, 2020. \n[13] Martin Danelljan, Goutam Bhat, Fahad Shahbaz Khan, and Michael Felsberg. Eco: Efficient convolution operators for tracking. In CVPR, 2017. \n[14] Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR, 2009. \n[15] Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. 2018. \n[16] Alexey Dosovitskiy, Philipp Fischer, Eddy Ilg, Philip Hausser, Caner Hazirbas, Vladimir Golkov, Patrick Van Der Smagt, Daniel Cremers, and Thomas Brox. Flownet: Learning optical flow with convolutional networks. In ICCV, 2015. \n[17] Linus Ericsson, Henry Gouk, and Timothy M Hospedales. How well do self-supervised models transfer? In CVPR, 2021. \n[18] Masoud Faraki, Xiang Yu, Yi-Hsuan Tsai, Yumin Suh, and Manmohan Chandraker. Cross-domain similarity learning for face recognition in unseen domains. arXiv:2103.07503, 2021. \n[19] Yang Fu, Sifei Liu, Umar Iqbal, Shalini De Mello, Humphrey Shi, and Jan Kautz. Learning to track instances without video annotations. In CVPR, 2021. \n[20] Priya Goyal, Dhruv Mahajan, Abhinav Gupta, and Ishan Misra. Scaling and benchmarking self-supervised visual representation learning. arXiv:1905.01235, 2019. \n[21] Jean-Bastien Grill, Florian Strub, Florent Altché, Corentin Tallec, Pierre H Richemond, Elena Buchatskaya, Carl Doersch, Bernardo Avila Pires, Zhaohan Daniel Guo, Mohammad Gheshlaghi Azar, et al. Bootstrap your own latent: A new approach to self-supervised learning. arXiv:2006.07733, 2020. \n[22] Hengkai Guo, Tang Tang, Guozhong Luo, Riwei Chen, Yongchen Lu, and Linfu Wen. Multi-domain pose network for multi-person pose estimation and tracking. In ECCV, workshop, 2018. \n[23] Shoudong Han, Piao Huang, Hongwei Wang, En Yu, Donghaisheng Liu, Xiaofeng Pan, and Jun Zhao. Mat: Motion-aware multi-object tracking. arXiv:2009.04794, 2020. visual representation learning. In CVPR, 2020. \n[25] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. \n[26] Lingxiao He, Jian Liang, Haiqing Li, and Zhenan Sun. Deep spatial feature reconstruction for partial person re-identification: Alignment-free approach. In CVPR, 2018. \n[27] Allan Jabri, Andrew Owens, and Alexei A Efros. Space-time correspondence as a contrastive random walk. In NeurIPS, 2020. \n[28] Rudolph Emil Kalman. A new approach to linear filtering and prediction problems. 1960. \n[29] Matej Kristan, Jiri Matas, Aleš Leonardis, Tomáš Vojíˇr, Roman Pflugfelder, Gustavo Fernandez, Georg Nebehay, Fatih Porikli, and Luka Cehovin. A novel performance evaluation methodology for single-target ˇ trackers. IEEE TPAMI, 2016. \n[30] Harold W Kuhn. The hungarian method for the assignment problem. Naval research logistics quarterly, 2(1-2):83–97, 1955. \n[31] Zihang Lai, Erika Lu, and Weidi Xie. Mast: A memory-augmented self-supervised tracker. In CVPR, 2020. \n[32] Bo Li, Wei Wu, Qiang Wang, Fangyi Zhang, Junliang Xing, and Junjie Yan. Siamrpn $^ { + + }$ : Evolution of siamese visual tracking with very deep networks. In CVPR, 2019. \n[33] Bo Li, Junjie Yan, Wei Wu, Zheng Zhu, and Xiaolin Hu. High performance visual tracking with siamese region proposal network. In CVPR, 2018. \n[34] Junnan Li, Pan Zhou, Caiming Xiong, Richard Socher, and Steven CH Hoi. Prototypical contrastive learning of unsupervised representations. In ICLR, 2021. \n[35] Xueting Li, Sifei Liu, Shalini De Mello, Xiaolong Wang, Jan Kautz, and Ming-Hsuan Yang. Joint-task self-supervised learning for temporal correspondence. In NeurIPS, 2019. \n[36] Chao Liang, Zhipeng Zhang, Yi Lu, Xue Zhou, Bing Li, Xiyong Ye, and Jianxiao Zou. Rethinking the competition between detection and reid in multi-object tracking. arXiv:2010.12138, 2020. \n[37] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In ECCV, 2014. \n[38] Songtao Liu, Zeming Li, and Jian Sun. Self-emd: Self-supervised object detection without imagenet. arXiv:2011.13677, 2020. \n[39] Jonathan Long, Ning Zhang, and Trevor Darrell. Do convnets learn correspondence? In NeurIPS, 2014. \n[40] Alan Lukezic, Jiri Matas, and Matej Kristan. D3s-a discriminative single shot segmentation tracker. In CVPR, 2020. \n[41] Anton Milan, Laura Leal-Taixé, Ian Reid, Stefan Roth, and Konrad Schindler. Mot16: A benchmark for multi-object tracking. arXiv:1603.00831, 2016. \n[42] Ishan Misra and Laurens van der Maaten. Self-supervised learning of pretext-invariant representations. In CVPR, 2020. \n[43] Guanghan Ning and Heng Huang. Lighttrack: A generic framework for online top-down human pose tracking. In CVPR, workshop, 2020. \n[44] Guanghan Ning, Ping Liu, Xiaochuan Fan, and Chi Zhang. A top-down approach to articulated human pose estimation and tracking. In ECCV, workshop, 2018. \n[45] Seoung Wug Oh, Joon-Young Lee, Ning Xu, and Seon Joo Kim. Video object segmentation using space-time memory networks. In ICCV, 2019. \n[46] Bo Pang, Yizhuo Li, Yifan Zhang, Muchen Li, and Cewu Lu. Tubetk: Adopting tubes to track multi-object in a one-step training model. In CVPR, 2020. \n[47] Jinlong Peng, Changan Wang, Fangbin Wan, Yang Wu, Yabiao Wang, Ying Tai, Chengjie Wang, Jilin Li, Feiyue Huang, and Yanwei Fu. Chained-tracker: Chaining paired attentive regression results for end-to-end joint multiple-object detection and tracking. In ECCV, 2020. \n[48] F. Perazzi, J. Pont-Tuset, B. McWilliams, L. Van Gool, M. Gross, and A. Sorkine-Hornung. A benchmark dataset and evaluation methodology for video object segmentation. In CVPR, 2016. \n[49] Michael Snower, Asim Kadav, Farley Lai, and Hans Peter Graf. 15 keypoints is all you need. In CVPR, 2020. \n[50] Young-min Song and Moongu Jeon. Online multi-object tracking and segmentation with gmphd filter and simple affinity fusion. arXiv:2009.00100, 2020. \n[51] Yifan Sun, Qin Xu, Yali Li, Chi Zhang, Yikang Li, Shengjin Wang, and Jian Sun. Perceive where to focus: Learning visibility-aware part-level features for partial person re-identification. In CVPR, 2019. \n[52] Yifan Sun, Liang Zheng, Yi Yang, Qi Tian, and Shengjin Wang. Beyond part models: Person retrieval with refined part pooling (and a strong convolutional baseline). In ECCV, 2018. \n[53] Yonglong Tian, Chen Sun, Ben Poole, Dilip Krishnan, Cordelia Schmid, and Phillip Isola. What makes for good views for contrastive learning. In NeurIPS, 2020. \n[54] Jack Valmadre, Luca Bertinetto, Joao Henriques, Andrea Vedaldi, and Philip HS Torr. End-to-end representation learning for correlation filter based tracking. In CVPR, 2017. \n[55] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Ł ukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017. \n[56] Paul Voigtlaender, Yuning Chai, Florian Schroff, Hartwig Adam, Bastian Leibe, and Liang-Chieh Chen. Feelvos: Fast end-to-end embedding learning for video object segmentation. In CVPR, 2019. \n[57] Paul Voigtlaender, Michael Krause, Aljosa Osep, Jonathon Luiten, Berin Balachandar Gnana Sekar, Andreas Geiger, and Bastian Leibe. Mots: Multi-object tracking and segmentation. In CVPR, 2019. \n[58] Carl Vondrick, Abhinav Shrivastava, Alireza Fathi, Sergio Guadarrama, and Kevin Murphy. Tracking emerges by colorizing videos. In ECCV, 2018. \n[59] Ning Wang, Yibing Song, Chao Ma, Wengang Zhou, Wei Liu, and Houqiang Li. Unsupervised deep tracking. In CVPR, 2019. \n[60] Ning Wang, Wengang Zhou, Yibing Song, Chao Ma, Wei Liu, and Houqiang Li. Unsupervised deep representation learning for real-time tracking. IJCV, 2020. \n[61] Qiang Wang, Jin Gao, Junliang Xing, Mengdan Zhang, and Weiming Hu. Dcfnet: Discriminant correlation filters network for visual tracking. arXiv:1704.04057, 2017. \n[62] Qiang Wang, Li Zhang, Luca Bertinetto, Weiming Hu, and Philip HS Torr. Fast online object tracking and segmentation: A unifying approach. In CVPR, 2019. \n[63] Xiaolong Wang and Abhinav Gupta. Unsupervised learning of visual representations using videos. In ICCV, 2015. \n[64] Xiaolong Wang, Allan Jabri, and Alexei A Efros. Learning correspondence from the cycle-consistency of time. In CVPR, 2019. \n[65] Zhongdao Wang, Liang Zheng, Yixuan Liu, and Shengjin Wang. Towards real-time multi-object tracking. In ECCV, 2020. \n[66] Shih-En Wei, Varun Ramakrishna, Takeo Kanade, and Yaser Sheikh. Convolutional pose machines. In CVPR, 2016. \n[67] Davis Wertheimer, Luming Tang, and Bharath Hariharan. Fine-grained few-shot classification with feature map reconstruction networks. CVPR, 2021. \n[68] Nicolai Wojke, Alex Bewley, and Dietrich Paulus. Simple online and realtime tracking with a deep association metric. In ICIP, 2017. \n[69] Jialian Wu, Jiale Cao, Liangchen Song, Yu Wang, Ming Yang, and Junsong Yuan. Track to detect and segment: An online multi-object tracker. In CVPR, 2021. \n[70] Yi Wu, Jongwoo Lim, and Ming-Hsuan Yang. Online object tracking: A benchmark. In CVPR, 2013. \n[71] Zhirong Wu, Yuanjun Xiong, Stella X Yu, and Dahua Lin. Unsupervised feature learning via non-parametric instance discrimination. In CVPR, 2018. \n[72] Enze Xie, Jian Ding, Wenhai Wang, Xiaohang Zhan, Hang Xu, Zhenguo Li, and Ping Luo. Detco: Unsupervised contrastive learning for object detection. arXiv:2102.04803, 2021. \n[73] Zhenda Xie, Yutong Lin, Zheng Zhang, Yue Cao, Stephen Lin, and Han Hu. Propagate yourself: Exploring pixel-level consistency for unsupervised visual representation learning. In CVPR, 2021. \n[74] Jiarui Xu and Xiaolong Wang. Rethinking self-supervised correspondence learning: A video frame-level similarity perspective. arXiv:2103.17263, 2021. \n[75] Ning Xu, Linjie Yang, Yuchen Fan, Jianchao Yang, Dingcheng Yue, Yuchen Liang, Brian Price, Scott Cohen, and Thomas Huang. Youtube-vos: Sequence-to-sequence video object segmentation. In ECCV, 2018. \n[76] Zhenbo Xu, Wei Zhang, Xiao Tan, Wei Yang, Huan Huang, Shilei Wen, Errui Ding, and Liusheng Huang. Segment as points for efficient online multi-object tracking and segmentation. In ECCV, 2020. \n[77] Linjie Yang, Yuchen Fan, and Ning Xu. Video instance segmentation. In ICCV, 2019. \n[78] Dongdong Yu, Kai Su, Jia Sun, and Changhu Wang. Multi-person pose estimation for pose tracking with enhanced cascaded pyramid network. In ECCV, workshop, 2018. \n[79] Jure Zbontar, Li Jing, Ishan Misra, Yann LeCun, and Stéphane Deny. Barlow twins: Self-supervised learning via redundancy reduction. arXiv:2103.03230, 2021. \n[80] Chi Zhang, Yujun Cai, Guosheng Lin, and Chunhua Shen. Deepemd: Few-shot image classification with differentiable earth mover’s distance and structured classifiers. In CVPR, 2020. \n[81] Richard Zhang, Phillip Isola, and Alexei A Efros. Split-brain autoencoders: Unsupervised learning by cross-channel prediction. In CVPR, 2017. \n[82] Yifu Zhang, Chunyu Wang, Xinggang Wang, Wenjun Zeng, and Wenyu Liu. Fairmot: On the fairness of detection and re-identification in multiple object tracking. arXiv:2004.01888, 2020. \n[83] Zhipeng Zhang, Bing Li, Weiming Hu, and Houweng Peng. Towards accurate pixel-wise object tracking by attention retrieval. arXiv:2008.02745, 2020. \n[84] Kuan Zhu, Haiyun Guo, Zhiwei Liu, Ming Tang, and Jinqiao Wang. Identity-guided human semantic parsing for person re-identification. In ECCV, 2020. ",
1073
+ "bbox": [
1074
+ 173,
1075
+ 273,
1076
+ 826,
1077
+ 912
1078
+ ],
1079
+ "page_idx": 10
1080
+ },
1081
+ {
1082
+ "type": "text",
1083
+ "text": "",
1084
+ "bbox": [
1085
+ 171,
1086
+ 106,
1087
+ 828,
1088
+ 911
1089
+ ],
1090
+ "page_idx": 11
1091
+ },
1092
+ {
1093
+ "type": "text",
1094
+ "text": "",
1095
+ "bbox": [
1096
+ 171,
1097
+ 94,
1098
+ 828,
1099
+ 873
1100
+ ],
1101
+ "page_idx": 12
1102
+ }
1103
+ ]
parse/train/HShLSEcVZJ4/HShLSEcVZJ4_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/HShLSEcVZJ4/HShLSEcVZJ4_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/HkfPSh05K7/HkfPSh05K7.md ADDED
@@ -0,0 +1,314 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MULTI-STEP RETRIEVER-READER INTERACTION FOR SCALABLE OPEN-DOMAIN QUESTION ANSWERING
2
+
3
+ Rajarshi Das1, Shehzaad Dhuliawala2, Manzil Zaheer3 & Andrew McCallum1
4
+
5
+ {rajarshi,mccallum}@cs.umass.edu
6
+ shehzaad.dhuliawala@microsoft.com, manzil@zaheer.ml
7
+ 1 University of Massachusetts, Amherst, 2 Microsoft Research, Montreal ´
8
+ 3 Google AI, Mountain View
9
+
10
+ # ABSTRACT
11
+
12
+ This paper introduces a new framework for open-domain question answering in which the retriever and the reader iteratively interact with each other. The framework is agnostic to the architecture of the machine reading model, only requiring access to the token-level hidden representations of the reader. The retriever uses fast nearest neighbor search to scale to corpora containing millions of paragraphs. A gated recurrent unit updates the query at each step conditioned on the state of the reader and the reformulated query is used to re-rank the paragraphs by the retriever. We conduct analysis and show that iterative interaction helps in retrieving informative paragraphs from the corpus. Finally, we show that our multistep-reasoning framework brings consistent improvement when applied to two widely used reader architectures (DR.QA and BIDAF) on various large open-domain datasets — TRIVIAQA-unfiltered, QUASAR-T, SEARCHQA, and SQUAD-open1.
13
+
14
+ # 1 INTRODUCTION
15
+
16
+ Open-domain question answering (QA) (Voorhees et al., 1999) involves a retriever for selecting relevant context from a large corpora of text (e.g. Wikipedia) and a machine reading comprehension (MRC) model for ‘reasoning’ on the retrieved context. A lot of effort has been put into designing sophisticated neural MRC architectures for reading short context (e.g. a single paragraph), with much success (Wang & Jiang, 2017; Seo et al., 2017; Xiong et al., 2017; Wang et al., 2018c; Yu et al., 2018, inter alia). However, the performance of such systems degrades significantly when combined with a retriever in open domain settings. For example, the exact match accuracy of $\mathrm { D r Q A }$ (Chen et al., 2017), on the SQUAD dataset (Rajpurkar et al., 2016) degrades from $6 9 . 5 \%$ to $2 8 . 4 \%$ in open-domain settings. The primary reason for this degradation in performance is due to the retriever’s failure to find the relevant paragraphs for the machine reading model (Htut et al., 2018).
17
+
18
+ We propose the following two desiderata for a general purpose open-domain QA system - (a) The retriever model should be fast, since it has to find the relevant context from a very large text corpora and give it to the more sophisticated and computationally expensive MRC model (b) Secondly, the retriever and reader models should be interactive, i.e. if the reader model is unable to find the answer from the initial retrieved context, the retriever should be able to learn to provide more relevant context to the reader. Open-domain QA systems such as $\mathbb { R } ^ { 3 }$ (Wang et al., 2018a) and DS-QA (Lin et al., 2018) have sophisticated retriever models where the reader and retriever are jointly trained. However, their retriever computes question-dependent paragraph representation which is then encoded by running an expensive recurrent neural network over the tokens in the paragraph. Since the retriever has to rank a lot of paragraphs, this design does not scale to large corporas. One the other hand, the retriever model of QA systems such as DrQA (Chen et al., 2017) is based on a tf-idf retriever, but they lack trainable parameters and are consequently unable to recover from mistakes.
19
+
20
+ This paper introduces an open domain architecture in which the retriever and reader iteratively interact with each other. Our model first pre-computes and caches representation of context (paragraph). These representations are independent of the query unlike recent architectures (Wang et al., 2018a;
21
+
22
+ ![](images/82d26f0dd95fab7f7d701a2a5b76857bd179a094a0d0730be65ce3c615dfc9d7.jpg)
23
+ Figure 1: Our framework unrolled for two steps. The initial query is encoded and the retriever sends the top- $k$ paragraphs to the reader. The multi-step-reasoner component of our model takes in the internal state of the reader model and the previous query vector and does a gated update to produce a reformulated query. This new query vector is used by the retriever to re-rank the paragraphs and send different paragraphs to the reader. Thus the multi-step-reasoner facilitates iterative interaction between the retriever (search engine) and the reader (QA model)
24
+
25
+ Lin et al., 2018) and hence can be computed and stored offline. Given an input question, the retriever performs fast inner product search to find the most relevant contexts. The highest ranked contexts are then passed to the neural MRC model. Our architecture is agnostic to the choice of the reader architecture and we show that multi-step-reasoning increases performance of two state-of-the-art MRC architectures - DrQA (Chen et al., 2017) and BiDAF (Seo et al., 2017).
26
+
27
+ It is possible that the answer might not exist in the initial retrieved paragraphs or that the model would need to combine information across multiple paragraphs (Wang et al., 2018b). We equip the reader with an additional gated recurrent unit (Cho et al., 2014) which takes in the state of the reader and the current query vector and generates a new query vector. This new query vector is then used by the retriever model to re-rank the context. This allows the model to read new paragraphs and combine evidence across multiple paragraphs. Since the retriever makes a ‘hard selection’ of paragraphs to send to the reader, we train the retriever and the reader jointly using reinforcement learning.
28
+
29
+ Our architecture draws inspiration from how students are instructed to take reading comprehension tests (Cunningham & Shablak, 1975; Bishop et al., 2006; Duggan & Payne, 2009). Given a document containing multiple paragraphs and a set of questions which can be answered from the document, (a) the student quickly skims the paragraphs, (b) then for each question, she finds the most relevant paragraphs that she thinks will answer the question. (c) She then carefully reads the chosen paragraph to answer the question (d) However, if the chosen paragraph does not answer the question, then given the question and the knowledge of what she has read till now, she decides which paragraph to read next. Step (a) is akin to our model encoding and storing the question independent paragraph representations and step (b) corresponds to the inner product search to find the relevant context. The reading of the context by the sophisticated neural machine reader corresponds to step (c) and the last step corresponds to the iterative (multi-step) interaction between the retriever and the reader.
30
+
31
+ To summarize, this paper makes the following contributions: (a) We introduce a new framework for open-domain QA in which the retriever and reader iteratively interact with each other via a novel multistep-reasoning component allowing it to retrieve and combine information from multiple paragraphs.
32
+
33
+ (b) Our paragraph representations are independent of the query which makes our architecture highly scalable and we empirically demonstrate it by running large scale experiments over millions of paragraphs. (c) Lastly, our framework is agnostic to the architecture of the reader and we show improvements on two widely used neural reading comprehension models.
34
+
35
+ # 2 BASIC COMPONENTS OF OUR MODEL
36
+
37
+ The architecture of our model consists of three main components - (a) paragraph retriever - that computes a relevance score for each paragraph w.r.t a given query and ranks them according to the computed score. (b) reader - a more sophisticated neural machine reading model that receives few top-ranked paragraphs from the retriever and outputs a span of text as a possible answer to the query and (c) multi-step-reasoner - a gated recurrent unit that facilitates iterative interaction between the retriever and the reader.
38
+
39
+ Formally, the input to our model is a natural language question $\mathrm { Q } = \mathrm { q } _ { 1 }$ , q2,. . . , ${ \bf q } _ { n }$ consisting of $n$ tokens and a set of paragraphs $\mathsf { P } = \{ \mathsf { p } _ { 1 } , \mathsf { p } _ { 2 } , . . . \mathsf { p } _ { K } \}$ . Our model extracts a span of text $a$ as the answer to the question from the paragraphs in P. Note that the set of paragraphs in P can be the paragraphs in a set of documents retrieved by a search engine or it could be all the paragraphs in a large text corpus such as Wikipedia. Next we describe each individual component of our model.
40
+
41
+ # 2.1 PARAGRAPH RETRIEVER
42
+
43
+ The paragraph retriever computes a score for how likely a paragraph is to contain an answer to a given question. The paragraph representations are computed independent of the query and once computed, they are not updated. This allows us to cache the representations and store them offline. The relevance score of a paragraph is computed as a inner product between the paragraph and the query vectors. The paragraph and query representations are computed as follows.
44
+
45
+ Given a paragraph $\mathfrak { p } = \{ \mathfrak { p } _ { 1 } , \mathfrak { p } _ { 2 } , \dots , \mathfrak { p } _ { m } \}$ consisting of $m$ tokens, a multi-layer recurrent neural network encodes each tokens in the paragraph — $\left\{ \mathbf { p } _ { 1 } , \mathbf { p } _ { 2 } , \ldots , \mathbf { p } _ { m } \right\} = \mathbf { R N N } \left( \left\{ \mathbf { p } _ { 1 } , \mathbf { p } _ { 2 } , \ldots , \mathbf { p } _ { m } \right\} \right)$ , where $\mathbf { p } _ { j } \in \mathbb { R } ^ { 2 d }$ encodes useful contextual information around the $j$ -th token. Specifically we choose to use a multilayer bidirectional long-short term memory network (LSTM) (Hochreiter & Schmidhuber, 1997) and take $\mathbf { p } _ { j }$ as the hidden units in the last layer of the RNN. We concatenate the representation computed by the forward and the backward LSTM. To compute a single paragraph vector $ { \mathbf { p } } \in \mathbb { R } ^ { 2 d }$ from all the token representations, we combine them using weights $b _ { j } \in \mathbb { R }$
46
+
47
+ $$
48
+ b _ { j } = \frac { \exp ( \mathbf { w } \cdot \mathbf { p _ { j } } ) } { \sum _ { j ^ { \prime } } \exp ( \mathbf { w } \cdot \mathbf { p } _ { j ^ { \prime } } ) } \qquad \mathbf { p } = W _ { s } \sum _ { j ^ { \prime } } b _ { j ^ { \prime } } \cdot \mathbf { p _ { j ^ { \prime } } }
49
+ $$
50
+
51
+ Here $b _ { j }$ encodes the importance of each token and $\mathbf { w } \in \mathbb { R } ^ { 2 d } , \mathbf { W _ { s } } \in \mathbb { R } ^ { 2 d \times 2 d }$ are learned weights. The query ${ \dot { \mathbf { q } } } = \left\{ { \mathfrak { q } } _ { 1 } , { \mathfrak { q } } _ { 2 } , \dots , { \mathfrak { q } } _ { n } \right\}$ is encoded by another network with the same architecture to obtain a query vector $\mathbf { q } \in \mathbb { R } ^ { 2 d }$ . Next the relevance score of a paragraph w.r.t the query (score $( \mathbf { p } , \mathbf { q } ) \in \mathbb { R } )$ is computed by a simple inner product — score $( { \bf p } , { \bf q } ) = \langle { \bf p } , { \bf q } \rangle$ . The paragraph retriever then returns the top scoring $k$ paragraphs to the reader.
52
+
53
+ Fast inner product search. Inner product can be efficiently computed on a GPU, however in our experiments with large corpus with over million paragraphs, (a) the paragraph vectors require more memory than available in a single commodity GPU (b) it is computationally wasteful to compute inner products with all paragraph vectors and we can do better by leveraging fast nearest neighbor (NN) search algorithms. Since the retriever has to find the $k$ paragraphs with the highest inner products w.r.t query, our problem essentially reduces to maximum inner product search (MIPS). There exists data structures for fast NN search in metric spaces such as Cover Trees (Beygelzimer et al., 2006). But we cannot use them directly, since triangle equality does not hold in inner product space. Borrowing ideas from Bachrach et al. (2014); Zaheer et al. (2019), we propose to use nearest neighbor (NN) search algorithms to perform the MIPS in sublinear time as follows.
54
+
55
+ Let u be an upper bound for the L2 norm for all paragraphs, i.e. $\mathbf { u } \geq \| \mathbf { p } \|$ , $\forall \mathbf { p }$ . Next, we modify the original paragraph and query vectors such that searching for the $\mathbf { k }$ -nearest neighbor w.r.t L2 distance with the modified vectors is equivalent to finding the $k$ nearest (original) paragraph vectors in the inner-product space.
56
+
57
+ Define the augmented paragraph vectors as $\tilde { \mathbf { p } } \mathbf { i } = [ \mathbf { p } \mathbf { i } ; \sqrt { \mathbf { u } ^ { 2 } - \| \mathbf { p } \mathbf { i } \| ^ { 2 } } ]$ and augmented query vector as $\widetilde { \mathbf { q } } = [ \mathbf { q } ; 0 ]$ , where $[ ; ]$ denotes concatenation. Note, with this transformation, $\langle \tilde { { \bf p } } _ { \bf i } , \tilde { { \bf q } } \rangle = \langle { \bf p _ { i } } , { \bf q } \rangle$ . Now,
58
+
59
+ $$
60
+ \begin{array} { r l } & { \mathrm { N N } ( \tilde { \bf p _ { i } } , \tilde { \bf q } ) = \underset { i } { \arg \operatorname* { m i n } } \left\| \tilde { \bf p _ { i } } - \tilde { \bf q } \right\| ^ { 2 } } \\ & { \quad \quad \quad \quad = \underset { i } { \arg \operatorname* { m i n } } \left\| \tilde { \bf p _ { i } } \right\| ^ { 2 } + \left\| \tilde { \bf q } \right\| ^ { 2 } - 2 \langle \tilde { \bf p _ { i } } , \tilde { \bf q } \rangle } \\ & { \quad \quad \quad \quad = \underset { i } { \arg \operatorname* { m i n } } ( { \bf u } ^ { 2 } - 2 \langle \tilde { \bf p _ { i } } , \tilde { \bf q } \rangle ) } \\ & { \quad \quad \quad \quad = \underset { i } { \arg \operatorname* { m a x } } \langle \tilde { \bf p _ { i } } , \tilde { \bf q } \rangle = \underset { i } { \arg \operatorname* { m a x } } \langle { \bf p _ { i } } , { \bf q } \rangle = \mathrm { M I P S } ( { \bf p _ { i } } , { \bf q } ) } \end{array}
61
+ $$
62
+
63
+ Many exact NN search algorithms can find $\mathbf { k }$ -NN in time (sublinear) logarithmic in number of paragraphs (Beygelzimer et al., 2006; Zaheer et al., 2019), after an one-time preprocessing. In our architecture, the preprocessing can be done because the set of all paragraphs is fixed for all the queries. We chose to use SGTree (Zaheer et al., 2019) to perform the NN/MIPS due to its fast construction time and competitive performance reducing the search to logarithmic time per query.
64
+
65
+ Note that our paragraph representations are independent of the given query and are never updated once they are trained. After training is completed, we cache the $ { \mathbf { p } } \in { \mathbb { R } } ^ { 2 d }$ vectors. This is unlike many recent work in open-domain QA. For example, in $\mathbb { R } ^ { 3 }$ (Wang et al., 2018a), the retriever uses Match-LSTM model (Wang & Jiang, 2017) to compute question-matching representations for each token in the passage. The paragraph representations are then obtained by running a bi-directional RNN over these matched representation. Although powerful, this architecture design will not scale in open-domain settings where the retriever has to re-compute new representations for possibly millions of paragraphs for every new question. In contrast, once training is over, we cache the paragraph representation and use it for every query at test time.
66
+
67
+ Training - Following previous work (Htut et al., 2018; Lin et al., 2018; Wang et al., 2018a), we gather labels for paragraphs during training using distant supervision (Mintz et al., 2009). A paragraph that contains the exact ground truth answer string is labeled as an positive example. For a positive (negative) labeled paragraph, we maximize (minimize) the $\log ( \sigma ( \mathrm { s c o r e } ( \mathbf { p } , \mathbf { q } ) ) )$ . The number of layers of the bi-directional LSTM encoder is set to three and we use Adam (Kingma & Ba, 2014) for optimization. Once training is done, we pre-compute and cache the paragraph representation of each dataset in our experiments.
68
+
69
+ # 2.2 MACHINE READER
70
+
71
+ The reader is a sophisticated neural machine reading comprehension (MRC) model that takes in the top few paragraphs sent by the retriever and outputs a span of answer text. Our model is agnostic to the exact architecture of the reader and we perform experiments to show the efficacy of our model on two state-of-the-art neural machine reading models - DrQA and BiDAF.
72
+
73
+ MRC models designed for SQUAD (Rajpurkar et al., 2016), NewsQA (Trischler et al., 2016), etc operate on a single paragraph. However it has been shown that reading and aggregating evidence across multiple paragraphs is important when doing QA over larger evidence set (e.g. full Wikipedia document) (Swayamdipta et al., 2018; Clark & Gardner, 2018) and in open domain settings (Wang et al., 2018b). Most MRC models compute a start and end scores for each token in the paragraph that represents how likely a token is the start/end of an answer span. To gather evidence across multiple paragraphs sent by the retriever, we normalize the start/end scores across the paragraphs. Furthermore a text span can appear multiple times in a paragraph. To give importance to all answer spans in the text, our objective aggregates (sums) the log-probability of the score for each answer position. Let $\mathcal { T } ( w , p )$ denote the token start positions where the answer span appears in the paragraph $p$ and let $w _ { S }$ be the starting word of the answer span. Our model maximizes the sum of the following objective for the start and end word of an answer spans as follows. (For brevity, we only show the objective for the starting word $( \mathbf { w } _ { s } )$ of the span.)
74
+
75
+ $$
76
+ \log \left( \frac { \sum _ { j \in \mathcal { P } } \sum _ { k \in \mathcal { Z } ( w _ { s } , p _ { j } ) } \exp ( \operatorname { s c o r e } _ { \mathrm { s t a r t } } ( k , j ) ) } { \sum _ { j \in \mathcal { P } } \sum _ { i = 1 } ^ { n _ { j } } \exp ( \operatorname { s c o r e } _ { \mathrm { s t a r t } } ( i , j ) ) } \right)
77
+ $$
78
+
79
+ Here, $\mathcal { P }$ denotes the set of all top-ranked paragraphs by the retriever, $n _ { j }$ denotes the number of tokens in paragraph $j$ and $\mathrm { s c o r e } _ { \mathrm { s t a r t } } \left( k , j \right)$ denotes the start score of the $k$ -th token in the $j$ -th paragraph.
80
+
81
+ Score aggregation during inference. During inference, following Chen et al. (2017); Seo et al. (2017), the score of a span that starts at token position $i$ and ends at position $j$ of paragraph $p$ is given by the sum of the $\mathrm { \ s c o r e } _ { \mathrm { s t a r t } } ( i , p )$ and $\operatorname { s c o r e } _ { \mathrm { e n d } } ( j , p )$ . During inference, we score spans up to a pre-defined maximum length of 15. Further, we add the scores of spans across different paragraphs (even if they are retrieved at different steps), if they have the same surface form. That is, if the same span (e.g. “Barack Obama”) occurs multiple times in several paragraphs, we sum the individual span scores. However, to ensure tractability, we only consider the top 10 scoring spans in each paragraph for aggregation. It should be noted that the changes we made to aggregate evidence over multiple paragraphs and mentions of spans needs no change to the original MRC architecture.
82
+
83
+ # 3 MULTI-STEP-REASONER
84
+
85
+ A novel component of our open-domain architecture is the multi-step-reasoner which facilitates iterative interaction between the retriever and the machine reader. The multi-step-reasoner a module comprised of a gated recurrent unit (Cho et al., 2014) which takes in the current state of the reader and the current query vector and does a gated update to produce a reformulated query. The reformulated query is sent back to the retriever which uses it to re-rank the paragraphs in the corpus. Since the gated update of the multi-step-reasoner, conditions on the current state of the machine reader, this multi-step interaction provides a way for the search engine (retriever) and the QA model (reader) to communicate with each other. This can also be seen as an instance of two agents cooperating via communication to solve a task (Lazaridou et al., 2017; Lee et al., 2018; Cao et al., 2018).
86
+
87
+ More formally, let $\mathbf { q } _ { \mathbf { t } } \in \mathbb { R } ^ { 2 d }$ be the current query representation which was most recently used by the paragraph retriever to score the paragraphs in the corpus. The multi-step-reasoner also has access to the reader state which is computed from the hidden memory vectors of the reader. The reader state captures the current information that the reader has encoded after reading the paragraphs that was sent by the retriever. Next we show how the reader state is computed.
88
+
89
+ Span extractive machine reading architectures compute a hidden representation for each token in the paragraph. Our framework needs access to these hidden representations to compute the reader state.
90
+
91
+ Let $\mathbf { m _ { j } } \in \mathbb { R } ^ { 2 p }$ be the hidden vector associated with the $j { \cdot }$ -th token in the paragraph. Let $\mathbf { L } \in \mathbb { R } ^ { 2 p }$ be the final query representation of the reader model. $\mathbf { L }$ is usually created by some pooling operation on the hidden representation of each question token. The reader state $\mathbf { S } \in \mathbb { R } ^ { \sum p }$ is computed from each of the hidden vectors $\mathbf { m } _ { \mathrm { j } }$ and $\mathbf { L }$ by first computing soft-attention weights between each paragraph token, followed by combining each $\mathbf { m _ { j } }$ with the soft attention weights.
92
+
93
+ $$
94
+ \alpha _ { \mathbf { j } } = \frac { \exp \left( \mathbf { m _ { j } } \cdot \mathbf { L } \right) } { \sum _ { j ^ { \prime } } \exp \left( \mathbf { m _ { j } ^ { \prime } } \cdot \mathbf { L } \right) } \qquad \mathbf { S } = \sum _ { j } \left( \alpha _ { \mathbf { j } } \cdot \mathbf { m _ { j } } \right)
95
+ $$
96
+
97
+ Finally, the new reformulated query $\mathbf { q } _ { \mathbf { t } + \mathbf { 1 } } \in \mathbb { R } ^ { 2 d }$ for the paragraph retriever is calculated by the multi-step-reasoner module as follows —
98
+
99
+ $$
100
+ \begin{array} { r } { \mathbf { q } _ { \mathbf { t } + 1 } ^ { ' } = \mathbf { G } \mathbf { R } \mathbf { U } \left( \mathbf { q } _ { \mathbf { t } } , \mathbf { S } \right) } \\ { \mathbf { q } _ { \mathbf { t } + 1 } = \mathrm { F F N } \left( \mathbf { q } _ { \mathbf { t } + 1 } ^ { ' } \right) } \end{array}
101
+ $$
102
+
103
+ In our architecture, we used a 3 layer GRU network, followed by a one layer feed forward network (FFN) with a ReLU non-linearity. The gated update ensures that relevant information from ${ \bf q _ { t } }$ is preserved and new and useful information from the reader state $\mathbf { s }$ is added to the reformulated query.
104
+
105
+ # 3.1 TRAINING
106
+
107
+ There exists no supervision for training the query reformulation of the multi-step-reasoner. Instead, we employ reinforcement learning (RL) and train it by how well the reader performs after reading the new set of paragraphs retrieved by the modified query. We define the problem as a deterministic finite horizon Partially Observed Markov decision process (POMDP). The components of POMDP are —
108
+
109
+ States. A state in the state space consists of the entire text corpora, the query, the answer, and $k$ selected paragraphs. The reader is part of the environment and is fully described given the current state, i.e. selected paragraphs and the query.
110
+
111
+ Observations. The agent only observes a function of the current state. In particular, to the agent only the query vector and the memory of the reader model is shown, which are a function of the current state. Intuitively, this represents the information encoded by the machine reader model after reading the top $k$ paragraphs sent by the retriever in current step.
112
+
113
+ Actions. The set of all paragraphs in the text corpora forms the action space. The retriever scores all paragraphs w.r.t the current query and selects the top $k$ paragraphs to send to the reader model. We treat $k$ as a hyper-parameter in our experiments.
114
+
115
+ Reward. At every step, the reward is measured by how well the answer extracted by the reader model matches to the ground-truth answer. We use the $\mathrm { F } _ { 1 }$ score (calculated by word overlap between prediction and ground-truth) as the reward at each step.
116
+
117
+ Transition. The environment evolves deterministically after reading the paragraphs sent by the retriever.
118
+
119
+ Our policy $\pi$ is parameterized by the GRU and the FFN of the multi-step-reasoner. Let $r _ { t }$ denote the reward $F _ { 1 }$ score) returned by the environment at time $t$ . We directly optimize the parameters to maximize the expected reward given by — $\begin{array} { r } { J ( \boldsymbol { \Theta } ) = \mathbb { E } _ { \underline { { \pi } } } \left[ \sum _ { t = 1 } ^ { T } r _ { t } \right] } \end{array}$ . Here $T$ denotes the number of steps of interactions between the retriever and the reader. We treat the reward at each step equally and do not apply any discounting. Motivated by the REINFORCE (Williams, 1992) algorithm, we compute the gradient of our objective as
120
+
121
+ $$
122
+ \nabla _ { \boldsymbol { \Theta } } J ( \boldsymbol { \Theta } ) = \mathbb { E } _ { \boldsymbol { \pi } } \left[ \sum _ { t = 1 } ^ { T } \boldsymbol { r } _ { t } \cdot \log ( \pi _ { \boldsymbol { \Theta } } ( p _ { t } \mid q ) ) \right]
123
+ $$
124
+
125
+ Here, $p _ { t }$ is the top-ranked paragraph returned by the retriever at time $t$ and the probability that the current policy assigns to $p _ { t }$ is computed by normalizing the scores with a softmax. It is usual practice to add a variance reduction baseline (e.g. average of rewards in the minibatch) for stable training, but we found this significantly degrades the final performance. We think this is because, in QA, a minibatch consists of questions of varying difficulty and hence the rewards in a batch itself have high variance. This is similar to findings by Shen et al. (2017) for closed domain-QA (e.g. SQUAD).
126
+
127
+ Pretraining the multi-step-reasoner. We also find that pre-training the multi-step-reasoner before fine tuning with RL to be effective. We train to rank the similarity between the reformulated query vector and one of the distantly-supervised correct paragraph vectors higher than the score of a randomly sampled paragraph vector. Specifically, let q denote the query vector, $\mathbf { p } ^ { * } , \mathbf { p } ^ { \prime }$ denote the paragraph representation of paragraphs containing the correct answer string and a random sampled paragraph respectively. We follow the Bayesian Personalized Ranking approach of Rendle et al. (2009) and maximize $\log ( \sigma ( \mathbf { q } ^ { \top } \mathbf { p } ^ { * } - \mathbf { q } ^ { \top } \mathbf { p } ^ { ' } ) )$ . The paragraph representations $\mathbf { p } ^ { * } , \mathbf { p } ^ { \prime }$ are kept fixed and gradient only flows through $\mathbf { q }$ to the parameters of the multi-step-reasoner.
128
+
129
+ # 3.2 PUTTING IT ALL TOGETHER
130
+
131
+ Our open-domain architecture is summarized above in Algorithm 1. Given a large text corpora (as a list of paragraphs), the corresponding paragraph embeddings (which can be trained by the procedure in $( \ S 2 . 1 ) )$ and hyper-parameters $( \mathrm { T } , k )$ , our model $\mathcal { M }$ returns a text span $a$ as answer. The multi-step interaction between the retriever and reader can be best understood by the for loop in line 2 of algorithm 1. The initial query ${ \bf q 0 }$ is first used to rank all the paragraphs in the corpus (line 3), followed by which the top $k$ paragraphs are sent to the reader (line 4). The reader returns the answer span (with an associated score for the span) and also its internal state (line 5). The GRU network then takes in the current query and the reader state to produce the updated query which is then passed to the retriever (line 6). The retriever uses this updated query to again re-rank the paragraphs and the entire process is repeated for $\mathrm { T }$ steps. At the end of $\mathrm { T }$ steps, the model returns the span with the highest score returned by the reader model. The reader is trained using supervised learning (using the correct spans as supervision) and the parameters of the GRU network are trained using reinforcement learning. During training, we first pre-train the reader model by setting the number of multi-step reasoning steps $( \mathrm { T } = 1 )$ ). After the training converges, we freeze the parameters of the reader model and train the parameters of the GRU network using policy gradients. The output of the reader model is used to generate the reward which is used to train the policy network.
132
+
133
+ <table><tr><td colspan="2">Algorithm 1 Multi-step reasoning for open-domain QA</td></tr><tr><td colspan="2">Input: Question text Qtext, Text corpus (as a list of paragraphs)T,Paragraph embeddings P (list of paragraph embeddings for each paragraph in T),Model M, Number of multi-steps T, number</td></tr><tr><td>of top-ranked paragraphs k Output: Answer span a</td><td></td></tr><tr><td>1: qo ← encode_query(Qtext) 2: for t in range(T) do</td><td>#(2.1)</td></tr><tr><td>3: {𝑝1,P2,...Pk} ←M.retriever.score_paras(qt,P,k) # 4:</td><td># each pi denotes a paragraph id # get text for the top paragraphs</td></tr><tr><td>5: at,St,St ← M.reader.read(Plexk,Qtext)</td><td># (§ 2.2); St denotes reader state</td></tr><tr><td></td><td># at denotes answer span</td></tr><tr><td>6:qt ← M.multi_step-reasoner.GRU(qt,St)</td><td># st denotes the score of the span</td></tr><tr><td></td><td># (§ 3); Query reformulation step</td></tr><tr><td>7: end for</td><td></td></tr><tr><td>8:return answer span a with highest score</td><td></td></tr></table>
134
+
135
+ # 4 RELATED WORK
136
+
137
+ Open domain QA is a well-established task that dates back to few decades of reasearch. For example the BASEBALL system (Green Jr et al., 1961) aimed at answering open domain question albeit for a specific domain. Open-domain QA has been popularized by the Trec-8 task (Voorhees et al., 1999) and has recently gained significant traction due to the introduction of various datasets (Dunn et al., 2017; Dhingra et al., 2017; Joshi et al., 2017). In many open-domain systems (Chen et al., 2017), the retriever is a simple IR based system (e.g. tfidf retriever) with no trainable parameters and hence the retriever cannot overcome from its mistakes. Recent work such as $\mathbb { R } ^ { 3 }$ (Wang et al., 2018a), DS-QA (Lin et al., 2018) use a trained retriever and have shown improvement in performance. However they form query dependent paragraph representation and such architectures will not scale to full open-domain settings where the retriever has to rank millions of paragraphs. and neither do they support iterative reasoning thereby failing to recover from any mistakes made by the ranker or where evidence needs to be aggregated across multiple paragraphs.
138
+
139
+ Query Reformulation by augmenting the original query with terms from the top- $k$ retrieved document (Xu & Croft, 1996; Lavrenko & Croft, 2001) has proven to be very effective in information retrieval. Instead of using such automatic relevance feedback, Nogueira & Cho (2017) train a query reformulation model to maximize the recall of a IR system using RL and Pfeiffer et al. (2018) showed that query refinement is effective for IR in bio-medical domain. The main difference between this work and ours is that our model directly optimizes to improve the performance of a question answering system. However, as we show, we still see an improvement in the recall of our retriever $( \ S 5 . 1 )$ . Perhaps the most related to our work is Active Question Answering (AQA) (Buck et al., 2018), which use reformulation of the natural language query to improve the performance of a BiDAF reader model on SEARCHQA. The main difference between AQA is that we reformulate the query in vector space. We compare with AQA and show that our model achieves significantly better performance.
140
+
141
+ Iterative Reasoning has shown significant improvements in models using memory networks (Sukhbaatar et al., 2015; Miller et al., 2016) for question answering in text and knowledge bases (Das et al., 2017; Yang et al., 2017; Das et al., 2018). Our model can be viewed as a type of controller update step of memory network type of inference. Recently, iterative reasoning has shown to be effective in reading comprehension in single paragraph setting, where the model reads the same paragraph iteratively (Shen et al., 2017; Liu et al., 2017). Our work can be seen as a strict generalization of these in a more realistic, open-domain setting.
142
+
143
+ Nearest Neighbor Search - Computing fast nearest neighbor (NN) search is a fundamental requirement in many applications. We used exact k-NN search using SGTree (Zaheer et al., 2019) which has been shown to perform better than other exact k-NN strategies such as Cover Tree (Beygelzimer et al., 2006), P-DCI (Li & Malik, 2017) and other approximate NN search techniques such as RP-Tree (Dasgupta & Sinha, 2013), HNSW (Malkov & Yashunin, 2018). In general, our proposed multi-step-reasoner framework is not coupled to any particular kind of $\mathbf { k }$ -NN technique.
144
+
145
+ Table 2: Performance on test sets for various datasets
146
+
147
+ <table><tr><td rowspan="2">Model</td><td colspan="2">Quasar-T</td><td colspan="2">SearchQA</td><td colspan="2">TRIVIAQA-unfiltered</td><td colspan="2">SQUAD-open</td></tr><tr><td>EM</td><td>F1</td><td>EM</td><td>F1</td><td>EM</td><td>F1</td><td>EM</td><td>F1</td></tr><tr><td>GA (Dhingra et al., 2016)</td><td>26.4</td><td>26.4</td><td>-</td><td>-</td><td>-</td><td></td><td>=</td><td>-</td></tr><tr><td>BIDAF (Seo et al., 2017)</td><td>25.9</td><td>28.5</td><td>28.6</td><td>34.6</td><td></td><td></td><td></td><td></td></tr><tr><td>AQA (Buck et al.,2018)</td><td>-</td><td>-</td><td>40.5</td><td>47.4</td><td>=</td><td></td><td></td><td>1</td></tr><tr><td>R (Wang et al.,2018a)</td><td>35.3</td><td>41.7</td><td>49.0</td><td>55.3</td><td>47.3</td><td>53.7</td><td>29.1</td><td>37.5</td></tr><tr><td>DS-QA*(Lin et al., 2018)</td><td>37.27</td><td>43.63</td><td>58.5</td><td>64.5</td><td>48.7</td><td>56.3</td><td>28.7</td><td>36.6</td></tr><tr><td>MINIMAL (Min etal.,2018)</td><td>=</td><td>-</td><td>=</td><td>=</td><td>-</td><td>-</td><td>34.7</td><td>42.5</td></tr><tr><td>Dr.QA baseline</td><td>36.87</td><td>45.49</td><td>51.36</td><td>58.24</td><td>48.00</td><td>52.13</td><td>27.1</td><td>-</td></tr><tr><td>multi-step-reasoner (Dr.QA)</td><td>39.53</td><td>46.67</td><td>55.01</td><td>61.61</td><td>55.93</td><td>61.66</td><td>31.93</td><td>39.22</td></tr><tr><td>multi-step-reasoner (BiDAF)</td><td>40.63</td><td>46.97</td><td>56.26</td><td>61.36</td><td>55.91</td><td>61.65</td><td></td><td>-</td></tr><tr><td>DocumentQA**(Clark &amp; Gardner,2018)</td><td>-</td><td>-</td><td>-</td><td>=</td><td>61.56</td><td>68.03</td><td>=</td><td>1</td></tr></table>
148
+
149
+ ∗ Despite our best efforts, we could not reproduce the results of Ds-QA using their code and hyperparameter settings for Quasar-T. ∗∗ The results on the test set of TRIVIAQA-unfiltered were not reported in the original paper. Results obtained from authors via e-mail.
150
+
151
+ <table><tr><td>Model</td><td>P@1</td><td>P@3</td><td>P@5</td></tr><tr><td>R³ (Wang et al., 2018a)</td><td>40.3</td><td>51.3</td><td>54.5</td></tr><tr><td>Our Retriever (initial)</td><td>35.7</td><td>49.6</td><td>56.3</td></tr><tr><td>+ multi-step (7 steps)</td><td>42.9</td><td>55.5</td><td>59.3</td></tr></table>
152
+
153
+ Table 3: Retrieval performance on QUASAR-T. The match-LSTM based retriever of $\mathbb { R } ^ { 3 }$ is a more powerful model than our intial retrieval model. However, after few steps of multi-step-reasoner, the performance increases suggesting that re-ranking via query-reformulation is retrieving relevant evidence from the corpus. We report the $\mathrm { P @ } k$ on the last step.
154
+
155
+ ![](images/20da1449de003db223341121ee8d3b9b0b0267522e165d0e62478a9cbc668189.jpg)
156
+ Figure 2: Scalability of retriever.
157
+
158
+ # 5 EXPERIMENTS
159
+
160
+ We now present experiments to show the effectiveness of each component of our framework. We experiment on the following large open-domain QA datasets — (a) TRIVIAQA-unfiltered– a version of TRIVIAQA (Joshi et al., 2017) built for open-domain QA. It has much more number of paragraphs than the web/wiki setting of TRIVIAQA. Moreover, there is no guarantee that every document in the evidence will contain the answer making this setting more challenging. (b) TRIVIAQA-open– To test our framework for large scale setting, we combine all evidence for every question in the development set. This resulted in a corpus containing 1.68M paragraphs per question. (c)
161
+
162
+ <table><tr><td>Datasets</td><td>#q(test)</td><td>#p/q(test)</td></tr><tr><td>SEARCHQA</td><td>27,247</td><td>49.6</td></tr><tr><td>QUASAR-T</td><td>3.000</td><td>99.8</td></tr><tr><td>SQUAD-open</td><td>10,570</td><td>115.6</td></tr><tr><td>TRIVIAQA-unfiltered</td><td>10,790</td><td>149</td></tr><tr><td>TRIVIAQA-open</td><td>11,274</td><td>1,684,193</td></tr></table>
163
+
164
+ Table 1: Statistics of various dataset. The second column shows the number of paragraphs for each query.
165
+
166
+ SEARCHQA (Dunn et al., 2017) – is another open-domain dataset which consists of question-answer pairs crawled from the J! archive. The paragraphs are obtained from 50 web snippets retrieved using the Google search API. (d) QUASAR-T (Dhingra et al., 2017) – consists of 43K open-domain questions where the paragraphs are obtained from the ClueWeb data source. (e) SQUAD-open– We also experimented on the open domain version of the SQUAD dataset. For fair comparison to baselines, our evidence corpus was created by retrieving the top-5 wikipedia documents as returned by the pipeline of Chen et al. (2017). The datasets are summarized in table 1.
167
+
168
+ # 5.1 PERFORMANCE OF PARAGRAPH RETRIEVER
169
+
170
+ We first investigate the performance of our paragraph retriever model $( \ S 2 . 1 )$ . Our retriever is based on inner product between the query and pre-computed paragraph vectors. This architecture, although more scalable, is less powerful than the retrievers of $\mathbb { R } ^ { 3 }$ and DS-QA which compute query-dependent passage representation via soft alignment (attention) before encoding with a bi-LSTM. Results in table 3 indeed show that retriever of $\mathbb { R } ^ { 3 }$ has better $\mathbf { P } @ k$ than our retriever. We also measure the performance of our retriever after few steps (#steps $= 7$ ) of interaction between the retriever and reader. As we can see from table 3, the query reformulation has resulted in better re-ranking and hence an overall improved performance of the retriever.
171
+
172
+ To test for scalability in open-domain settings, we conduct a synthetic experiment. We plot the wall-clock time (in seconds) taken by the retriever to score and rank paragraphs with a query. To test for scalability, we increase the number of paragraphs ranging from 500 to 100 million and test on a single Titan-X GPU. For our baseline, we use the GPU implementation of the retriever of DS-QA (Lin et al., 2018). For our model, we test on three variants — (a) inner product on GPU, (b) inner-product on CPU and (c) inner-product using SG-Tree. Figure 2 shows the results. Our retriever model on GPU is faster than DS-QA, since the latter perform much more computation compared to just inner-product in our case. Moreover, DS-QA quickly uses up all the available memory and throws a memory error (OOM) by just 100K paragraphs. The inner product operation scales up to 1M paragraph before going OOM. SG-Tree shows very impressive performance even though it operates on CPU and consistently outperforms dot product operation on the CPU.
173
+
174
+ # 5.2 EFFECTIVENESS OF MULTI-STEP-REASONER
175
+
176
+ Next we investigate the improvements in QA performance due to multi-step-reasoner. We report the commonly used exact-match (EM) and F1 score on each dataset.
177
+
178
+ Performance on benchmark datasets. Table 2 compares the performance of our model with various competitive baselines on four open-domain QA datasets. One of the main observation is that combining multi-step-reasoner with the base Dr.QA reader (Chen et al., 2017) always leads to improved performance. We also perform competitively to most baselines across all datasets.
179
+
180
+ Figure 3 shows the relative improvements our models achieve on QUASAR-T, SEARCHQA and TRIVIAQA-unfiltered with varying number of steps of interaction between the retriever and the reader. The key takeaway of this experiment is that multiple steps of interaction uniformly increases performance over base model (with no interaction). Different datasets have varying level of difficulties, however, the performance reaches its peak around 5 to 7 steps and does not provide much benefit on further increasing the number of steps.
181
+
182
+ ![](images/2fa6baa6ba3590d2c2b4844ec161d26beda7b852b1e264151fcbd68b9dcbb19a.jpg)
183
+ Figure 3: F1 score w.r.t number of steps.
184
+
185
+ # Large scale experiment on TRIVIAQA-open. The benchmark datasets for open-domain QA have
186
+
187
+ on an average hundred paragraphs for each question (Table 1). In real open-domain settings, the size of the evidence corpus might be much bigger. To test our model for the same, we created the TRIVIAQA-open setting, in which for each query we combined all the paragraphs in the development set, resulting in 1.6M paragraphs per query. We want to emphasize that the baseline models such as $\mathbb { R } ^ { 3 }$ and DS-QA will not scale to this large setting. The baseline $\mathrm { D r Q A }$ . model with no interaction between the retriever and reader get a score of $\mathrm { E M } = 3 7 . 4 5$ and $\mathrm { F } 1 = 4 2 . 1 6$ . The same model with 3 steps of interaction achieves a score of $\mathrm { E M } = 3 9 . 7 6$ and $\mathbf { F } 1 = \mathbf { 4 4 . 3 0 }$ . The key takeaways from this experiment are — (a) our framework can scale to settings containing millions of paragraphs, (b) iterative interaction still increase performance even in large scale settings, (c) the overall performance has significantly decreased (from 61 to 44.3 F1), suggesting that large context in open-domain QA is very challenging and should be an active area of research with significant scope for improvement.
188
+
189
+ # 5.3 ANALYSIS OF RESULTS
190
+
191
+ This section does further analysis of the results of the model. Specifically we are interested in analyzing if our method is able to gather more relevant evidence as we increase the number of steps of interaction between the retriever and the reader. We conduct this analysis on the development set of SEARCHQA (containing 13,393 queries) and to simplify analysis, we make the retriever choose the top scored single paragraph to send to the reader, at each step. The results are noted in table 4. As we can see from row 1 of table 4, on increasing steps of interaction, the quality of retrieved paragraphs
192
+
193
+ ![](images/85cf4c84edc73749719a95a1cae7d89b0ec2a518947d78943f61a83ec19dda7e.jpg)
194
+ Figure 4: Examples of how multi-step-reasoner iteratively modifies the query by reading context to find more relevant paragraphs. Figure (left) shows an example where the initial retrieved context did not have the answer but the context provided enough hint to get more relevant paragraph in the next step. In figure (right), both the retrieved paragraph have the answer string leading to a boost in the score of the answer span because of score aggregation of spans (§2.2).
195
+
196
+ <table><tr><td></td><td colspan="3"># steps of interaction</td></tr><tr><td></td><td>3</td><td>5</td><td>7</td></tr><tr><td>#queries where initial retrieved para was incor- rect but correct para was retrieved later</td><td>1047</td><td>1199</td><td>1270</td></tr><tr><td>#queries where correct para wasn&#x27;t retrieved at all</td><td>3783</td><td>3594</td><td>3505</td></tr><tr><td># queries where initial answer was incorrect but recoveredlater</td><td>490</td><td>612</td><td>586</td></tr><tr><td>Avg. number of unique paragraphs read across all steps</td><td>1.99</td><td>2.38</td><td>3.65</td></tr></table>
197
+
198
+ Table 4: Analysis of results on the dev. set of SEARCHQA as we increase the number of steps of interaction between the retriever and reader. The retriever at each step sends top-1 paragraph to the reader. A paragraph is correct if it contains the correct answer string.
199
+
200
+ becomes better, i.e. even though the correct paragraph (containing the answer string) was not retrieved in the first step, the retriever is able to fetch relevant paragraphs later. It is also unsurprising to see, that when correct paragraphs are retrieved, the performance of the reader also increases. To check if the our policy was exploring and retrieving different paragraphs, we counted the mean number of unique paragraphs retrieved across all steps and found that it is high (around 2) when #steps of interaction is small as 3, suggesting that the policy chooses to explore initially. As the number of steps is increased, it increases at slower rate suggesting that if the policy has already found good paragraphs for the reader, it chooses to exploit them rather than choosing to explore.
201
+
202
+ Figure 4 shows two instances where iterative interaction is helpful. In figure to the left, the retriever is initially unable to find a paragraph that directly answers the question, however it finds a paragraph which gives a different name for the disease allowing it to find a more relevant paragraph that directly answers the query. In the figure to the right, after the query reformulation, both the retrieved paragraphs have the correct answer string. Since we aggregate (sum) the scores of spans, this leads to an increase in the score of the right answer span (Demeter) to be the maximum.
203
+
204
+ # 6 CONCLUSION
205
+
206
+ This paper introduces a new framework for open-domain question answering in which the retriever and the reader iteratively interact with each other. The resulting framework improved performance of machine reading over the base reader model uniformly across four open-domain QA datasets. We also show that our fast retrieval method can scale upto millions of paragraphs, much beyond the current capability of existing open-domain systems with a trained retriever module. Finally, we show that our method is agnostic to the architecture of the machine reading system provided we have access to the token level hidden representations of the reader. Our method brings an increase in performance to two popular and widely used neural machine reading architectures, Dr.QA and BiDAF.
207
+
208
+ # ACKNOWLEDGEMENTS
209
+
210
+ This work is funded in part by the Center for Data Science and the Center for Intelligent Information Retrieval, and in part by the National Science Foundation under Grant No. IIS-1514053 and in part by the International Business Machines Corporation Cognitive Horizons Network agreement number W1668553 and in part by the Chan Zuckerberg Initiative under the project Scientific Knowledge Base Construction. Any opinions, findings and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect those of the sponsor.
211
+
212
+ # REFERENCES
213
+
214
+ Yoram Bachrach, Yehuda Finkelstein, Ran Gilad-Bachrach, Liran Katzir, Noam Koenigstein, Nir Nice, and Ulrich Paquet. Speeding up the xbox recommender system using a euclidean transformation for inner-product spaces. In RecSys, 2014.
215
+
216
+ Alina Beygelzimer, Sham Kakade, and John Langford. Cover trees for nearest neighbor. In ICML, 2006.
217
+
218
+ Penny A Bishop, Cynthia Reyes, and Susanna W Pflaum. Read smarter, not harder: Global reading comprehension strategies. The Reading Teacher, 2006.
219
+
220
+ Christian Buck, Jannis Bulian, Massimiliano Ciaramita, Andrea Gesmundo, Neil Houlsby, Wojciech Gajewski, and Wei Wang. Ask the right questions: Active question reformulation with reinforcement learning. In ICLR, 2018.
221
+
222
+ Kris Cao, Angeliki Lazaridou, Marc Lanctot, Joel Z Leibo, Karl Tuyls, and Stephen Clark. Emergent communication through negotiation. arXiv preprint arXiv:1804.03980, 2018.
223
+
224
+ Danqi Chen, Adam Fisch, Jason Weston, and Antoine Bordes. Reading wikipedia to answer opendomain questions. In ACL, 2017.
225
+
226
+ Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger ¨ Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for statistical machine translation. arXiv preprint arXiv:1406.1078, 2014.
227
+
228
+ Christopher Clark and Matt Gardner. Simple and effective multi-paragraph reading comprehension. In ACL, 2018.
229
+
230
+ Dick Cunningham and Scott L Shablak. Selective reading guide-o-rama: The content teacher’s best friend. Journal of Reading, 1975.
231
+
232
+ Rajarshi Das, Manzil Zaheer, Siva Reddy, and Andrew McCallum. Question answering on knowledge bases and text using universal schema and memory networks. In ACL, 2017.
233
+
234
+ Rajarshi Das, Shehzaad Dhuliawala, Manzil Zaheer, Luke Vilnis, Ishan Durugkar, Akshay Krishnamurthy, Alex Smola, and Andrew McCallum. Go for a walk and arrive at the answer: Reasoning over paths in knowledge bases using reinforcement learning. In ICLR, 2018.
235
+
236
+ Sanjoy Dasgupta and Kaushik Sinha. Randomized partition trees for exact nearest neighbor search. In COLT, 2013.
237
+
238
+ Bhuwan Dhingra, Hanxiao Liu, Zhilin Yang, William W Cohen, and Ruslan Salakhutdinov. Gatedattention readers for text comprehension. arXiv preprint arXiv:1606.01549, 2016.
239
+
240
+ Bhuwan Dhingra, Kathryn Mazaitis, and William W Cohen. Quasar: Datasets for question answering by search and reading. arXiv preprint arXiv:1707.03904, 2017.
241
+
242
+ Geoffrey B Duggan and Stephen J Payne. Text skimming: The process and effectiveness of foraging through text under time pressure. Journal of Experimental Psychology: Applied, 2009.
243
+
244
+ Matthew Dunn, Levent Sagun, Mike Higgins, V Ugur Guney, Volkan Cirik, and Kyunghyun Cho. Searchqa: A new q&a dataset augmented with context from a search engine. arXiv preprint arXiv:1704.05179, 2017.
245
+
246
+ Bert F Green Jr, Alice K Wolf, Carol Chomsky, and Kenneth Laughery. Baseball: an automatic question-answerer. In IRE-AIEE-ACM, 1961.
247
+
248
+ Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 1997.
249
+
250
+ Phu Mon Htut, Samuel R Bowman, and Kyunghyun Cho. Training a ranking function for open-domain question answering. arXiv preprint arXiv:1804.04264, 2018.
251
+
252
+ Mandar Joshi, Eunsol Choi, Daniel S Weld, and Luke Zettlemoyer. Triviaqa: A large scale distantly supervised challenge dataset for reading comprehension. In ACL, 2017.
253
+
254
+ Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014.
255
+
256
+ Victor Lavrenko and W Bruce Croft. Relevance-based language models. In SIGIR, 2001.
257
+
258
+ Angeliki Lazaridou, Alexander Peysakhovich, and Marco Baroni. Multi-agent cooperation and the emergence of (natural) language. In ICLR, 2017.
259
+
260
+ Jason Lee, Kyunghyun Cho, Jason Weston, and Douwe Kiela. Emergent translation in multi-agent communication. In ICLR, 2018.
261
+
262
+ Ke Li and Jitendra Malik. Fast k-nearest neighbour search via prioritized dci. In ICML, 2017.
263
+
264
+ Yankai Lin, Haozhe Ji, Zhiyuan Liu, and Maosong Sun. Denoising distantly supervised open-domain question answering. In ACL, 2018.
265
+
266
+ Xiaodong Liu, Yelong Shen, Kevin Duh, and Jianfeng Gao. Stochastic answer networks for machine reading comprehension. arXiv preprint arXiv:1712.03556, 2017.
267
+
268
+ Yury A Malkov and Dmitry A Yashunin. Efficient and robust approximate nearest neighbor search using hierarchical navigable small world graphs. TPAMI, 2018.
269
+
270
+ Alexander Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason Weston. Key-value memory networks for directly reading documents. arXiv preprint arXiv:1606.03126, 2016.
271
+
272
+ Sewon Min, Victor Zhong, Richard Socher, and Caiming Xiong. Efficient and robust question answering from minimal context over documents. arXiv preprint arXiv:1805.08092, 2018.
273
+
274
+ Mike Mintz, Steven Bills, Rion Snow, and Dan Jurafsky. Distant supervision for relation extraction without labeled data. In ACL, 2009.
275
+
276
+ Rodrigo Nogueira and Kyunghyun Cho. Task-oriented query reformulation with reinforcement learning. In EMNLP, 2017.
277
+
278
+ Jonas Pfeiffer, Samuel Broscheit, Rainer Gemulla, and Mathias Goschl. A neural autoencoder ¨ approach for document ranking and query refinement in pharmacogenomic information retrieval. In BioNLP workshop, ACL, 2018.
279
+
280
+ Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad: $^ { 1 0 0 , 0 0 0 + }$ questions for machine comprehension of text. In EMNLP, 2016.
281
+
282
+ Steffen Rendle, Christoph Freudenthaler, Zeno Gantner, and Lars Schmidt-Thieme. Bpr: Bayesian personalized ranking from implicit feedback. In UAI, 2009.
283
+
284
+ Minjoon Seo, Aniruddha Kembhavi, Ali Farhadi, and Hannaneh Hajishirzi. Bidirectional attention flow for machine comprehension. In ICLR, 2017.
285
+
286
+ Yelong Shen, Po-Sen Huang, Jianfeng Gao, and Weizhu Chen. Reasonet: Learning to stop reading in machine comprehension. In KDD, 2017.
287
+
288
+ Sainbayar Sukhbaatar, Jason Weston, Rob Fergus, et al. End-to-end memory networks. In NIPS, 2015.
289
+
290
+ Swabha Swayamdipta, Ankur P Parikh, and Tom Kwiatkowski. Multi-mention learning for reading comprehension with neural cascades. In ICLR, 2018.
291
+
292
+ Adam Trischler, Tong Wang, Xingdi Yuan, Justin Harris, Alessandro Sordoni, Philip Bachman, and Kaheer Suleman. Newsqa: A machine comprehension dataset. arXiv preprint arXiv:1611.09830, 2016.
293
+
294
+ Ellen M Voorhees, others, et al. The trec-8 question answering track report. In Trec, 1999.
295
+
296
+ Shuohang Wang and Jing Jiang. Machine comprehension using match-lstm and answer pointer. In ICLR, 2017.
297
+
298
+ Shuohang Wang, Mo Yu, Xiaoxiao Guo, Zhiguo Wang, Tim Klinger, Wei Zhang, Shiyu Chang, Gerald Tesauro, Bowen Zhou, and Jing Jiang. R3: Reinforced ranker-reader for open-domain question answering. In AAAI, 2018a.
299
+
300
+ Shuohang Wang, Mo Yu, Jing Jiang, Wei Zhang, Xiaoxiao Guo, Shiyu Chang, Zhiguo Wang, Tim Klinger, Gerald Tesauro, and Murray Campbell. Evidence aggregation for answer re-ranking in open-domain question answering. In ICLR, 2018b.
301
+
302
+ Wei Wang, Ming Yan, and Chen Wu. Multi-granularity hierarchical attention fusion networks for reading comprehension and question answering. In ACL, 2018c.
303
+
304
+ Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 1992.
305
+
306
+ Caiming Xiong, Victor Zhong, and Richard Socher. Dynamic coattention networks for question answering. In ICLR, 2017.
307
+
308
+ Jinxi Xu and W Bruce Croft. Quary expansion using local and global document analysis. In SIGIR, 1996.
309
+
310
+ Fan Yang, Zhilin Yang, and William W Cohen. Differentiable learning of logical rules for knowledge base reasoning. In NeurIPS, 2017.
311
+
312
+ Adams Wei Yu, David Dohan, Minh-Thang Luong, Rui Zhao, Kai Chen, Mohammad Norouzi, and Quoc V Le. Qanet: Combining local convolution with global self-attention for reading comprehension. In ICLR, 2018.
313
+
314
+ Manzil Zaheer, Guru Guruganesh, Golan Levin, and Alex Smola. Terrapattern: A nearest neighbor search service. In Arxiv, 2019.
parse/train/HkfPSh05K7/HkfPSh05K7_content_list.json ADDED
@@ -0,0 +1,1675 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "MULTI-STEP RETRIEVER-READER INTERACTION FOR SCALABLE OPEN-DOMAIN QUESTION ANSWERING ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 176,
8
+ 98,
9
+ 821,
10
+ 147
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Rajarshi Das1, Shehzaad Dhuliawala2, Manzil Zaheer3 & Andrew McCallum1 ",
17
+ "bbox": [
18
+ 183,
19
+ 171,
20
+ 725,
21
+ 188
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "{rajarshi,mccallum}@cs.umass.edu \nshehzaad.dhuliawala@microsoft.com, manzil@zaheer.ml \n1 University of Massachusetts, Amherst, 2 Microsoft Research, Montreal ´ \n3 Google AI, Mountain View ",
28
+ "bbox": [
29
+ 184,
30
+ 189,
31
+ 658,
32
+ 244
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "ABSTRACT ",
39
+ "text_level": 1,
40
+ "bbox": [
41
+ 454,
42
+ 282,
43
+ 544,
44
+ 297
45
+ ],
46
+ "page_idx": 0
47
+ },
48
+ {
49
+ "type": "text",
50
+ "text": "This paper introduces a new framework for open-domain question answering in which the retriever and the reader iteratively interact with each other. The framework is agnostic to the architecture of the machine reading model, only requiring access to the token-level hidden representations of the reader. The retriever uses fast nearest neighbor search to scale to corpora containing millions of paragraphs. A gated recurrent unit updates the query at each step conditioned on the state of the reader and the reformulated query is used to re-rank the paragraphs by the retriever. We conduct analysis and show that iterative interaction helps in retrieving informative paragraphs from the corpus. Finally, we show that our multistep-reasoning framework brings consistent improvement when applied to two widely used reader architectures (DR.QA and BIDAF) on various large open-domain datasets — TRIVIAQA-unfiltered, QUASAR-T, SEARCHQA, and SQUAD-open1. ",
51
+ "bbox": [
52
+ 233,
53
+ 313,
54
+ 766,
55
+ 479
56
+ ],
57
+ "page_idx": 0
58
+ },
59
+ {
60
+ "type": "text",
61
+ "text": "1 INTRODUCTION ",
62
+ "text_level": 1,
63
+ "bbox": [
64
+ 176,
65
+ 506,
66
+ 334,
67
+ 522
68
+ ],
69
+ "page_idx": 0
70
+ },
71
+ {
72
+ "type": "text",
73
+ "text": "Open-domain question answering (QA) (Voorhees et al., 1999) involves a retriever for selecting relevant context from a large corpora of text (e.g. Wikipedia) and a machine reading comprehension (MRC) model for ‘reasoning’ on the retrieved context. A lot of effort has been put into designing sophisticated neural MRC architectures for reading short context (e.g. a single paragraph), with much success (Wang & Jiang, 2017; Seo et al., 2017; Xiong et al., 2017; Wang et al., 2018c; Yu et al., 2018, inter alia). However, the performance of such systems degrades significantly when combined with a retriever in open domain settings. For example, the exact match accuracy of $\\mathrm { D r Q A }$ (Chen et al., 2017), on the SQUAD dataset (Rajpurkar et al., 2016) degrades from $6 9 . 5 \\%$ to $2 8 . 4 \\%$ in open-domain settings. The primary reason for this degradation in performance is due to the retriever’s failure to find the relevant paragraphs for the machine reading model (Htut et al., 2018). ",
74
+ "bbox": [
75
+ 174,
76
+ 537,
77
+ 825,
78
+ 678
79
+ ],
80
+ "page_idx": 0
81
+ },
82
+ {
83
+ "type": "text",
84
+ "text": "We propose the following two desiderata for a general purpose open-domain QA system - (a) The retriever model should be fast, since it has to find the relevant context from a very large text corpora and give it to the more sophisticated and computationally expensive MRC model (b) Secondly, the retriever and reader models should be interactive, i.e. if the reader model is unable to find the answer from the initial retrieved context, the retriever should be able to learn to provide more relevant context to the reader. Open-domain QA systems such as $\\mathbb { R } ^ { 3 }$ (Wang et al., 2018a) and DS-QA (Lin et al., 2018) have sophisticated retriever models where the reader and retriever are jointly trained. However, their retriever computes question-dependent paragraph representation which is then encoded by running an expensive recurrent neural network over the tokens in the paragraph. Since the retriever has to rank a lot of paragraphs, this design does not scale to large corporas. One the other hand, the retriever model of QA systems such as DrQA (Chen et al., 2017) is based on a tf-idf retriever, but they lack trainable parameters and are consequently unable to recover from mistakes. ",
85
+ "bbox": [
86
+ 174,
87
+ 684,
88
+ 825,
89
+ 851
90
+ ],
91
+ "page_idx": 0
92
+ },
93
+ {
94
+ "type": "text",
95
+ "text": "This paper introduces an open domain architecture in which the retriever and reader iteratively interact with each other. Our model first pre-computes and caches representation of context (paragraph). These representations are independent of the query unlike recent architectures (Wang et al., 2018a; ",
96
+ "bbox": [
97
+ 176,
98
+ 858,
99
+ 825,
100
+ 900
101
+ ],
102
+ "page_idx": 0
103
+ },
104
+ {
105
+ "type": "image",
106
+ "img_path": "images/82d26f0dd95fab7f7d701a2a5b76857bd179a094a0d0730be65ce3c615dfc9d7.jpg",
107
+ "image_caption": [
108
+ "Figure 1: Our framework unrolled for two steps. The initial query is encoded and the retriever sends the top- $k$ paragraphs to the reader. The multi-step-reasoner component of our model takes in the internal state of the reader model and the previous query vector and does a gated update to produce a reformulated query. This new query vector is used by the retriever to re-rank the paragraphs and send different paragraphs to the reader. Thus the multi-step-reasoner facilitates iterative interaction between the retriever (search engine) and the reader (QA model) "
109
+ ],
110
+ "image_footnote": [],
111
+ "bbox": [
112
+ 209,
113
+ 65,
114
+ 772,
115
+ 402
116
+ ],
117
+ "page_idx": 1
118
+ },
119
+ {
120
+ "type": "text",
121
+ "text": "Lin et al., 2018) and hence can be computed and stored offline. Given an input question, the retriever performs fast inner product search to find the most relevant contexts. The highest ranked contexts are then passed to the neural MRC model. Our architecture is agnostic to the choice of the reader architecture and we show that multi-step-reasoning increases performance of two state-of-the-art MRC architectures - DrQA (Chen et al., 2017) and BiDAF (Seo et al., 2017). ",
122
+ "bbox": [
123
+ 174,
124
+ 540,
125
+ 825,
126
+ 611
127
+ ],
128
+ "page_idx": 1
129
+ },
130
+ {
131
+ "type": "text",
132
+ "text": "It is possible that the answer might not exist in the initial retrieved paragraphs or that the model would need to combine information across multiple paragraphs (Wang et al., 2018b). We equip the reader with an additional gated recurrent unit (Cho et al., 2014) which takes in the state of the reader and the current query vector and generates a new query vector. This new query vector is then used by the retriever model to re-rank the context. This allows the model to read new paragraphs and combine evidence across multiple paragraphs. Since the retriever makes a ‘hard selection’ of paragraphs to send to the reader, we train the retriever and the reader jointly using reinforcement learning. ",
133
+ "bbox": [
134
+ 174,
135
+ 617,
136
+ 825,
137
+ 715
138
+ ],
139
+ "page_idx": 1
140
+ },
141
+ {
142
+ "type": "text",
143
+ "text": "Our architecture draws inspiration from how students are instructed to take reading comprehension tests (Cunningham & Shablak, 1975; Bishop et al., 2006; Duggan & Payne, 2009). Given a document containing multiple paragraphs and a set of questions which can be answered from the document, (a) the student quickly skims the paragraphs, (b) then for each question, she finds the most relevant paragraphs that she thinks will answer the question. (c) She then carefully reads the chosen paragraph to answer the question (d) However, if the chosen paragraph does not answer the question, then given the question and the knowledge of what she has read till now, she decides which paragraph to read next. Step (a) is akin to our model encoding and storing the question independent paragraph representations and step (b) corresponds to the inner product search to find the relevant context. The reading of the context by the sophisticated neural machine reader corresponds to step (c) and the last step corresponds to the iterative (multi-step) interaction between the retriever and the reader. ",
144
+ "bbox": [
145
+ 174,
146
+ 722,
147
+ 825,
148
+ 875
149
+ ],
150
+ "page_idx": 1
151
+ },
152
+ {
153
+ "type": "text",
154
+ "text": "To summarize, this paper makes the following contributions: (a) We introduce a new framework for open-domain QA in which the retriever and reader iteratively interact with each other via a novel multistep-reasoning component allowing it to retrieve and combine information from multiple paragraphs. ",
155
+ "bbox": [
156
+ 176,
157
+ 882,
158
+ 825,
159
+ 924
160
+ ],
161
+ "page_idx": 1
162
+ },
163
+ {
164
+ "type": "text",
165
+ "text": "(b) Our paragraph representations are independent of the query which makes our architecture highly scalable and we empirically demonstrate it by running large scale experiments over millions of paragraphs. (c) Lastly, our framework is agnostic to the architecture of the reader and we show improvements on two widely used neural reading comprehension models. ",
166
+ "bbox": [
167
+ 174,
168
+ 103,
169
+ 825,
170
+ 160
171
+ ],
172
+ "page_idx": 2
173
+ },
174
+ {
175
+ "type": "text",
176
+ "text": "2 BASIC COMPONENTS OF OUR MODEL",
177
+ "text_level": 1,
178
+ "bbox": [
179
+ 174,
180
+ 179,
181
+ 517,
182
+ 195
183
+ ],
184
+ "page_idx": 2
185
+ },
186
+ {
187
+ "type": "text",
188
+ "text": "The architecture of our model consists of three main components - (a) paragraph retriever - that computes a relevance score for each paragraph w.r.t a given query and ranks them according to the computed score. (b) reader - a more sophisticated neural machine reading model that receives few top-ranked paragraphs from the retriever and outputs a span of text as a possible answer to the query and (c) multi-step-reasoner - a gated recurrent unit that facilitates iterative interaction between the retriever and the reader. ",
189
+ "bbox": [
190
+ 174,
191
+ 210,
192
+ 825,
193
+ 295
194
+ ],
195
+ "page_idx": 2
196
+ },
197
+ {
198
+ "type": "text",
199
+ "text": "Formally, the input to our model is a natural language question $\\mathrm { Q } = \\mathrm { q } _ { 1 }$ , q2,. . . , ${ \\bf q } _ { n }$ consisting of $n$ tokens and a set of paragraphs $\\mathsf { P } = \\{ \\mathsf { p } _ { 1 } , \\mathsf { p } _ { 2 } , . . . \\mathsf { p } _ { K } \\}$ . Our model extracts a span of text $a$ as the answer to the question from the paragraphs in P. Note that the set of paragraphs in P can be the paragraphs in a set of documents retrieved by a search engine or it could be all the paragraphs in a large text corpus such as Wikipedia. Next we describe each individual component of our model. ",
200
+ "bbox": [
201
+ 174,
202
+ 301,
203
+ 825,
204
+ 371
205
+ ],
206
+ "page_idx": 2
207
+ },
208
+ {
209
+ "type": "text",
210
+ "text": "2.1 PARAGRAPH RETRIEVER ",
211
+ "text_level": 1,
212
+ "bbox": [
213
+ 174,
214
+ 387,
215
+ 385,
216
+ 402
217
+ ],
218
+ "page_idx": 2
219
+ },
220
+ {
221
+ "type": "text",
222
+ "text": "The paragraph retriever computes a score for how likely a paragraph is to contain an answer to a given question. The paragraph representations are computed independent of the query and once computed, they are not updated. This allows us to cache the representations and store them offline. The relevance score of a paragraph is computed as a inner product between the paragraph and the query vectors. The paragraph and query representations are computed as follows. ",
223
+ "bbox": [
224
+ 174,
225
+ 414,
226
+ 825,
227
+ 483
228
+ ],
229
+ "page_idx": 2
230
+ },
231
+ {
232
+ "type": "text",
233
+ "text": "Given a paragraph $\\mathfrak { p } = \\{ \\mathfrak { p } _ { 1 } , \\mathfrak { p } _ { 2 } , \\dots , \\mathfrak { p } _ { m } \\}$ consisting of $m$ tokens, a multi-layer recurrent neural network encodes each tokens in the paragraph — $\\left\\{ \\mathbf { p } _ { 1 } , \\mathbf { p } _ { 2 } , \\ldots , \\mathbf { p } _ { m } \\right\\} = \\mathbf { R N N } \\left( \\left\\{ \\mathbf { p } _ { 1 } , \\mathbf { p } _ { 2 } , \\ldots , \\mathbf { p } _ { m } \\right\\} \\right)$ , where $\\mathbf { p } _ { j } \\in \\mathbb { R } ^ { 2 d }$ encodes useful contextual information around the $j$ -th token. Specifically we choose to use a multilayer bidirectional long-short term memory network (LSTM) (Hochreiter & Schmidhuber, 1997) and take $\\mathbf { p } _ { j }$ as the hidden units in the last layer of the RNN. We concatenate the representation computed by the forward and the backward LSTM. To compute a single paragraph vector $ { \\mathbf { p } } \\in \\mathbb { R } ^ { 2 d }$ from all the token representations, we combine them using weights $b _ { j } \\in \\mathbb { R }$ ",
234
+ "bbox": [
235
+ 174,
236
+ 489,
237
+ 826,
238
+ 593
239
+ ],
240
+ "page_idx": 2
241
+ },
242
+ {
243
+ "type": "equation",
244
+ "img_path": "images/eed814d6ebddd1d91fbd45074ec383f8dbecd56462a711a7e365e46520df1cdd.jpg",
245
+ "text": "$$\nb _ { j } = \\frac { \\exp ( \\mathbf { w } \\cdot \\mathbf { p _ { j } } ) } { \\sum _ { j ^ { \\prime } } \\exp ( \\mathbf { w } \\cdot \\mathbf { p } _ { j ^ { \\prime } } ) } \\qquad \\mathbf { p } = W _ { s } \\sum _ { j ^ { \\prime } } b _ { j ^ { \\prime } } \\cdot \\mathbf { p _ { j ^ { \\prime } } }\n$$",
246
+ "text_format": "latex",
247
+ "bbox": [
248
+ 308,
249
+ 598,
250
+ 691,
251
+ 637
252
+ ],
253
+ "page_idx": 2
254
+ },
255
+ {
256
+ "type": "text",
257
+ "text": "Here $b _ { j }$ encodes the importance of each token and $\\mathbf { w } \\in \\mathbb { R } ^ { 2 d } , \\mathbf { W _ { s } } \\in \\mathbb { R } ^ { 2 d \\times 2 d }$ are learned weights. The query ${ \\dot { \\mathbf { q } } } = \\left\\{ { \\mathfrak { q } } _ { 1 } , { \\mathfrak { q } } _ { 2 } , \\dots , { \\mathfrak { q } } _ { n } \\right\\}$ is encoded by another network with the same architecture to obtain a query vector $\\mathbf { q } \\in \\mathbb { R } ^ { 2 d }$ . Next the relevance score of a paragraph w.r.t the query (score $( \\mathbf { p } , \\mathbf { q } ) \\in \\mathbb { R } )$ is computed by a simple inner product — score $( { \\bf p } , { \\bf q } ) = \\langle { \\bf p } , { \\bf q } \\rangle$ . The paragraph retriever then returns the top scoring $k$ paragraphs to the reader. ",
258
+ "bbox": [
259
+ 174,
260
+ 642,
261
+ 825,
262
+ 715
263
+ ],
264
+ "page_idx": 2
265
+ },
266
+ {
267
+ "type": "text",
268
+ "text": "Fast inner product search. Inner product can be efficiently computed on a GPU, however in our experiments with large corpus with over million paragraphs, (a) the paragraph vectors require more memory than available in a single commodity GPU (b) it is computationally wasteful to compute inner products with all paragraph vectors and we can do better by leveraging fast nearest neighbor (NN) search algorithms. Since the retriever has to find the $k$ paragraphs with the highest inner products w.r.t query, our problem essentially reduces to maximum inner product search (MIPS). There exists data structures for fast NN search in metric spaces such as Cover Trees (Beygelzimer et al., 2006). But we cannot use them directly, since triangle equality does not hold in inner product space. Borrowing ideas from Bachrach et al. (2014); Zaheer et al. (2019), we propose to use nearest neighbor (NN) search algorithms to perform the MIPS in sublinear time as follows. ",
269
+ "bbox": [
270
+ 174,
271
+ 722,
272
+ 825,
273
+ 861
274
+ ],
275
+ "page_idx": 2
276
+ },
277
+ {
278
+ "type": "text",
279
+ "text": "Let u be an upper bound for the L2 norm for all paragraphs, i.e. $\\mathbf { u } \\geq \\| \\mathbf { p } \\|$ , $\\forall \\mathbf { p }$ . Next, we modify the original paragraph and query vectors such that searching for the $\\mathbf { k }$ -nearest neighbor w.r.t L2 distance with the modified vectors is equivalent to finding the $k$ nearest (original) paragraph vectors in the inner-product space. ",
280
+ "bbox": [
281
+ 174,
282
+ 867,
283
+ 823,
284
+ 924
285
+ ],
286
+ "page_idx": 2
287
+ },
288
+ {
289
+ "type": "text",
290
+ "text": "Define the augmented paragraph vectors as $\\tilde { \\mathbf { p } } \\mathbf { i } = [ \\mathbf { p } \\mathbf { i } ; \\sqrt { \\mathbf { u } ^ { 2 } - \\| \\mathbf { p } \\mathbf { i } \\| ^ { 2 } } ]$ and augmented query vector as $\\widetilde { \\mathbf { q } } = [ \\mathbf { q } ; 0 ]$ , where $[ ; ]$ denotes concatenation. Note, with this transformation, $\\langle \\tilde { { \\bf p } } _ { \\bf i } , \\tilde { { \\bf q } } \\rangle = \\langle { \\bf p _ { i } } , { \\bf q } \\rangle$ . Now, ",
291
+ "bbox": [
292
+ 169,
293
+ 102,
294
+ 823,
295
+ 133
296
+ ],
297
+ "page_idx": 3
298
+ },
299
+ {
300
+ "type": "equation",
301
+ "img_path": "images/f30d7b271a8eec71f1981d79800c127fa779a46f2adf9b0b3a3ec85f6da97ae5.jpg",
302
+ "text": "$$\n\\begin{array} { r l } & { \\mathrm { N N } ( \\tilde { \\bf p _ { i } } , \\tilde { \\bf q } ) = \\underset { i } { \\arg \\operatorname* { m i n } } \\left\\| \\tilde { \\bf p _ { i } } - \\tilde { \\bf q } \\right\\| ^ { 2 } } \\\\ & { \\quad \\quad \\quad \\quad = \\underset { i } { \\arg \\operatorname* { m i n } } \\left\\| \\tilde { \\bf p _ { i } } \\right\\| ^ { 2 } + \\left\\| \\tilde { \\bf q } \\right\\| ^ { 2 } - 2 \\langle \\tilde { \\bf p _ { i } } , \\tilde { \\bf q } \\rangle } \\\\ & { \\quad \\quad \\quad \\quad = \\underset { i } { \\arg \\operatorname* { m i n } } ( { \\bf u } ^ { 2 } - 2 \\langle \\tilde { \\bf p _ { i } } , \\tilde { \\bf q } \\rangle ) } \\\\ & { \\quad \\quad \\quad \\quad = \\underset { i } { \\arg \\operatorname* { m a x } } \\langle \\tilde { \\bf p _ { i } } , \\tilde { \\bf q } \\rangle = \\underset { i } { \\arg \\operatorname* { m a x } } \\langle { \\bf p _ { i } } , { \\bf q } \\rangle = \\mathrm { M I P S } ( { \\bf p _ { i } } , { \\bf q } ) } \\end{array}\n$$",
303
+ "text_format": "latex",
304
+ "bbox": [
305
+ 300,
306
+ 155,
307
+ 696,
308
+ 270
309
+ ],
310
+ "page_idx": 3
311
+ },
312
+ {
313
+ "type": "text",
314
+ "text": "Many exact NN search algorithms can find $\\mathbf { k }$ -NN in time (sublinear) logarithmic in number of paragraphs (Beygelzimer et al., 2006; Zaheer et al., 2019), after an one-time preprocessing. In our architecture, the preprocessing can be done because the set of all paragraphs is fixed for all the queries. We chose to use SGTree (Zaheer et al., 2019) to perform the NN/MIPS due to its fast construction time and competitive performance reducing the search to logarithmic time per query. ",
315
+ "bbox": [
316
+ 173,
317
+ 281,
318
+ 826,
319
+ 352
320
+ ],
321
+ "page_idx": 3
322
+ },
323
+ {
324
+ "type": "text",
325
+ "text": "Note that our paragraph representations are independent of the given query and are never updated once they are trained. After training is completed, we cache the $ { \\mathbf { p } } \\in { \\mathbb { R } } ^ { 2 d }$ vectors. This is unlike many recent work in open-domain QA. For example, in $\\mathbb { R } ^ { 3 }$ (Wang et al., 2018a), the retriever uses Match-LSTM model (Wang & Jiang, 2017) to compute question-matching representations for each token in the passage. The paragraph representations are then obtained by running a bi-directional RNN over these matched representation. Although powerful, this architecture design will not scale in open-domain settings where the retriever has to re-compute new representations for possibly millions of paragraphs for every new question. In contrast, once training is over, we cache the paragraph representation and use it for every query at test time. ",
326
+ "bbox": [
327
+ 174,
328
+ 358,
329
+ 825,
330
+ 484
331
+ ],
332
+ "page_idx": 3
333
+ },
334
+ {
335
+ "type": "text",
336
+ "text": "Training - Following previous work (Htut et al., 2018; Lin et al., 2018; Wang et al., 2018a), we gather labels for paragraphs during training using distant supervision (Mintz et al., 2009). A paragraph that contains the exact ground truth answer string is labeled as an positive example. For a positive (negative) labeled paragraph, we maximize (minimize) the $\\log ( \\sigma ( \\mathrm { s c o r e } ( \\mathbf { p } , \\mathbf { q } ) ) )$ . The number of layers of the bi-directional LSTM encoder is set to three and we use Adam (Kingma & Ba, 2014) for optimization. Once training is done, we pre-compute and cache the paragraph representation of each dataset in our experiments. ",
337
+ "bbox": [
338
+ 174,
339
+ 491,
340
+ 825,
341
+ 588
342
+ ],
343
+ "page_idx": 3
344
+ },
345
+ {
346
+ "type": "text",
347
+ "text": "2.2 MACHINE READER ",
348
+ "text_level": 1,
349
+ "bbox": [
350
+ 176,
351
+ 604,
352
+ 346,
353
+ 619
354
+ ],
355
+ "page_idx": 3
356
+ },
357
+ {
358
+ "type": "text",
359
+ "text": "The reader is a sophisticated neural machine reading comprehension (MRC) model that takes in the top few paragraphs sent by the retriever and outputs a span of answer text. Our model is agnostic to the exact architecture of the reader and we perform experiments to show the efficacy of our model on two state-of-the-art neural machine reading models - DrQA and BiDAF. ",
360
+ "bbox": [
361
+ 174,
362
+ 631,
363
+ 825,
364
+ 686
365
+ ],
366
+ "page_idx": 3
367
+ },
368
+ {
369
+ "type": "text",
370
+ "text": "MRC models designed for SQUAD (Rajpurkar et al., 2016), NewsQA (Trischler et al., 2016), etc operate on a single paragraph. However it has been shown that reading and aggregating evidence across multiple paragraphs is important when doing QA over larger evidence set (e.g. full Wikipedia document) (Swayamdipta et al., 2018; Clark & Gardner, 2018) and in open domain settings (Wang et al., 2018b). Most MRC models compute a start and end scores for each token in the paragraph that represents how likely a token is the start/end of an answer span. To gather evidence across multiple paragraphs sent by the retriever, we normalize the start/end scores across the paragraphs. Furthermore a text span can appear multiple times in a paragraph. To give importance to all answer spans in the text, our objective aggregates (sums) the log-probability of the score for each answer position. Let $\\mathcal { T } ( w , p )$ denote the token start positions where the answer span appears in the paragraph $p$ and let $w _ { S }$ be the starting word of the answer span. Our model maximizes the sum of the following objective for the start and end word of an answer spans as follows. (For brevity, we only show the objective for the starting word $( \\mathbf { w } _ { s } )$ of the span.) ",
371
+ "bbox": [
372
+ 173,
373
+ 694,
374
+ 825,
375
+ 875
376
+ ],
377
+ "page_idx": 3
378
+ },
379
+ {
380
+ "type": "equation",
381
+ "img_path": "images/d49f9118a52d1d6c516c174e72da469ff6f200a653ddd975c7fbbf8cb8373463.jpg",
382
+ "text": "$$\n\\log \\left( \\frac { \\sum _ { j \\in \\mathcal { P } } \\sum _ { k \\in \\mathcal { Z } ( w _ { s } , p _ { j } ) } \\exp ( \\operatorname { s c o r e } _ { \\mathrm { s t a r t } } ( k , j ) ) } { \\sum _ { j \\in \\mathcal { P } } \\sum _ { i = 1 } ^ { n _ { j } } \\exp ( \\operatorname { s c o r e } _ { \\mathrm { s t a r t } } ( i , j ) ) } \\right)\n$$",
383
+ "text_format": "latex",
384
+ "bbox": [
385
+ 351,
386
+ 880,
387
+ 643,
388
+ 921
389
+ ],
390
+ "page_idx": 3
391
+ },
392
+ {
393
+ "type": "text",
394
+ "text": "Here, $\\mathcal { P }$ denotes the set of all top-ranked paragraphs by the retriever, $n _ { j }$ denotes the number of tokens in paragraph $j$ and $\\mathrm { s c o r e } _ { \\mathrm { s t a r t } } \\left( k , j \\right)$ denotes the start score of the $k$ -th token in the $j$ -th paragraph. ",
395
+ "bbox": [
396
+ 171,
397
+ 103,
398
+ 823,
399
+ 132
400
+ ],
401
+ "page_idx": 4
402
+ },
403
+ {
404
+ "type": "text",
405
+ "text": "Score aggregation during inference. During inference, following Chen et al. (2017); Seo et al. (2017), the score of a span that starts at token position $i$ and ends at position $j$ of paragraph $p$ is given by the sum of the $\\mathrm { \\ s c o r e } _ { \\mathrm { s t a r t } } ( i , p )$ and $\\operatorname { s c o r e } _ { \\mathrm { e n d } } ( j , p )$ . During inference, we score spans up to a pre-defined maximum length of 15. Further, we add the scores of spans across different paragraphs (even if they are retrieved at different steps), if they have the same surface form. That is, if the same span (e.g. “Barack Obama”) occurs multiple times in several paragraphs, we sum the individual span scores. However, to ensure tractability, we only consider the top 10 scoring spans in each paragraph for aggregation. It should be noted that the changes we made to aggregate evidence over multiple paragraphs and mentions of spans needs no change to the original MRC architecture. ",
406
+ "bbox": [
407
+ 173,
408
+ 138,
409
+ 825,
410
+ 265
411
+ ],
412
+ "page_idx": 4
413
+ },
414
+ {
415
+ "type": "text",
416
+ "text": "3 MULTI-STEP-REASONER ",
417
+ "text_level": 1,
418
+ "bbox": [
419
+ 176,
420
+ 284,
421
+ 413,
422
+ 300
423
+ ],
424
+ "page_idx": 4
425
+ },
426
+ {
427
+ "type": "text",
428
+ "text": "A novel component of our open-domain architecture is the multi-step-reasoner which facilitates iterative interaction between the retriever and the machine reader. The multi-step-reasoner a module comprised of a gated recurrent unit (Cho et al., 2014) which takes in the current state of the reader and the current query vector and does a gated update to produce a reformulated query. The reformulated query is sent back to the retriever which uses it to re-rank the paragraphs in the corpus. Since the gated update of the multi-step-reasoner, conditions on the current state of the machine reader, this multi-step interaction provides a way for the search engine (retriever) and the QA model (reader) to communicate with each other. This can also be seen as an instance of two agents cooperating via communication to solve a task (Lazaridou et al., 2017; Lee et al., 2018; Cao et al., 2018). ",
429
+ "bbox": [
430
+ 174,
431
+ 314,
432
+ 825,
433
+ 440
434
+ ],
435
+ "page_idx": 4
436
+ },
437
+ {
438
+ "type": "text",
439
+ "text": "More formally, let $\\mathbf { q } _ { \\mathbf { t } } \\in \\mathbb { R } ^ { 2 d }$ be the current query representation which was most recently used by the paragraph retriever to score the paragraphs in the corpus. The multi-step-reasoner also has access to the reader state which is computed from the hidden memory vectors of the reader. The reader state captures the current information that the reader has encoded after reading the paragraphs that was sent by the retriever. Next we show how the reader state is computed. ",
440
+ "bbox": [
441
+ 174,
442
+ 446,
443
+ 825,
444
+ 517
445
+ ],
446
+ "page_idx": 4
447
+ },
448
+ {
449
+ "type": "text",
450
+ "text": "Span extractive machine reading architectures compute a hidden representation for each token in the paragraph. Our framework needs access to these hidden representations to compute the reader state. ",
451
+ "bbox": [
452
+ 174,
453
+ 523,
454
+ 823,
455
+ 553
456
+ ],
457
+ "page_idx": 4
458
+ },
459
+ {
460
+ "type": "text",
461
+ "text": "Let $\\mathbf { m _ { j } } \\in \\mathbb { R } ^ { 2 p }$ be the hidden vector associated with the $j { \\cdot }$ -th token in the paragraph. Let $\\mathbf { L } \\in \\mathbb { R } ^ { 2 p }$ be the final query representation of the reader model. $\\mathbf { L }$ is usually created by some pooling operation on the hidden representation of each question token. The reader state $\\mathbf { S } \\in \\mathbb { R } ^ { \\sum p }$ is computed from each of the hidden vectors $\\mathbf { m } _ { \\mathrm { j } }$ and $\\mathbf { L }$ by first computing soft-attention weights between each paragraph token, followed by combining each $\\mathbf { m _ { j } }$ with the soft attention weights. ",
462
+ "bbox": [
463
+ 174,
464
+ 559,
465
+ 825,
466
+ 630
467
+ ],
468
+ "page_idx": 4
469
+ },
470
+ {
471
+ "type": "equation",
472
+ "img_path": "images/676dd6a1a3737d451fb60fe1fe894d0b83bdb0c2d1d8597821e82edcb683ba3c.jpg",
473
+ "text": "$$\n\\alpha _ { \\mathbf { j } } = \\frac { \\exp \\left( \\mathbf { m _ { j } } \\cdot \\mathbf { L } \\right) } { \\sum _ { j ^ { \\prime } } \\exp \\left( \\mathbf { m _ { j } ^ { \\prime } } \\cdot \\mathbf { L } \\right) } \\qquad \\mathbf { S } = \\sum _ { j } \\left( \\alpha _ { \\mathbf { j } } \\cdot \\mathbf { m _ { j } } \\right)\n$$",
474
+ "text_format": "latex",
475
+ "bbox": [
476
+ 307,
477
+ 635,
478
+ 692,
479
+ 681
480
+ ],
481
+ "page_idx": 4
482
+ },
483
+ {
484
+ "type": "text",
485
+ "text": "Finally, the new reformulated query $\\mathbf { q } _ { \\mathbf { t } + \\mathbf { 1 } } \\in \\mathbb { R } ^ { 2 d }$ for the paragraph retriever is calculated by the multi-step-reasoner module as follows — ",
486
+ "bbox": [
487
+ 171,
488
+ 694,
489
+ 823,
490
+ 723
491
+ ],
492
+ "page_idx": 4
493
+ },
494
+ {
495
+ "type": "equation",
496
+ "img_path": "images/cdd0f5a03614ede7947a0ccae926c4b6a25b897d29a82e2db82eca88322b5b30.jpg",
497
+ "text": "$$\n\\begin{array} { r } { \\mathbf { q } _ { \\mathbf { t } + 1 } ^ { ' } = \\mathbf { G } \\mathbf { R } \\mathbf { U } \\left( \\mathbf { q } _ { \\mathbf { t } } , \\mathbf { S } \\right) } \\\\ { \\mathbf { q } _ { \\mathbf { t } + 1 } = \\mathrm { F F N } \\left( \\mathbf { q } _ { \\mathbf { t } + 1 } ^ { ' } \\right) } \\end{array}\n$$",
498
+ "text_format": "latex",
499
+ "bbox": [
500
+ 431,
501
+ 727,
502
+ 565,
503
+ 773
504
+ ],
505
+ "page_idx": 4
506
+ },
507
+ {
508
+ "type": "text",
509
+ "text": "In our architecture, we used a 3 layer GRU network, followed by a one layer feed forward network (FFN) with a ReLU non-linearity. The gated update ensures that relevant information from ${ \\bf q _ { t } }$ is preserved and new and useful information from the reader state $\\mathbf { s }$ is added to the reformulated query. ",
510
+ "bbox": [
511
+ 174,
512
+ 782,
513
+ 825,
514
+ 825
515
+ ],
516
+ "page_idx": 4
517
+ },
518
+ {
519
+ "type": "text",
520
+ "text": "3.1 TRAINING ",
521
+ "text_level": 1,
522
+ "bbox": [
523
+ 174,
524
+ 842,
525
+ 287,
526
+ 856
527
+ ],
528
+ "page_idx": 4
529
+ },
530
+ {
531
+ "type": "text",
532
+ "text": "There exists no supervision for training the query reformulation of the multi-step-reasoner. Instead, we employ reinforcement learning (RL) and train it by how well the reader performs after reading the new set of paragraphs retrieved by the modified query. We define the problem as a deterministic finite horizon Partially Observed Markov decision process (POMDP). The components of POMDP are — ",
533
+ "bbox": [
534
+ 174,
535
+ 867,
536
+ 825,
537
+ 924
538
+ ],
539
+ "page_idx": 4
540
+ },
541
+ {
542
+ "type": "text",
543
+ "text": "States. A state in the state space consists of the entire text corpora, the query, the answer, and $k$ selected paragraphs. The reader is part of the environment and is fully described given the current state, i.e. selected paragraphs and the query. ",
544
+ "bbox": [
545
+ 174,
546
+ 103,
547
+ 823,
548
+ 146
549
+ ],
550
+ "page_idx": 5
551
+ },
552
+ {
553
+ "type": "text",
554
+ "text": "Observations. The agent only observes a function of the current state. In particular, to the agent only the query vector and the memory of the reader model is shown, which are a function of the current state. Intuitively, this represents the information encoded by the machine reader model after reading the top $k$ paragraphs sent by the retriever in current step. ",
555
+ "bbox": [
556
+ 174,
557
+ 146,
558
+ 825,
559
+ 200
560
+ ],
561
+ "page_idx": 5
562
+ },
563
+ {
564
+ "type": "text",
565
+ "text": "Actions. The set of all paragraphs in the text corpora forms the action space. The retriever scores all paragraphs w.r.t the current query and selects the top $k$ paragraphs to send to the reader model. We treat $k$ as a hyper-parameter in our experiments. ",
566
+ "bbox": [
567
+ 176,
568
+ 202,
569
+ 820,
570
+ 242
571
+ ],
572
+ "page_idx": 5
573
+ },
574
+ {
575
+ "type": "text",
576
+ "text": "Reward. At every step, the reward is measured by how well the answer extracted by the reader model matches to the ground-truth answer. We use the $\\mathrm { F } _ { 1 }$ score (calculated by word overlap between prediction and ground-truth) as the reward at each step. ",
577
+ "bbox": [
578
+ 176,
579
+ 242,
580
+ 821,
581
+ 284
582
+ ],
583
+ "page_idx": 5
584
+ },
585
+ {
586
+ "type": "text",
587
+ "text": "Transition. The environment evolves deterministically after reading the paragraphs sent by the retriever. ",
588
+ "bbox": [
589
+ 174,
590
+ 284,
591
+ 820,
592
+ 311
593
+ ],
594
+ "page_idx": 5
595
+ },
596
+ {
597
+ "type": "text",
598
+ "text": "Our policy $\\pi$ is parameterized by the GRU and the FFN of the multi-step-reasoner. Let $r _ { t }$ denote the reward $F _ { 1 }$ score) returned by the environment at time $t$ . We directly optimize the parameters to maximize the expected reward given by — $\\begin{array} { r } { J ( \\boldsymbol { \\Theta } ) = \\mathbb { E } _ { \\underline { { \\pi } } } \\left[ \\sum _ { t = 1 } ^ { T } r _ { t } \\right] } \\end{array}$ . Here $T$ denotes the number of steps of interactions between the retriever and the reader. We treat the reward at each step equally and do not apply any discounting. Motivated by the REINFORCE (Williams, 1992) algorithm, we compute the gradient of our objective as ",
599
+ "bbox": [
600
+ 174,
601
+ 318,
602
+ 825,
603
+ 402
604
+ ],
605
+ "page_idx": 5
606
+ },
607
+ {
608
+ "type": "equation",
609
+ "img_path": "images/56c50fd3f62ee2b42b508bfb7580fe23aacf5f30085fd65962bb46d0f2a5a56e.jpg",
610
+ "text": "$$\n\\nabla _ { \\boldsymbol { \\Theta } } J ( \\boldsymbol { \\Theta } ) = \\mathbb { E } _ { \\boldsymbol { \\pi } } \\left[ \\sum _ { t = 1 } ^ { T } \\boldsymbol { r } _ { t } \\cdot \\log ( \\pi _ { \\boldsymbol { \\Theta } } ( p _ { t } \\mid q ) ) \\right]\n$$",
611
+ "text_format": "latex",
612
+ "bbox": [
613
+ 374,
614
+ 402,
615
+ 622,
616
+ 465
617
+ ],
618
+ "page_idx": 5
619
+ },
620
+ {
621
+ "type": "text",
622
+ "text": "Here, $p _ { t }$ is the top-ranked paragraph returned by the retriever at time $t$ and the probability that the current policy assigns to $p _ { t }$ is computed by normalizing the scores with a softmax. It is usual practice to add a variance reduction baseline (e.g. average of rewards in the minibatch) for stable training, but we found this significantly degrades the final performance. We think this is because, in QA, a minibatch consists of questions of varying difficulty and hence the rewards in a batch itself have high variance. This is similar to findings by Shen et al. (2017) for closed domain-QA (e.g. SQUAD). ",
623
+ "bbox": [
624
+ 173,
625
+ 464,
626
+ 825,
627
+ 547
628
+ ],
629
+ "page_idx": 5
630
+ },
631
+ {
632
+ "type": "text",
633
+ "text": "Pretraining the multi-step-reasoner. We also find that pre-training the multi-step-reasoner before fine tuning with RL to be effective. We train to rank the similarity between the reformulated query vector and one of the distantly-supervised correct paragraph vectors higher than the score of a randomly sampled paragraph vector. Specifically, let q denote the query vector, $\\mathbf { p } ^ { * } , \\mathbf { p } ^ { \\prime }$ denote the paragraph representation of paragraphs containing the correct answer string and a random sampled paragraph respectively. We follow the Bayesian Personalized Ranking approach of Rendle et al. (2009) and maximize $\\log ( \\sigma ( \\mathbf { q } ^ { \\top } \\mathbf { p } ^ { * } - \\mathbf { q } ^ { \\top } \\mathbf { p } ^ { ' } ) )$ . The paragraph representations $\\mathbf { p } ^ { * } , \\mathbf { p } ^ { \\prime }$ are kept fixed and gradient only flows through $\\mathbf { q }$ to the parameters of the multi-step-reasoner. ",
634
+ "bbox": [
635
+ 173,
636
+ 554,
637
+ 825,
638
+ 671
639
+ ],
640
+ "page_idx": 5
641
+ },
642
+ {
643
+ "type": "text",
644
+ "text": "3.2 PUTTING IT ALL TOGETHER ",
645
+ "text_level": 1,
646
+ "bbox": [
647
+ 176,
648
+ 676,
649
+ 406,
650
+ 690
651
+ ],
652
+ "page_idx": 5
653
+ },
654
+ {
655
+ "type": "text",
656
+ "text": "Our open-domain architecture is summarized above in Algorithm 1. Given a large text corpora (as a list of paragraphs), the corresponding paragraph embeddings (which can be trained by the procedure in $( \\ S 2 . 1 ) )$ and hyper-parameters $( \\mathrm { T } , k )$ , our model $\\mathcal { M }$ returns a text span $a$ as answer. The multi-step interaction between the retriever and reader can be best understood by the for loop in line 2 of algorithm 1. The initial query ${ \\bf q 0 }$ is first used to rank all the paragraphs in the corpus (line 3), followed by which the top $k$ paragraphs are sent to the reader (line 4). The reader returns the answer span (with an associated score for the span) and also its internal state (line 5). The GRU network then takes in the current query and the reader state to produce the updated query which is then passed to the retriever (line 6). The retriever uses this updated query to again re-rank the paragraphs and the entire process is repeated for $\\mathrm { T }$ steps. At the end of $\\mathrm { T }$ steps, the model returns the span with the highest score returned by the reader model. The reader is trained using supervised learning (using the correct spans as supervision) and the parameters of the GRU network are trained using reinforcement learning. During training, we first pre-train the reader model by setting the number of multi-step reasoning steps $( \\mathrm { T } = 1 )$ ). After the training converges, we freeze the parameters of the reader model and train the parameters of the GRU network using policy gradients. The output of the reader model is used to generate the reward which is used to train the policy network. ",
657
+ "bbox": [
658
+ 173,
659
+ 702,
660
+ 825,
661
+ 924
662
+ ],
663
+ "page_idx": 5
664
+ },
665
+ {
666
+ "type": "table",
667
+ "img_path": "images/ba712ea5d9df26691019c393cce0fb33590b21ee5e7450b86e3a49bb485047be.jpg",
668
+ "table_caption": [],
669
+ "table_footnote": [],
670
+ "table_body": "<table><tr><td colspan=\"2\">Algorithm 1 Multi-step reasoning for open-domain QA</td></tr><tr><td colspan=\"2\">Input: Question text Qtext, Text corpus (as a list of paragraphs)T,Paragraph embeddings P (list of paragraph embeddings for each paragraph in T),Model M, Number of multi-steps T, number</td></tr><tr><td>of top-ranked paragraphs k Output: Answer span a</td><td></td></tr><tr><td>1: qo ← encode_query(Qtext) 2: for t in range(T) do</td><td>#(2.1)</td></tr><tr><td>3: {𝑝1,P2,...Pk} ←M.retriever.score_paras(qt,P,k) # 4:</td><td># each pi denotes a paragraph id # get text for the top paragraphs</td></tr><tr><td>5: at,St,St ← M.reader.read(Plexk,Qtext)</td><td># (§ 2.2); St denotes reader state</td></tr><tr><td></td><td># at denotes answer span</td></tr><tr><td>6:qt ← M.multi_step-reasoner.GRU(qt,St)</td><td># st denotes the score of the span</td></tr><tr><td></td><td># (§ 3); Query reformulation step</td></tr><tr><td>7: end for</td><td></td></tr><tr><td>8:return answer span a with highest score</td><td></td></tr></table>",
671
+ "bbox": [
672
+ 173,
673
+ 103,
674
+ 826,
675
+ 338
676
+ ],
677
+ "page_idx": 6
678
+ },
679
+ {
680
+ "type": "text",
681
+ "text": "4 RELATED WORK ",
682
+ "text_level": 1,
683
+ "bbox": [
684
+ 176,
685
+ 367,
686
+ 344,
687
+ 383
688
+ ],
689
+ "page_idx": 6
690
+ },
691
+ {
692
+ "type": "text",
693
+ "text": "Open domain QA is a well-established task that dates back to few decades of reasearch. For example the BASEBALL system (Green Jr et al., 1961) aimed at answering open domain question albeit for a specific domain. Open-domain QA has been popularized by the Trec-8 task (Voorhees et al., 1999) and has recently gained significant traction due to the introduction of various datasets (Dunn et al., 2017; Dhingra et al., 2017; Joshi et al., 2017). In many open-domain systems (Chen et al., 2017), the retriever is a simple IR based system (e.g. tfidf retriever) with no trainable parameters and hence the retriever cannot overcome from its mistakes. Recent work such as $\\mathbb { R } ^ { 3 }$ (Wang et al., 2018a), DS-QA (Lin et al., 2018) use a trained retriever and have shown improvement in performance. However they form query dependent paragraph representation and such architectures will not scale to full open-domain settings where the retriever has to rank millions of paragraphs. and neither do they support iterative reasoning thereby failing to recover from any mistakes made by the ranker or where evidence needs to be aggregated across multiple paragraphs. ",
694
+ "bbox": [
695
+ 173,
696
+ 401,
697
+ 825,
698
+ 569
699
+ ],
700
+ "page_idx": 6
701
+ },
702
+ {
703
+ "type": "text",
704
+ "text": "Query Reformulation by augmenting the original query with terms from the top- $k$ retrieved document (Xu & Croft, 1996; Lavrenko & Croft, 2001) has proven to be very effective in information retrieval. Instead of using such automatic relevance feedback, Nogueira & Cho (2017) train a query reformulation model to maximize the recall of a IR system using RL and Pfeiffer et al. (2018) showed that query refinement is effective for IR in bio-medical domain. The main difference between this work and ours is that our model directly optimizes to improve the performance of a question answering system. However, as we show, we still see an improvement in the recall of our retriever $( \\ S 5 . 1 )$ . Perhaps the most related to our work is Active Question Answering (AQA) (Buck et al., 2018), which use reformulation of the natural language query to improve the performance of a BiDAF reader model on SEARCHQA. The main difference between AQA is that we reformulate the query in vector space. We compare with AQA and show that our model achieves significantly better performance. ",
705
+ "bbox": [
706
+ 173,
707
+ 575,
708
+ 825,
709
+ 728
710
+ ],
711
+ "page_idx": 6
712
+ },
713
+ {
714
+ "type": "text",
715
+ "text": "Iterative Reasoning has shown significant improvements in models using memory networks (Sukhbaatar et al., 2015; Miller et al., 2016) for question answering in text and knowledge bases (Das et al., 2017; Yang et al., 2017; Das et al., 2018). Our model can be viewed as a type of controller update step of memory network type of inference. Recently, iterative reasoning has shown to be effective in reading comprehension in single paragraph setting, where the model reads the same paragraph iteratively (Shen et al., 2017; Liu et al., 2017). Our work can be seen as a strict generalization of these in a more realistic, open-domain setting. ",
716
+ "bbox": [
717
+ 174,
718
+ 736,
719
+ 825,
720
+ 833
721
+ ],
722
+ "page_idx": 6
723
+ },
724
+ {
725
+ "type": "text",
726
+ "text": "Nearest Neighbor Search - Computing fast nearest neighbor (NN) search is a fundamental requirement in many applications. We used exact k-NN search using SGTree (Zaheer et al., 2019) which has been shown to perform better than other exact k-NN strategies such as Cover Tree (Beygelzimer et al., 2006), P-DCI (Li & Malik, 2017) and other approximate NN search techniques such as RP-Tree (Dasgupta & Sinha, 2013), HNSW (Malkov & Yashunin, 2018). In general, our proposed multi-step-reasoner framework is not coupled to any particular kind of $\\mathbf { k }$ -NN technique. ",
727
+ "bbox": [
728
+ 174,
729
+ 840,
730
+ 825,
731
+ 924
732
+ ],
733
+ "page_idx": 6
734
+ },
735
+ {
736
+ "type": "table",
737
+ "img_path": "images/358849668e93779b7d062af6b951b012a3a4e47e7cc04b0cab49603821b035d1.jpg",
738
+ "table_caption": [
739
+ "Table 2: Performance on test sets for various datasets "
740
+ ],
741
+ "table_footnote": [
742
+ "∗ Despite our best efforts, we could not reproduce the results of Ds-QA using their code and hyperparameter settings for Quasar-T. ∗∗ The results on the test set of TRIVIAQA-unfiltered were not reported in the original paper. Results obtained from authors via e-mail. "
743
+ ],
744
+ "table_body": "<table><tr><td rowspan=\"2\">Model</td><td colspan=\"2\">Quasar-T</td><td colspan=\"2\">SearchQA</td><td colspan=\"2\">TRIVIAQA-unfiltered</td><td colspan=\"2\">SQUAD-open</td></tr><tr><td>EM</td><td>F1</td><td>EM</td><td>F1</td><td>EM</td><td>F1</td><td>EM</td><td>F1</td></tr><tr><td>GA (Dhingra et al., 2016)</td><td>26.4</td><td>26.4</td><td>-</td><td>-</td><td>-</td><td></td><td>=</td><td>-</td></tr><tr><td>BIDAF (Seo et al., 2017)</td><td>25.9</td><td>28.5</td><td>28.6</td><td>34.6</td><td></td><td></td><td></td><td></td></tr><tr><td>AQA (Buck et al.,2018)</td><td>-</td><td>-</td><td>40.5</td><td>47.4</td><td>=</td><td></td><td></td><td>1</td></tr><tr><td>R (Wang et al.,2018a)</td><td>35.3</td><td>41.7</td><td>49.0</td><td>55.3</td><td>47.3</td><td>53.7</td><td>29.1</td><td>37.5</td></tr><tr><td>DS-QA*(Lin et al., 2018)</td><td>37.27</td><td>43.63</td><td>58.5</td><td>64.5</td><td>48.7</td><td>56.3</td><td>28.7</td><td>36.6</td></tr><tr><td>MINIMAL (Min etal.,2018)</td><td>=</td><td>-</td><td>=</td><td>=</td><td>-</td><td>-</td><td>34.7</td><td>42.5</td></tr><tr><td>Dr.QA baseline</td><td>36.87</td><td>45.49</td><td>51.36</td><td>58.24</td><td>48.00</td><td>52.13</td><td>27.1</td><td>-</td></tr><tr><td>multi-step-reasoner (Dr.QA)</td><td>39.53</td><td>46.67</td><td>55.01</td><td>61.61</td><td>55.93</td><td>61.66</td><td>31.93</td><td>39.22</td></tr><tr><td>multi-step-reasoner (BiDAF)</td><td>40.63</td><td>46.97</td><td>56.26</td><td>61.36</td><td>55.91</td><td>61.65</td><td></td><td>-</td></tr><tr><td>DocumentQA**(Clark &amp; Gardner,2018)</td><td>-</td><td>-</td><td>-</td><td>=</td><td>61.56</td><td>68.03</td><td>=</td><td>1</td></tr></table>",
745
+ "bbox": [
746
+ 173,
747
+ 101,
748
+ 849,
749
+ 261
750
+ ],
751
+ "page_idx": 7
752
+ },
753
+ {
754
+ "type": "table",
755
+ "img_path": "images/97acfba38d17983b57d9a92482a06bb05304649168fbc3f43d83da6ce2fa5be8.jpg",
756
+ "table_caption": [],
757
+ "table_footnote": [],
758
+ "table_body": "<table><tr><td>Model</td><td>P@1</td><td>P@3</td><td>P@5</td></tr><tr><td>R³ (Wang et al., 2018a)</td><td>40.3</td><td>51.3</td><td>54.5</td></tr><tr><td>Our Retriever (initial)</td><td>35.7</td><td>49.6</td><td>56.3</td></tr><tr><td>+ multi-step (7 steps)</td><td>42.9</td><td>55.5</td><td>59.3</td></tr></table>",
759
+ "bbox": [
760
+ 176,
761
+ 320,
762
+ 511,
763
+ 393
764
+ ],
765
+ "page_idx": 7
766
+ },
767
+ {
768
+ "type": "text",
769
+ "text": "Table 3: Retrieval performance on QUASAR-T. The match-LSTM based retriever of $\\mathbb { R } ^ { 3 }$ is a more powerful model than our intial retrieval model. However, after few steps of multi-step-reasoner, the performance increases suggesting that re-ranking via query-reformulation is retrieving relevant evidence from the corpus. We report the $\\mathrm { P @ } k$ on the last step. ",
770
+ "bbox": [
771
+ 173,
772
+ 404,
773
+ 514,
774
+ 502
775
+ ],
776
+ "page_idx": 7
777
+ },
778
+ {
779
+ "type": "image",
780
+ "img_path": "images/20da1449de003db223341121ee8d3b9b0b0267522e165d0e62478a9cbc668189.jpg",
781
+ "image_caption": [
782
+ "Figure 2: Scalability of retriever. "
783
+ ],
784
+ "image_footnote": [],
785
+ "bbox": [
786
+ 555,
787
+ 333,
788
+ 807,
789
+ 477
790
+ ],
791
+ "page_idx": 7
792
+ },
793
+ {
794
+ "type": "text",
795
+ "text": "5 EXPERIMENTS ",
796
+ "text_level": 1,
797
+ "bbox": [
798
+ 176,
799
+ 516,
800
+ 326,
801
+ 531
802
+ ],
803
+ "page_idx": 7
804
+ },
805
+ {
806
+ "type": "text",
807
+ "text": "We now present experiments to show the effectiveness of each component of our framework. We experiment on the following large open-domain QA datasets — (a) TRIVIAQA-unfiltered– a version of TRIVIAQA (Joshi et al., 2017) built for open-domain QA. It has much more number of paragraphs than the web/wiki setting of TRIVIAQA. Moreover, there is no guarantee that every document in the evidence will contain the answer making this setting more challenging. (b) TRIVIAQA-open– To test our framework for large scale setting, we combine all evidence for every question in the development set. This resulted in a corpus containing 1.68M paragraphs per question. (c) ",
808
+ "bbox": [
809
+ 174,
810
+ 547,
811
+ 517,
812
+ 727
813
+ ],
814
+ "page_idx": 7
815
+ },
816
+ {
817
+ "type": "table",
818
+ "img_path": "images/466077e329890f85e3779525918b550a0f57c336aca44aa2d8d193bad8d1ba8d.jpg",
819
+ "table_caption": [],
820
+ "table_footnote": [
821
+ "Table 1: Statistics of various dataset. The second column shows the number of paragraphs for each query. "
822
+ ],
823
+ "table_body": "<table><tr><td>Datasets</td><td>#q(test)</td><td>#p/q(test)</td></tr><tr><td>SEARCHQA</td><td>27,247</td><td>49.6</td></tr><tr><td>QUASAR-T</td><td>3.000</td><td>99.8</td></tr><tr><td>SQUAD-open</td><td>10,570</td><td>115.6</td></tr><tr><td>TRIVIAQA-unfiltered</td><td>10,790</td><td>149</td></tr><tr><td>TRIVIAQA-open</td><td>11,274</td><td>1,684,193</td></tr></table>",
824
+ "bbox": [
825
+ 537,
826
+ 564,
827
+ 813,
828
+ 657
829
+ ],
830
+ "page_idx": 7
831
+ },
832
+ {
833
+ "type": "text",
834
+ "text": "SEARCHQA (Dunn et al., 2017) – is another open-domain dataset which consists of question-answer pairs crawled from the J! archive. The paragraphs are obtained from 50 web snippets retrieved using the Google search API. (d) QUASAR-T (Dhingra et al., 2017) – consists of 43K open-domain questions where the paragraphs are obtained from the ClueWeb data source. (e) SQUAD-open– We also experimented on the open domain version of the SQUAD dataset. For fair comparison to baselines, our evidence corpus was created by retrieving the top-5 wikipedia documents as returned by the pipeline of Chen et al. (2017). The datasets are summarized in table 1. ",
835
+ "bbox": [
836
+ 174,
837
+ 728,
838
+ 825,
839
+ 824
840
+ ],
841
+ "page_idx": 7
842
+ },
843
+ {
844
+ "type": "text",
845
+ "text": "5.1 PERFORMANCE OF PARAGRAPH RETRIEVER ",
846
+ "text_level": 1,
847
+ "bbox": [
848
+ 178,
849
+ 842,
850
+ 516,
851
+ 856
852
+ ],
853
+ "page_idx": 7
854
+ },
855
+ {
856
+ "type": "text",
857
+ "text": "We first investigate the performance of our paragraph retriever model $( \\ S 2 . 1 )$ . Our retriever is based on inner product between the query and pre-computed paragraph vectors. This architecture, although more scalable, is less powerful than the retrievers of $\\mathbb { R } ^ { 3 }$ and DS-QA which compute query-dependent passage representation via soft alignment (attention) before encoding with a bi-LSTM. Results in table 3 indeed show that retriever of $\\mathbb { R } ^ { 3 }$ has better $\\mathbf { P } @ k$ than our retriever. We also measure the performance of our retriever after few steps (#steps $= 7$ ) of interaction between the retriever and reader. As we can see from table 3, the query reformulation has resulted in better re-ranking and hence an overall improved performance of the retriever. ",
858
+ "bbox": [
859
+ 174,
860
+ 867,
861
+ 825,
862
+ 924
863
+ ],
864
+ "page_idx": 7
865
+ },
866
+ {
867
+ "type": "text",
868
+ "text": "",
869
+ "bbox": [
870
+ 174,
871
+ 102,
872
+ 823,
873
+ 159
874
+ ],
875
+ "page_idx": 8
876
+ },
877
+ {
878
+ "type": "text",
879
+ "text": "To test for scalability in open-domain settings, we conduct a synthetic experiment. We plot the wall-clock time (in seconds) taken by the retriever to score and rank paragraphs with a query. To test for scalability, we increase the number of paragraphs ranging from 500 to 100 million and test on a single Titan-X GPU. For our baseline, we use the GPU implementation of the retriever of DS-QA (Lin et al., 2018). For our model, we test on three variants — (a) inner product on GPU, (b) inner-product on CPU and (c) inner-product using SG-Tree. Figure 2 shows the results. Our retriever model on GPU is faster than DS-QA, since the latter perform much more computation compared to just inner-product in our case. Moreover, DS-QA quickly uses up all the available memory and throws a memory error (OOM) by just 100K paragraphs. The inner product operation scales up to 1M paragraph before going OOM. SG-Tree shows very impressive performance even though it operates on CPU and consistently outperforms dot product operation on the CPU. ",
880
+ "bbox": [
881
+ 174,
882
+ 166,
883
+ 825,
884
+ 319
885
+ ],
886
+ "page_idx": 8
887
+ },
888
+ {
889
+ "type": "text",
890
+ "text": "5.2 EFFECTIVENESS OF MULTI-STEP-REASONER ",
891
+ "text_level": 1,
892
+ "bbox": [
893
+ 174,
894
+ 338,
895
+ 517,
896
+ 352
897
+ ],
898
+ "page_idx": 8
899
+ },
900
+ {
901
+ "type": "text",
902
+ "text": "Next we investigate the improvements in QA performance due to multi-step-reasoner. We report the commonly used exact-match (EM) and F1 score on each dataset. ",
903
+ "bbox": [
904
+ 171,
905
+ 364,
906
+ 823,
907
+ 392
908
+ ],
909
+ "page_idx": 8
910
+ },
911
+ {
912
+ "type": "text",
913
+ "text": "Performance on benchmark datasets. Table 2 compares the performance of our model with various competitive baselines on four open-domain QA datasets. One of the main observation is that combining multi-step-reasoner with the base Dr.QA reader (Chen et al., 2017) always leads to improved performance. We also perform competitively to most baselines across all datasets. ",
914
+ "bbox": [
915
+ 173,
916
+ 400,
917
+ 825,
918
+ 455
919
+ ],
920
+ "page_idx": 8
921
+ },
922
+ {
923
+ "type": "text",
924
+ "text": "Figure 3 shows the relative improvements our models achieve on QUASAR-T, SEARCHQA and TRIVIAQA-unfiltered with varying number of steps of interaction between the retriever and the reader. The key takeaway of this experiment is that multiple steps of interaction uniformly increases performance over base model (with no interaction). Different datasets have varying level of difficulties, however, the performance reaches its peak around 5 to 7 steps and does not provide much benefit on further increasing the number of steps. ",
925
+ "bbox": [
926
+ 174,
927
+ 457,
928
+ 496,
929
+ 607
930
+ ],
931
+ "page_idx": 8
932
+ },
933
+ {
934
+ "type": "image",
935
+ "img_path": "images/2fa6baa6ba3590d2c2b4844ec161d26beda7b852b1e264151fcbd68b9dcbb19a.jpg",
936
+ "image_caption": [
937
+ "Figure 3: F1 score w.r.t number of steps. "
938
+ ],
939
+ "image_footnote": [],
940
+ "bbox": [
941
+ 531,
942
+ 463,
943
+ 802,
944
+ 617
945
+ ],
946
+ "page_idx": 8
947
+ },
948
+ {
949
+ "type": "text",
950
+ "text": "Large scale experiment on TRIVIAQA-open. The benchmark datasets for open-domain QA have ",
951
+ "text_level": 1,
952
+ "bbox": [
953
+ 173,
954
+ 614,
955
+ 500,
956
+ 642
957
+ ],
958
+ "page_idx": 8
959
+ },
960
+ {
961
+ "type": "text",
962
+ "text": "on an average hundred paragraphs for each question (Table 1). In real open-domain settings, the size of the evidence corpus might be much bigger. To test our model for the same, we created the TRIVIAQA-open setting, in which for each query we combined all the paragraphs in the development set, resulting in 1.6M paragraphs per query. We want to emphasize that the baseline models such as $\\mathbb { R } ^ { 3 }$ and DS-QA will not scale to this large setting. The baseline $\\mathrm { D r Q A }$ . model with no interaction between the retriever and reader get a score of $\\mathrm { E M } = 3 7 . 4 5$ and $\\mathrm { F } 1 = 4 2 . 1 6$ . The same model with 3 steps of interaction achieves a score of $\\mathrm { E M } = 3 9 . 7 6$ and $\\mathbf { F } 1 = \\mathbf { 4 4 . 3 0 }$ . The key takeaways from this experiment are — (a) our framework can scale to settings containing millions of paragraphs, (b) iterative interaction still increase performance even in large scale settings, (c) the overall performance has significantly decreased (from 61 to 44.3 F1), suggesting that large context in open-domain QA is very challenging and should be an active area of research with significant scope for improvement. ",
963
+ "bbox": [
964
+ 173,
965
+ 643,
966
+ 825,
967
+ 795
968
+ ],
969
+ "page_idx": 8
970
+ },
971
+ {
972
+ "type": "text",
973
+ "text": "5.3 ANALYSIS OF RESULTS ",
974
+ "text_level": 1,
975
+ "bbox": [
976
+ 176,
977
+ 814,
978
+ 375,
979
+ 827
980
+ ],
981
+ "page_idx": 8
982
+ },
983
+ {
984
+ "type": "text",
985
+ "text": "This section does further analysis of the results of the model. Specifically we are interested in analyzing if our method is able to gather more relevant evidence as we increase the number of steps of interaction between the retriever and the reader. We conduct this analysis on the development set of SEARCHQA (containing 13,393 queries) and to simplify analysis, we make the retriever choose the top scored single paragraph to send to the reader, at each step. The results are noted in table 4. As we can see from row 1 of table 4, on increasing steps of interaction, the quality of retrieved paragraphs ",
986
+ "bbox": [
987
+ 174,
988
+ 840,
989
+ 825,
990
+ 924
991
+ ],
992
+ "page_idx": 8
993
+ },
994
+ {
995
+ "type": "image",
996
+ "img_path": "images/85cf4c84edc73749719a95a1cae7d89b0ec2a518947d78943f61a83ec19dda7e.jpg",
997
+ "image_caption": [
998
+ "Figure 4: Examples of how multi-step-reasoner iteratively modifies the query by reading context to find more relevant paragraphs. Figure (left) shows an example where the initial retrieved context did not have the answer but the context provided enough hint to get more relevant paragraph in the next step. In figure (right), both the retrieved paragraph have the answer string leading to a boost in the score of the answer span because of score aggregation of spans (§2.2). "
999
+ ],
1000
+ "image_footnote": [],
1001
+ "bbox": [
1002
+ 186,
1003
+ 108,
1004
+ 799,
1005
+ 251
1006
+ ],
1007
+ "page_idx": 9
1008
+ },
1009
+ {
1010
+ "type": "table",
1011
+ "img_path": "images/3e413c701845d21a54c4824f8fdf375a2d9dae1cbf3e968c7ae8d43e502582ca.jpg",
1012
+ "table_caption": [],
1013
+ "table_footnote": [],
1014
+ "table_body": "<table><tr><td></td><td colspan=\"3\"># steps of interaction</td></tr><tr><td></td><td>3</td><td>5</td><td>7</td></tr><tr><td>#queries where initial retrieved para was incor- rect but correct para was retrieved later</td><td>1047</td><td>1199</td><td>1270</td></tr><tr><td>#queries where correct para wasn&#x27;t retrieved at all</td><td>3783</td><td>3594</td><td>3505</td></tr><tr><td># queries where initial answer was incorrect but recoveredlater</td><td>490</td><td>612</td><td>586</td></tr><tr><td>Avg. number of unique paragraphs read across all steps</td><td>1.99</td><td>2.38</td><td>3.65</td></tr></table>",
1015
+ "bbox": [
1016
+ 269,
1017
+ 351,
1018
+ 727,
1019
+ 500
1020
+ ],
1021
+ "page_idx": 9
1022
+ },
1023
+ {
1024
+ "type": "text",
1025
+ "text": "Table 4: Analysis of results on the dev. set of SEARCHQA as we increase the number of steps of interaction between the retriever and reader. The retriever at each step sends top-1 paragraph to the reader. A paragraph is correct if it contains the correct answer string. ",
1026
+ "bbox": [
1027
+ 174,
1028
+ 510,
1029
+ 823,
1030
+ 553
1031
+ ],
1032
+ "page_idx": 9
1033
+ },
1034
+ {
1035
+ "type": "text",
1036
+ "text": "becomes better, i.e. even though the correct paragraph (containing the answer string) was not retrieved in the first step, the retriever is able to fetch relevant paragraphs later. It is also unsurprising to see, that when correct paragraphs are retrieved, the performance of the reader also increases. To check if the our policy was exploring and retrieving different paragraphs, we counted the mean number of unique paragraphs retrieved across all steps and found that it is high (around 2) when #steps of interaction is small as 3, suggesting that the policy chooses to explore initially. As the number of steps is increased, it increases at slower rate suggesting that if the policy has already found good paragraphs for the reader, it chooses to exploit them rather than choosing to explore. ",
1037
+ "bbox": [
1038
+ 174,
1039
+ 564,
1040
+ 825,
1041
+ 676
1042
+ ],
1043
+ "page_idx": 9
1044
+ },
1045
+ {
1046
+ "type": "text",
1047
+ "text": "Figure 4 shows two instances where iterative interaction is helpful. In figure to the left, the retriever is initially unable to find a paragraph that directly answers the question, however it finds a paragraph which gives a different name for the disease allowing it to find a more relevant paragraph that directly answers the query. In the figure to the right, after the query reformulation, both the retrieved paragraphs have the correct answer string. Since we aggregate (sum) the scores of spans, this leads to an increase in the score of the right answer span (Demeter) to be the maximum. ",
1048
+ "bbox": [
1049
+ 174,
1050
+ 683,
1051
+ 825,
1052
+ 766
1053
+ ],
1054
+ "page_idx": 9
1055
+ },
1056
+ {
1057
+ "type": "text",
1058
+ "text": "6 CONCLUSION ",
1059
+ "text_level": 1,
1060
+ "bbox": [
1061
+ 174,
1062
+ 790,
1063
+ 318,
1064
+ 806
1065
+ ],
1066
+ "page_idx": 9
1067
+ },
1068
+ {
1069
+ "type": "text",
1070
+ "text": "This paper introduces a new framework for open-domain question answering in which the retriever and the reader iteratively interact with each other. The resulting framework improved performance of machine reading over the base reader model uniformly across four open-domain QA datasets. We also show that our fast retrieval method can scale upto millions of paragraphs, much beyond the current capability of existing open-domain systems with a trained retriever module. Finally, we show that our method is agnostic to the architecture of the machine reading system provided we have access to the token level hidden representations of the reader. Our method brings an increase in performance to two popular and widely used neural machine reading architectures, Dr.QA and BiDAF. ",
1071
+ "bbox": [
1072
+ 174,
1073
+ 811,
1074
+ 825,
1075
+ 924
1076
+ ],
1077
+ "page_idx": 9
1078
+ },
1079
+ {
1080
+ "type": "text",
1081
+ "text": "ACKNOWLEDGEMENTS ",
1082
+ "text_level": 1,
1083
+ "bbox": [
1084
+ 176,
1085
+ 103,
1086
+ 367,
1087
+ 117
1088
+ ],
1089
+ "page_idx": 10
1090
+ },
1091
+ {
1092
+ "type": "text",
1093
+ "text": "This work is funded in part by the Center for Data Science and the Center for Intelligent Information Retrieval, and in part by the National Science Foundation under Grant No. IIS-1514053 and in part by the International Business Machines Corporation Cognitive Horizons Network agreement number W1668553 and in part by the Chan Zuckerberg Initiative under the project Scientific Knowledge Base Construction. Any opinions, findings and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect those of the sponsor. ",
1094
+ "bbox": [
1095
+ 174,
1096
+ 133,
1097
+ 825,
1098
+ 217
1099
+ ],
1100
+ "page_idx": 10
1101
+ },
1102
+ {
1103
+ "type": "text",
1104
+ "text": "REFERENCES ",
1105
+ "text_level": 1,
1106
+ "bbox": [
1107
+ 174,
1108
+ 238,
1109
+ 285,
1110
+ 253
1111
+ ],
1112
+ "page_idx": 10
1113
+ },
1114
+ {
1115
+ "type": "text",
1116
+ "text": "Yoram Bachrach, Yehuda Finkelstein, Ran Gilad-Bachrach, Liran Katzir, Noam Koenigstein, Nir Nice, and Ulrich Paquet. Speeding up the xbox recommender system using a euclidean transformation for inner-product spaces. In RecSys, 2014. ",
1117
+ "bbox": [
1118
+ 174,
1119
+ 261,
1120
+ 826,
1121
+ 304
1122
+ ],
1123
+ "page_idx": 10
1124
+ },
1125
+ {
1126
+ "type": "text",
1127
+ "text": "Alina Beygelzimer, Sham Kakade, and John Langford. Cover trees for nearest neighbor. In ICML, 2006. ",
1128
+ "bbox": [
1129
+ 174,
1130
+ 313,
1131
+ 823,
1132
+ 340
1133
+ ],
1134
+ "page_idx": 10
1135
+ },
1136
+ {
1137
+ "type": "text",
1138
+ "text": "Penny A Bishop, Cynthia Reyes, and Susanna W Pflaum. Read smarter, not harder: Global reading comprehension strategies. The Reading Teacher, 2006. ",
1139
+ "bbox": [
1140
+ 173,
1141
+ 349,
1142
+ 823,
1143
+ 380
1144
+ ],
1145
+ "page_idx": 10
1146
+ },
1147
+ {
1148
+ "type": "text",
1149
+ "text": "Christian Buck, Jannis Bulian, Massimiliano Ciaramita, Andrea Gesmundo, Neil Houlsby, Wojciech Gajewski, and Wei Wang. Ask the right questions: Active question reformulation with reinforcement learning. In ICLR, 2018. ",
1150
+ "bbox": [
1151
+ 176,
1152
+ 387,
1153
+ 825,
1154
+ 430
1155
+ ],
1156
+ "page_idx": 10
1157
+ },
1158
+ {
1159
+ "type": "text",
1160
+ "text": "Kris Cao, Angeliki Lazaridou, Marc Lanctot, Joel Z Leibo, Karl Tuyls, and Stephen Clark. Emergent communication through negotiation. arXiv preprint arXiv:1804.03980, 2018. ",
1161
+ "bbox": [
1162
+ 171,
1163
+ 439,
1164
+ 823,
1165
+ 468
1166
+ ],
1167
+ "page_idx": 10
1168
+ },
1169
+ {
1170
+ "type": "text",
1171
+ "text": "Danqi Chen, Adam Fisch, Jason Weston, and Antoine Bordes. Reading wikipedia to answer opendomain questions. In ACL, 2017. ",
1172
+ "bbox": [
1173
+ 173,
1174
+ 477,
1175
+ 823,
1176
+ 506
1177
+ ],
1178
+ "page_idx": 10
1179
+ },
1180
+ {
1181
+ "type": "text",
1182
+ "text": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Dzmitry Bahdanau, Fethi Bougares, Holger ¨ Schwenk, and Yoshua Bengio. Learning phrase representations using rnn encoder-decoder for statistical machine translation. arXiv preprint arXiv:1406.1078, 2014. ",
1183
+ "bbox": [
1184
+ 176,
1185
+ 513,
1186
+ 823,
1187
+ 558
1188
+ ],
1189
+ "page_idx": 10
1190
+ },
1191
+ {
1192
+ "type": "text",
1193
+ "text": "Christopher Clark and Matt Gardner. Simple and effective multi-paragraph reading comprehension. In ACL, 2018. ",
1194
+ "bbox": [
1195
+ 173,
1196
+ 565,
1197
+ 825,
1198
+ 594
1199
+ ],
1200
+ "page_idx": 10
1201
+ },
1202
+ {
1203
+ "type": "text",
1204
+ "text": "Dick Cunningham and Scott L Shablak. Selective reading guide-o-rama: The content teacher’s best friend. Journal of Reading, 1975. ",
1205
+ "bbox": [
1206
+ 174,
1207
+ 603,
1208
+ 823,
1209
+ 632
1210
+ ],
1211
+ "page_idx": 10
1212
+ },
1213
+ {
1214
+ "type": "text",
1215
+ "text": "Rajarshi Das, Manzil Zaheer, Siva Reddy, and Andrew McCallum. Question answering on knowledge bases and text using universal schema and memory networks. In ACL, 2017. ",
1216
+ "bbox": [
1217
+ 173,
1218
+ 641,
1219
+ 823,
1220
+ 670
1221
+ ],
1222
+ "page_idx": 10
1223
+ },
1224
+ {
1225
+ "type": "text",
1226
+ "text": "Rajarshi Das, Shehzaad Dhuliawala, Manzil Zaheer, Luke Vilnis, Ishan Durugkar, Akshay Krishnamurthy, Alex Smola, and Andrew McCallum. Go for a walk and arrive at the answer: Reasoning over paths in knowledge bases using reinforcement learning. In ICLR, 2018. ",
1227
+ "bbox": [
1228
+ 178,
1229
+ 679,
1230
+ 821,
1231
+ 722
1232
+ ],
1233
+ "page_idx": 10
1234
+ },
1235
+ {
1236
+ "type": "text",
1237
+ "text": "Sanjoy Dasgupta and Kaushik Sinha. Randomized partition trees for exact nearest neighbor search. In COLT, 2013. ",
1238
+ "bbox": [
1239
+ 173,
1240
+ 731,
1241
+ 825,
1242
+ 758
1243
+ ],
1244
+ "page_idx": 10
1245
+ },
1246
+ {
1247
+ "type": "text",
1248
+ "text": "Bhuwan Dhingra, Hanxiao Liu, Zhilin Yang, William W Cohen, and Ruslan Salakhutdinov. Gatedattention readers for text comprehension. arXiv preprint arXiv:1606.01549, 2016. ",
1249
+ "bbox": [
1250
+ 173,
1251
+ 767,
1252
+ 823,
1253
+ 796
1254
+ ],
1255
+ "page_idx": 10
1256
+ },
1257
+ {
1258
+ "type": "text",
1259
+ "text": "Bhuwan Dhingra, Kathryn Mazaitis, and William W Cohen. Quasar: Datasets for question answering by search and reading. arXiv preprint arXiv:1707.03904, 2017. ",
1260
+ "bbox": [
1261
+ 173,
1262
+ 805,
1263
+ 823,
1264
+ 835
1265
+ ],
1266
+ "page_idx": 10
1267
+ },
1268
+ {
1269
+ "type": "text",
1270
+ "text": "Geoffrey B Duggan and Stephen J Payne. Text skimming: The process and effectiveness of foraging through text under time pressure. Journal of Experimental Psychology: Applied, 2009. ",
1271
+ "bbox": [
1272
+ 171,
1273
+ 843,
1274
+ 825,
1275
+ 872
1276
+ ],
1277
+ "page_idx": 10
1278
+ },
1279
+ {
1280
+ "type": "text",
1281
+ "text": "Matthew Dunn, Levent Sagun, Mike Higgins, V Ugur Guney, Volkan Cirik, and Kyunghyun Cho. Searchqa: A new q&a dataset augmented with context from a search engine. arXiv preprint arXiv:1704.05179, 2017. ",
1282
+ "bbox": [
1283
+ 174,
1284
+ 881,
1285
+ 823,
1286
+ 922
1287
+ ],
1288
+ "page_idx": 10
1289
+ },
1290
+ {
1291
+ "type": "text",
1292
+ "text": "Bert F Green Jr, Alice K Wolf, Carol Chomsky, and Kenneth Laughery. Baseball: an automatic question-answerer. In IRE-AIEE-ACM, 1961. ",
1293
+ "bbox": [
1294
+ 171,
1295
+ 103,
1296
+ 825,
1297
+ 132
1298
+ ],
1299
+ "page_idx": 11
1300
+ },
1301
+ {
1302
+ "type": "text",
1303
+ "text": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 1997. ",
1304
+ "bbox": [
1305
+ 174,
1306
+ 140,
1307
+ 808,
1308
+ 157
1309
+ ],
1310
+ "page_idx": 11
1311
+ },
1312
+ {
1313
+ "type": "text",
1314
+ "text": "Phu Mon Htut, Samuel R Bowman, and Kyunghyun Cho. Training a ranking function for open-domain question answering. arXiv preprint arXiv:1804.04264, 2018. ",
1315
+ "bbox": [
1316
+ 173,
1317
+ 165,
1318
+ 823,
1319
+ 195
1320
+ ],
1321
+ "page_idx": 11
1322
+ },
1323
+ {
1324
+ "type": "text",
1325
+ "text": "Mandar Joshi, Eunsol Choi, Daniel S Weld, and Luke Zettlemoyer. Triviaqa: A large scale distantly supervised challenge dataset for reading comprehension. In ACL, 2017. ",
1326
+ "bbox": [
1327
+ 173,
1328
+ 204,
1329
+ 823,
1330
+ 234
1331
+ ],
1332
+ "page_idx": 11
1333
+ },
1334
+ {
1335
+ "type": "text",
1336
+ "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ",
1337
+ "bbox": [
1338
+ 174,
1339
+ 242,
1340
+ 825,
1341
+ 272
1342
+ ],
1343
+ "page_idx": 11
1344
+ },
1345
+ {
1346
+ "type": "text",
1347
+ "text": "Victor Lavrenko and W Bruce Croft. Relevance-based language models. In SIGIR, 2001. ",
1348
+ "bbox": [
1349
+ 171,
1350
+ 281,
1351
+ 759,
1352
+ 297
1353
+ ],
1354
+ "page_idx": 11
1355
+ },
1356
+ {
1357
+ "type": "text",
1358
+ "text": "Angeliki Lazaridou, Alexander Peysakhovich, and Marco Baroni. Multi-agent cooperation and the emergence of (natural) language. In ICLR, 2017. ",
1359
+ "bbox": [
1360
+ 171,
1361
+ 305,
1362
+ 823,
1363
+ 335
1364
+ ],
1365
+ "page_idx": 11
1366
+ },
1367
+ {
1368
+ "type": "text",
1369
+ "text": "Jason Lee, Kyunghyun Cho, Jason Weston, and Douwe Kiela. Emergent translation in multi-agent communication. In ICLR, 2018. ",
1370
+ "bbox": [
1371
+ 174,
1372
+ 343,
1373
+ 825,
1374
+ 373
1375
+ ],
1376
+ "page_idx": 11
1377
+ },
1378
+ {
1379
+ "type": "text",
1380
+ "text": "Ke Li and Jitendra Malik. Fast k-nearest neighbour search via prioritized dci. In ICML, 2017. ",
1381
+ "bbox": [
1382
+ 174,
1383
+ 382,
1384
+ 789,
1385
+ 398
1386
+ ],
1387
+ "page_idx": 11
1388
+ },
1389
+ {
1390
+ "type": "text",
1391
+ "text": "Yankai Lin, Haozhe Ji, Zhiyuan Liu, and Maosong Sun. Denoising distantly supervised open-domain question answering. In ACL, 2018. ",
1392
+ "bbox": [
1393
+ 174,
1394
+ 406,
1395
+ 820,
1396
+ 436
1397
+ ],
1398
+ "page_idx": 11
1399
+ },
1400
+ {
1401
+ "type": "text",
1402
+ "text": "Xiaodong Liu, Yelong Shen, Kevin Duh, and Jianfeng Gao. Stochastic answer networks for machine reading comprehension. arXiv preprint arXiv:1712.03556, 2017. ",
1403
+ "bbox": [
1404
+ 173,
1405
+ 445,
1406
+ 823,
1407
+ 474
1408
+ ],
1409
+ "page_idx": 11
1410
+ },
1411
+ {
1412
+ "type": "text",
1413
+ "text": "Yury A Malkov and Dmitry A Yashunin. Efficient and robust approximate nearest neighbor search using hierarchical navigable small world graphs. TPAMI, 2018. ",
1414
+ "bbox": [
1415
+ 173,
1416
+ 483,
1417
+ 821,
1418
+ 513
1419
+ ],
1420
+ "page_idx": 11
1421
+ },
1422
+ {
1423
+ "type": "text",
1424
+ "text": "Alexander Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason Weston. Key-value memory networks for directly reading documents. arXiv preprint arXiv:1606.03126, 2016. ",
1425
+ "bbox": [
1426
+ 173,
1427
+ 521,
1428
+ 826,
1429
+ 565
1430
+ ],
1431
+ "page_idx": 11
1432
+ },
1433
+ {
1434
+ "type": "text",
1435
+ "text": "Sewon Min, Victor Zhong, Richard Socher, and Caiming Xiong. Efficient and robust question answering from minimal context over documents. arXiv preprint arXiv:1805.08092, 2018. ",
1436
+ "bbox": [
1437
+ 173,
1438
+ 574,
1439
+ 823,
1440
+ 604
1441
+ ],
1442
+ "page_idx": 11
1443
+ },
1444
+ {
1445
+ "type": "text",
1446
+ "text": "Mike Mintz, Steven Bills, Rion Snow, and Dan Jurafsky. Distant supervision for relation extraction without labeled data. In ACL, 2009. ",
1447
+ "bbox": [
1448
+ 173,
1449
+ 612,
1450
+ 823,
1451
+ 642
1452
+ ],
1453
+ "page_idx": 11
1454
+ },
1455
+ {
1456
+ "type": "text",
1457
+ "text": "Rodrigo Nogueira and Kyunghyun Cho. Task-oriented query reformulation with reinforcement learning. In EMNLP, 2017. ",
1458
+ "bbox": [
1459
+ 173,
1460
+ 650,
1461
+ 823,
1462
+ 681
1463
+ ],
1464
+ "page_idx": 11
1465
+ },
1466
+ {
1467
+ "type": "text",
1468
+ "text": "Jonas Pfeiffer, Samuel Broscheit, Rainer Gemulla, and Mathias Goschl. A neural autoencoder ¨ approach for document ranking and query refinement in pharmacogenomic information retrieval. In BioNLP workshop, ACL, 2018. ",
1469
+ "bbox": [
1470
+ 174,
1471
+ 689,
1472
+ 825,
1473
+ 732
1474
+ ],
1475
+ "page_idx": 11
1476
+ },
1477
+ {
1478
+ "type": "text",
1479
+ "text": "Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad: $^ { 1 0 0 , 0 0 0 + }$ questions for machine comprehension of text. In EMNLP, 2016. ",
1480
+ "bbox": [
1481
+ 169,
1482
+ 741,
1483
+ 825,
1484
+ 771
1485
+ ],
1486
+ "page_idx": 11
1487
+ },
1488
+ {
1489
+ "type": "text",
1490
+ "text": "Steffen Rendle, Christoph Freudenthaler, Zeno Gantner, and Lars Schmidt-Thieme. Bpr: Bayesian personalized ranking from implicit feedback. In UAI, 2009. ",
1491
+ "bbox": [
1492
+ 171,
1493
+ 780,
1494
+ 823,
1495
+ 809
1496
+ ],
1497
+ "page_idx": 11
1498
+ },
1499
+ {
1500
+ "type": "text",
1501
+ "text": "Minjoon Seo, Aniruddha Kembhavi, Ali Farhadi, and Hannaneh Hajishirzi. Bidirectional attention flow for machine comprehension. In ICLR, 2017. ",
1502
+ "bbox": [
1503
+ 171,
1504
+ 818,
1505
+ 823,
1506
+ 848
1507
+ ],
1508
+ "page_idx": 11
1509
+ },
1510
+ {
1511
+ "type": "text",
1512
+ "text": "Yelong Shen, Po-Sen Huang, Jianfeng Gao, and Weizhu Chen. Reasonet: Learning to stop reading in machine comprehension. In KDD, 2017. ",
1513
+ "bbox": [
1514
+ 174,
1515
+ 856,
1516
+ 823,
1517
+ 886
1518
+ ],
1519
+ "page_idx": 11
1520
+ },
1521
+ {
1522
+ "type": "text",
1523
+ "text": "Sainbayar Sukhbaatar, Jason Weston, Rob Fergus, et al. End-to-end memory networks. In NIPS, 2015. ",
1524
+ "bbox": [
1525
+ 174,
1526
+ 895,
1527
+ 823,
1528
+ 924
1529
+ ],
1530
+ "page_idx": 11
1531
+ },
1532
+ {
1533
+ "type": "text",
1534
+ "text": "Swabha Swayamdipta, Ankur P Parikh, and Tom Kwiatkowski. Multi-mention learning for reading comprehension with neural cascades. In ICLR, 2018. ",
1535
+ "bbox": [
1536
+ 171,
1537
+ 103,
1538
+ 825,
1539
+ 132
1540
+ ],
1541
+ "page_idx": 12
1542
+ },
1543
+ {
1544
+ "type": "text",
1545
+ "text": "Adam Trischler, Tong Wang, Xingdi Yuan, Justin Harris, Alessandro Sordoni, Philip Bachman, and Kaheer Suleman. Newsqa: A machine comprehension dataset. arXiv preprint arXiv:1611.09830, 2016. ",
1546
+ "bbox": [
1547
+ 176,
1548
+ 140,
1549
+ 825,
1550
+ 184
1551
+ ],
1552
+ "page_idx": 12
1553
+ },
1554
+ {
1555
+ "type": "text",
1556
+ "text": "Ellen M Voorhees, others, et al. The trec-8 question answering track report. In Trec, 1999. ",
1557
+ "bbox": [
1558
+ 173,
1559
+ 193,
1560
+ 766,
1561
+ 208
1562
+ ],
1563
+ "page_idx": 12
1564
+ },
1565
+ {
1566
+ "type": "text",
1567
+ "text": "Shuohang Wang and Jing Jiang. Machine comprehension using match-lstm and answer pointer. In ICLR, 2017. ",
1568
+ "bbox": [
1569
+ 173,
1570
+ 215,
1571
+ 823,
1572
+ 246
1573
+ ],
1574
+ "page_idx": 12
1575
+ },
1576
+ {
1577
+ "type": "text",
1578
+ "text": "Shuohang Wang, Mo Yu, Xiaoxiao Guo, Zhiguo Wang, Tim Klinger, Wei Zhang, Shiyu Chang, Gerald Tesauro, Bowen Zhou, and Jing Jiang. R3: Reinforced ranker-reader for open-domain question answering. In AAAI, 2018a. ",
1579
+ "bbox": [
1580
+ 176,
1581
+ 253,
1582
+ 825,
1583
+ 296
1584
+ ],
1585
+ "page_idx": 12
1586
+ },
1587
+ {
1588
+ "type": "text",
1589
+ "text": "Shuohang Wang, Mo Yu, Jing Jiang, Wei Zhang, Xiaoxiao Guo, Shiyu Chang, Zhiguo Wang, Tim Klinger, Gerald Tesauro, and Murray Campbell. Evidence aggregation for answer re-ranking in open-domain question answering. In ICLR, 2018b. ",
1590
+ "bbox": [
1591
+ 174,
1592
+ 306,
1593
+ 825,
1594
+ 348
1595
+ ],
1596
+ "page_idx": 12
1597
+ },
1598
+ {
1599
+ "type": "text",
1600
+ "text": "Wei Wang, Ming Yan, and Chen Wu. Multi-granularity hierarchical attention fusion networks for reading comprehension and question answering. In ACL, 2018c. ",
1601
+ "bbox": [
1602
+ 176,
1603
+ 357,
1604
+ 821,
1605
+ 387
1606
+ ],
1607
+ "page_idx": 12
1608
+ },
1609
+ {
1610
+ "type": "text",
1611
+ "text": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 1992. ",
1612
+ "bbox": [
1613
+ 173,
1614
+ 395,
1615
+ 823,
1616
+ 424
1617
+ ],
1618
+ "page_idx": 12
1619
+ },
1620
+ {
1621
+ "type": "text",
1622
+ "text": "Caiming Xiong, Victor Zhong, and Richard Socher. Dynamic coattention networks for question answering. In ICLR, 2017. ",
1623
+ "bbox": [
1624
+ 174,
1625
+ 433,
1626
+ 823,
1627
+ 462
1628
+ ],
1629
+ "page_idx": 12
1630
+ },
1631
+ {
1632
+ "type": "text",
1633
+ "text": "Jinxi Xu and W Bruce Croft. Quary expansion using local and global document analysis. In SIGIR, 1996. ",
1634
+ "bbox": [
1635
+ 173,
1636
+ 470,
1637
+ 823,
1638
+ 500
1639
+ ],
1640
+ "page_idx": 12
1641
+ },
1642
+ {
1643
+ "type": "text",
1644
+ "text": "Fan Yang, Zhilin Yang, and William W Cohen. Differentiable learning of logical rules for knowledge base reasoning. In NeurIPS, 2017. ",
1645
+ "bbox": [
1646
+ 171,
1647
+ 507,
1648
+ 821,
1649
+ 537
1650
+ ],
1651
+ "page_idx": 12
1652
+ },
1653
+ {
1654
+ "type": "text",
1655
+ "text": "Adams Wei Yu, David Dohan, Minh-Thang Luong, Rui Zhao, Kai Chen, Mohammad Norouzi, and Quoc V Le. Qanet: Combining local convolution with global self-attention for reading comprehension. In ICLR, 2018. ",
1656
+ "bbox": [
1657
+ 173,
1658
+ 545,
1659
+ 826,
1660
+ 589
1661
+ ],
1662
+ "page_idx": 12
1663
+ },
1664
+ {
1665
+ "type": "text",
1666
+ "text": "Manzil Zaheer, Guru Guruganesh, Golan Levin, and Alex Smola. Terrapattern: A nearest neighbor search service. In Arxiv, 2019. ",
1667
+ "bbox": [
1668
+ 171,
1669
+ 598,
1670
+ 823,
1671
+ 627
1672
+ ],
1673
+ "page_idx": 12
1674
+ }
1675
+ ]
parse/train/HkfPSh05K7/HkfPSh05K7_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/HkfPSh05K7/HkfPSh05K7_model.json ADDED
The diff for this file is too large to render. See raw diff