ZHANGYUXUAN-zR commited on
Commit
6711916
·
verified ·
1 Parent(s): f345089

Add files using upload-large-folder tool

Browse files
parse/train/GSXEx6iYd0/GSXEx6iYd0.md ADDED
@@ -0,0 +1,355 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Numerical Composition of Differential Privacy∗
2
+
3
+ Sivakanth Gopi Microsoft Research sigopi@microsoft.com
4
+
5
+ Yin Tat Lee University of Washington yintat@uw.edu
6
+
7
+ Lukas Wutschitz Microsoft lukas.wutschitz@microsoft.com
8
+
9
+ # Abstract
10
+
11
+ We give a fast algorithm to optimally compose privacy guarantees of differentially private (DP) algorithms to arbitrary accuracy. Our method is based on the notion of privacy loss random variables to quantify the privacy loss of DP algorithms. The running time and memory needed for our algorithm to approximate the privacy√ curve of a DP algorithm composed with itself $k$ times is $\bar { \tilde { O } } ( { \sqrt { k } } )$ . This improves over the best prior method by [KH21] which requires $\tilde { \Omega } ( k ^ { 1 . 5 } )$ running time. We demonstrate the utility of our algorithm by accurately computing the privacy loss of DP-SGD algorithm of Abadi et al. $[ \mathsf { A C G } ^ { + } 1 6 ]$ and showing that our algorithm speeds up the privacy computations by a few orders of magnitude compared to prior work, while maintaining similar accuracy.
12
+
13
+ # 1 Introduction
14
+
15
+ Differential privacy (DP) introduced by [DMNS06] provides a provable and quantifiable guarantee of privacy when the results of an algorithm run on private data are made public. Formally, we can define an $( \varepsilon , \delta )$ -differentially private algorithm as follows.
16
+
17
+ Definition 1.1 ( $( \varepsilon , \delta )$ -DP [DMNS06, $\mathrm { D K M ^ { + } 0 6 ] }$ ). An algorithm $\mathcal { M }$ is $( \varepsilon , \delta )$ -DP if for any two neighboring databases $D , D ^ { \prime }$ differing in exactly one user and any subset $S$ of outputs, we have $\operatorname* { P r } [ \mathcal { M } ( D ) \in S ] \le e ^ { \varepsilon } \operatorname* { P r } [ \mathcal { M } ( D ^ { \prime } ) \in S ] + \delta$ .
18
+
19
+ Intuitively, it says that looking at the outcome of $\mathcal { M }$ , we cannot tell whether it was run on $D$ or $D ^ { \prime }$ . Hence an adversary cannot infer the existence of any particular user in the input database, and therefore cannot learn any personal data of any particular user.
20
+
21
+ DP algorithms have an important property called composition. Suppose $M _ { 1 }$ and $M _ { 2 }$ are DP algorithms and say $M ( D ) = ( M _ { 1 } ( D ) , M _ { 2 } ( D ) )$ , i.e., $M$ runs both the algorithms on $D$ and outputs their results. Then $M$ is also a DP algorithm.
22
+
23
+ Proposition 1.2 (Simple composition $\mathrm { [ D K M ^ { + } 0 6 }$ , DL09]). If $M _ { 1 }$ is $( \varepsilon _ { 1 } , \delta _ { 1 } )$ -DP and $M _ { 2 }$ is $( \varepsilon _ { 2 } , \delta _ { 2 } )$ - $D P ,$ then $M ( D ) = ( \bar { M } _ { 1 } ( D ) , \bar { M } _ { 2 } ( D ) )$ is $( \varepsilon _ { 1 } + \varepsilon _ { 2 } , \delta _ { 1 } + \delta _ { 2 } ) – D P .$ .
24
+
25
+ This also holds under adaptive composition (denoted by $M = M _ { 2 } \circ M _ { 1 } )$ , where $M _ { 2 }$ can look at both the database and the output of $M _ { 1 }$ (here $M ( D ) = ( M _ { 1 } ( D ) , M _ { 2 } ( D , M _ { 1 } ( D ) ) ) )$ . It turns out that both compositions enjoy much better DP guarantees than this simple composition rule. Let $M$ be an $( \varepsilon , \delta )$ -DP algorithm and let $M ^ { \circ k }$ denote the (adaptive) composition of $M$ with itself $k$ times. The naive composition rule shows that $M ^ { \circ k }$ is $( k \varepsilon , k \delta )$ -DP. This was significantly improved in [DRV10].
26
+
27
+ Proposition 1.3 (Advanced composition [DRV10, $\mathrm { D R } ^ { + } 1 4 ]$ ). If $M$ is $( \varepsilon , \delta )$ -DP, then $M ^ { \circ k }$ is $( \varepsilon ^ { \prime } , k \delta +$ $\delta ^ { \prime }$ )-DP where
28
+
29
+ $$
30
+ \varepsilon ^ { \prime } = \varepsilon \sqrt { 2 k \log \left( \frac { 1 } { \delta ^ { \prime } } \right) } + k \varepsilon ( e ^ { \varepsilon } - 1 ) .
31
+ $$
32
+
33
+ Note that if $\begin{array} { r } { \varepsilon = O \left( \frac { 1 } { \sqrt { k } } \right) } \end{array}$ and $\begin{array} { r } { \delta = o \left( \frac { 1 } { k } \right) } \end{array}$ , then $M ^ { \circ k }$ satisfies $( O _ { \delta ^ { \prime } } ( 1 ) , \delta ^ { \prime } )$ -DP. Using simple composition (Proposition 1.2), we can only claim that $M ^ { \circ k }$ is $( O ( { \sqrt { k } } ) , o ( 1 ) )$ -DP. Thus advanced composition often results in $\sqrt { k }$ -factor savings in privacy which is significant in practice. The optimal DP guarantees for $k$ -fold composition of an $( \varepsilon , \delta )$ -DP algorithm were finally obtained by [KOV15]. For composing different algorithms, the situation is more complicated. If $M _ { 1 } , M _ { 2 } , \ldots , M _ { k }$ are DP algorithms such that $M _ { i }$ is $( \varepsilon _ { i } , \delta _ { i } )$ -DP, then it is shown by [MV16] that computing the exact DP guarantees for $M = M _ { 1 } \circ M _ { 2 } \circ \cdot \cdot \cdot \circ M _ { k }$ is #P-complete. They also give an algorithm to approximate the DP guarantees of $M$ to desired accuracy $\eta$ which runs in
34
+
35
+ $$
36
+ \tilde { O } \left( \frac { k ^ { 3 } \bar { \varepsilon } ( 1 + \bar { \varepsilon } ) } { \eta } \right)
37
+ $$
38
+
39
+ time where $\textstyle { \bar { \varepsilon } } = ( \sum _ { i = 1 } ^ { k } \varepsilon _ { i } ) / k$ .2 If each $\begin{array} { r } { \varepsilon _ { i } \approx \frac { 1 } { \sqrt { k } } } \end{array}$ (so that $M$ will satisfy reasonable privacy guarantees by advanced composition), then the running time is $\tilde { O } ( k ^ { 2 . 5 } / \eta )$ .
40
+
41
+ In most situations, DP algorithms come with a collection of $( \varepsilon , \delta )$ -DP guarantees, i.e., for each value of $\varepsilon$ , there exists $\delta$ such that the algorithm is $( \varepsilon , \delta )$ -DP.
42
+
43
+ Definition 1.4 (Privacy curve). A DP algorithm $M$ is said to have privacy curve $\delta : \mathbb { R } [ 0 , 1 ] ,$ if for every $\varepsilon \in \mathbb { R }$ , $M$ is $( \varepsilon , \delta ( \varepsilon ) ) \lrcorner D P .$
44
+
45
+ For example the privacy curve of a Gaussian mechanism (with sensitivity 1 and noise scale $\sigma$ ) is given by $\delta ( \varepsilon ) = \Phi \left( - \varepsilon \sigma + 1 / 2 \sigma \right) - e ^ { \varepsilon } \Phi \left( - \varepsilon \sigma - 1 / 2 \sigma \right)$ where $\Phi ( \cdot )$ is the Gaussian CDF [BW18]. Suppose we want to compose several Gaussian mechanisms, which $( \varepsilon , \delta )$ -DP guarantee should we choose for each mechanism? Any choice will lead to suboptimal DP guarantees for the final composition. Instead, we need a way to compose the privacy curves directly. This was suggested through the use of privacy region in [KOV15] and explicitly studied in the $f$ -DP framework of [DRS19]. $f$ -DP is a dual way (and equivalent) to look at the privacy curve $\delta ( \varepsilon )$ .
46
+
47
+ Independently, an algorithm called Privacy Buckets for approximately composing privacy curves using the notion of was initiated in [MM18]. This algorithm depends on the notion of Privacy Loss Random Variable (PRV) [DR16], whose distribution is called Privacy Loss Distribution (PLD). For any DP-algorithm, one can associate a PRV and the privacy curve of that algorithm can be easily obtained from the PRV. The really useful property of PRVs is that under adaptive composition, they just add up; the PRV $Y$ of the composition $M = M _ { 1 } \circ M _ { 2 } \circ \cdots \circ M _ { k }$ is given by $\begin{array} { r } { \bar { Y } = \sum _ { i = 1 } ^ { k } \bar { Y _ { i } } } \end{array}$ where $Y _ { i }$ is the PRV of $M _ { i }$ .3 Therefore, one can find the distribution of $Y$ by the convolution of the distributions of $Y _ { 1 } , Y _ { 2 } , \ldots , Y _ { k }$ . In an important paper, $[ \mathrm { K J H ^ { + } } 2 0 ]$ proposed that one can speed up the convolutions using Fast Fourier Transform (FFT). Explicit error bounds were obtained for the approximation obtained by their algorithm in $[ \mathrm { K J H ^ { + } } 2 0 $ , KJPH21, KH21]. The running time of this algorithm was analyzed in [KH21] where it was shown that the privacy curve $\delta _ { M } ( \varepsilon )$ of $M = M _ { 1 } \circ M _ { 2 } \circ \cdot \cdot \cdot \circ M _ { k }$ can be computed up to an additive error of $\delta _ { \mathrm { e r r o r } }$ in time
48
+
49
+ $$
50
+ \tilde { O } \left( \frac { k ^ { 3 } \bar { \varepsilon } } { \delta _ { \mathrm { e r r o r } } } \right) ,
51
+ $$
52
+
53
+ if each algorithm $M _ { i }$ is satisfies $( \varepsilon _ { i } , 0 )$ -DP and $\begin{array} { r } { \bar { \varepsilon } = \frac { 1 } { k } \sum _ { i = 1 } ^ { k } \varepsilon _ { i } } \end{array}$ . Assuming that each $\begin{array} { r } { \varepsilon _ { i } \approx \frac { 1 } { \sqrt { k } } } \end{array}$ , we get $\tilde { O } ( k ^ { 2 . 5 } / \delta _ { \mathrm { e r r o r } } )$ running time. Note that this is slightly worse than (1), where the denominator $\eta$ is the multiplicative error in $\delta _ { M }$ . When composing the same algorithm with itself for $k$ times, the running time can be improved to $\begin{array} { r } { \tilde { O } \left( \frac { k ^ { 2 } \bar { \varepsilon } } { \delta _ { \mathrm { e r r o r } } } \right) } \end{array}$ , which is $\begin{array} { r } { \tilde { O } \left( \frac { k ^ { 1 . 5 } } { \delta _ { \mathrm { e r r o r } } } \right) } \end{array}$ when ε¯ = √1k .
54
+
55
+ Moments Accountant and Renyi DP In an influential paper where they introduce Differentially Private Deep Learning, $[ \mathsf { A C G } ^ { + } 1 6 ]$ proposed a method called the Moments Accountant (MA) for giving an upper bound the privacy curve of a composition of DP algorithms. They applied their method to bound the privacy loss of differentially private Stochastic Gradient Descent (DP-SGD) algorithm which they introduced. Analyzing the privacy loss of DP-SGD involves composing the privacy curve of each iteration of training with itself $k$ times, where $k$ is the total of number of training iterations. Typical values of $k$ range from 1000 to 300000 (such as when training large models like GPT3). The Moments Accountant was subsumed into the framework of Renyi Differential Privacy (RDP) introduced by [Mir17]. The running time of these accountants are independent of $k$ , but they only give an upper bound and cannot approximate the privacy curve to arbitrary accuracy.
56
+
57
+ DP-SGD is one of the most important DP algorithms in practice, because one can use it to train neural networks to achieve good privacy-vs-utility tradeoffs. Therefore obtaining accurate and tight privacy guarantees for DP-SGD is important. For example reducing $\varepsilon$ from 2 to 1, can mean that one can train the network for 4 times more epochs while staying within the same privacy budget. Therefore DP-SGD is one of the main motivations for this work.
58
+
59
+ There are also situations when the PRVs do not have bounded moments and so Moments Accountant or Renyi DP cannot be applied for analyzing privacy. An example of such an algorithm is the DP-SGD-JL algorithm of $[ \mathrm { B G K } ^ { + } 2 1 ]$ which uses numerical composition of PRVs to analyze privacy.
60
+
61
+ GDP Accountant [DRS19, BDLS19] introduced the notion of Gaussian Differential Privacy (GDP) and used it to develop an accountant for DP-SGD. The accountant is based on central limit theorem and only gives an approximation to the true privacy curve, where the approximation gets better with $k$ . But as we show in Figure 1, GDP accountant can significantly underreport the true epsilon value.
62
+
63
+ Several different notions of privacy were introduced for obtaining good upper bounds on the privacy curve of composition of DP algorithms such as Concentrated DP (CDP) [DR16, BS16], Truncated CDP [BDRS18] etc. None of these methods can approximate the privacy curve of compositions to arbitrary accuracy. The notion of $f$ -DP introduced by [DRS19], allows for a lossless composition theorem, but computing the privacy curve of composition seems computationally hard and they do not give any algorithms for doing it.
64
+
65
+ # 1.1 Our Contributions
66
+
67
+ The main contribution of this work is a new algorithm with an improved analysis for computing the privacy curve of the composition of a large number of DP algorithms.
68
+
69
+ Theorem 1.5 (Informal version of Theorem 5.5). Suppose $M _ { 1 } , M _ { 2 } , \ldots , M _ { k }$ are $D P$ algorithms. Then the privacy curve $\delta _ { M } ( \varepsilon )$ of adaptive composition $M = M _ { 1 } \circ M _ { 2 } \circ \cdot \cdot \cdot \circ M _ { k }$ can be approximated in time
70
+
71
+ $$
72
+ O \left( \frac { \varepsilon _ { \mathrm { u p p e r } } k ^ { 1 . 5 } \log k \sqrt { \log \frac { 1 } { \delta _ { \mathrm { e r r o r } } } } } { \varepsilon _ { \mathrm { e r r o r } } } \right) ,
73
+ $$
74
+
75
+ where $\varepsilon _ { \mathrm { e r r o r } }$ is the additive error in $\varepsilon$ , $\delta _ { \mathrm { e r r o r } }$ is the additive error in $\delta$ and $\varepsilon _ { \mathrm { u p p e r } }$ is an upper bound on max $\begin{array} { r } { \left\{ \varepsilon _ { M } ( \delta _ { \mathrm { e r r o r } } ) , \mathrm { m a x } _ { i } \varepsilon _ { M _ { i } } \left( \frac { \delta _ { \mathrm { e r r o r } } } { k } \right) \right\} } \end{array}$ . 4
76
+
77
+ If each $M _ { i }$ satisfies $\scriptstyle \left( { \frac { 1 } { \sqrt { k } } } , { \frac { o ( 1 ) } { k } } \right)$ -DP, then by advanced composition (Proposition 1.3), we can set $\varepsilon _ { \mathrm { u p p e r } } = O ( 1 )$ . Therefore the running time of our algorithm in this case is $\tilde { O } \left( \frac { k ^ { 1 . 5 } \sqrt { \log \frac { 1 } { \delta _ { \mathrm { e r r o r } } } } } { \varepsilon _ { \mathrm { e r r o r } } } \right)$ . We can save a factor of $k$ , when we compose the same algorithm with itself $k$ times.
78
+
79
+ Theorem 1.6. Suppose $M$ is a DP algorithm. Then the privacy curve $\delta _ { M ^ { \circ } k } ( \varepsilon )$ of $M$ (adaptively) composed with itself $k$ times can be approximated in time
80
+
81
+ $$
82
+ O \left( \frac { \varepsilon _ { \mathrm { u p p e r } } k ^ { \frac { 1 } { 2 } } \log k \sqrt { \log \frac { 1 } { \delta _ { \mathrm { e r r o r } } } } } { \varepsilon _ { \mathrm { e r r o r } } } \right) ,
83
+ $$
84
+
85
+ where $\varepsilon _ { \mathrm { e r r o r } }$ is the additive error in $\varepsilon$ , $\delta _ { \mathrm { e r r o r } }$ is the additive error in $\delta$ and $\varepsilon _ { \mathrm { u p p e r } }$ is an upper bound on max $\begin{array} { r } { \left\{ \varepsilon _ { M ^ { \circ k } } ( \delta _ { \mathrm { e r r o r } } ) , \varepsilon _ { M } \left( \frac { \delta _ { \mathrm { e r r o r } } } { k } \right) \right\} } \end{array}$ .
86
+
87
+ Thus we improve the state-of-the-art by at least a factor of $k$ in running time. We also note that our algorithm improves the memory required by a factor of $k$ . See Figure 1 for a comparison of our algorithm with that of [KJPH21]. Also note that RDP Accountant (equivalent to the Moments Accountant) significantly overestimates the true $\varepsilon$ , while the GDP Accountant significantly underestimates the true $\varepsilon$ . In contrast, the upper and lower bounds provided by our algorithm lie very close to each other.
88
+
89
+ ![](images/8e9f81b58d5b20927335c64d5bde49592def1d97d29b397a5ab89e225d8706ef.jpg)
90
+
91
+ ![](images/9d2af7302e29615a33af3e6ff3f26516bd66935578ca15397ae42aa3cec7bb70.jpg)
92
+ (b) Our algorithm can improve significantly over the RDP Accountant. We also see that GDP Accountant can significantly underreport the true $\varepsilon$ . We have set $\varepsilon _ { \mathrm { e r r o r } } = 0 . 1$ , $\delta _ { \mathrm { e r r o r } } = { \bar { \delta } } / 1 0 0 0$ here.
93
+
94
+ (a) Our algorithm gives much closer upper and lower bounds on the true privacy curve compared to [KJPH21], under the same mesh size of $4 ~ \times$ $1 0 ^ { - 5 }$ . Our upper and lower bounds are nearly coinciding.
95
+
96
+ Figure 1: Case study on DP-SGD. Sampling probability $p = 1 0 ^ { - 3 }$ , noise scale $\sigma = 0 . 8$ , $\delta = 1 0 ^ { - 7 }$
97
+
98
+ Our Techniques Our algorithm (also the prior work of $\mathrm { [ K J H ^ { + } 2 0 ] }$ ) proceeds by approximating the privacy loss random variables (PRVs) by truncating and discretizing them. We then use Fast Fourier Transform (FFT) to convolve the distributions efficiently. The main difference is in the approximation procedure and the error analysis. In the approximation procedure, we correct the approximation so that the expected value of the discretization matches with the expected value of the PRV.
99
+
100
+ To analyze the approximation error, we introduce the concept of coupling approximation (Definition 5.1), which is a variant of Wasserstein (optimal transport) distance specifically tailored to this application. We first show that the approximation output by our algorithm to each privacy random variable is a good coupling approximation. We then show that when independent coupling approximations are added, cancellation happens between the errors due to Hoeffding bound, producing a much better coupling approximation than one naively expects from the triangle inequality. This allows us to choose the mesh size in our discretization to be $\approx { \frac { 1 } { \sqrt { k } } }$ , whereas [KH21] choose a mesh size of $\approx \frac { 1 } { k }$ . The other improvement is the truncation procedure. We give a tight tail bound of the PRVs (Lemma 5.4). This allows us to choose the domain size for in truncation to be√ $\approx \tilde { O } ( 1 )$ , whereas [KH21] choose $\approx \tilde { O } ( \sqrt { k } )$ . Both ideas together saves a factor of $k$ in the run time and memory.
101
+
102
+ For the analysis, the previous paper analyzes the discretization error by studying the stability of convolution. This leads to complicated calculations with the runtime linear in $1 / \bar { \delta } _ { \mathrm { e r r o r } } \bar { }$ (see (2)). Since $\delta _ { \mathrm { e r r o r } } \ll \delta \ll 1 / N$ is required to give meaningful privacy guarantee $N$ is the number of users), this term $1 / \delta _ { \mathrm { e r r o r } }$ is huge. In this paper, we show various facts about how coupling approximation accumulates and use them to give a runtime depending only on $\sqrt { \log ( 1 / \delta _ { \mathrm { e r r o r } } ) }$ .
103
+
104
+ # 2 DP Preliminaries
105
+
106
+ Given a DP algorithm $\mathcal { M }$ , for each value of $\varepsilon \geq 0$ , there exists some $\delta \in [ 0 , 1 ]$ such that $\mathcal { M }$ is $( \varepsilon , \delta )$ -DP. We can represent all these privacy guarantees by a function $\delta _ { \mathcal { M } } ( \varepsilon ) : \mathbb { R } ^ { \geq 0 } [ 0 , 1 ]$ and say that $\delta _ { \mathcal { M } } ( \cdot )$ is the privacy curve of $\mathcal { M }$ . This inspires the following definition of a privacy curve between two random variables.
107
+
108
+ Definition 2.1 (Privacy curve). Given two random variables $X , Y$ supported on some set $\Omega$ , define $\delta ( X \vert \vert Y ) : \mathbb { R } \to [ 0 , 1 ]$ as:
109
+
110
+ $$
111
+ \delta ( X | | Y ) ( \varepsilon ) = \operatorname* { s u p } _ { S \subset \Omega } \operatorname* { P r } [ Y \in S ] - e ^ { \varepsilon } \operatorname* { P r } [ X \in S ] .
112
+ $$
113
+
114
+ Therefore an algorithm $\mathcal { M }$ is $( \varepsilon , \delta )$ -DP iff $\delta \left( \mathcal { M } ( D ) \vert \vert \mathcal { M } ( D ^ { \prime } ) \right) ( \varepsilon ) \leq \delta$ for all neighboring databases $D , D ^ { \prime }$ .
115
+
116
+ Remark 2.2. Note that not all functions $\delta : \mathbb { R } [ 0 , 1 ]$ are privacy curves. A characterization of privacy curves can be obtained using the $f$ -DP framework of [DRS19]. The notion of privacy curve $\delta ( X \vert \vert Y )$ and tradeoff function $T ( X \vert \vert Y )$ are dual to each other via convex duality [DRS19]. This implies a characterization of privacy curves as shown in [ZDW21].
117
+
118
+ Definition 2.3 (Composition of privacy curves [DRS19]). Let $\delta _ { 1 } \equiv \delta ( X _ { 1 } | | Y _ { 1 } )$ and $\delta _ { 2 } \equiv \delta ( X _ { 2 } | | Y _ { 2 } )$ be any two privacy curves. The composition of the privacy curves, denoted by $\delta _ { 1 } \otimes \delta _ { 2 }$ , is defined as
119
+
120
+ $$
121
+ \delta _ { 1 } \otimes \delta _ { 2 } \equiv \delta \left( ( X _ { 1 } , X _ { 2 } ) | | ( Y _ { 1 } , Y _ { 2 } ) \right)
122
+ $$
123
+
124
+ where $X _ { 1 } , X _ { 2 }$ are independently sampled and $Y _ { 1 } , Y _ { 2 }$ are independently sampled.
125
+
126
+ Note that there can be many pairs of random variables which have the same privacy curve, but the above operation is well-defined. If $\delta ( X _ { 1 } | | Y _ { 1 } ) \equiv \delta ( X _ { 1 } ^ { \prime } | | Y _ { 1 } ^ { \prime } )$ and $\delta ( X _ { 2 } | | Y _ { 2 } ) \equiv \delta ( X _ { 2 } ^ { \prime } | | Y _ { 2 } ^ { \prime } )$ , then it was shown by [DRS19] that
127
+
128
+ $$
129
+ \delta \left( ( X _ { 1 } , X _ { 2 } ) | | ( Y _ { 1 } , Y _ { 2 } ) \right) = \delta \left( ( X _ { 1 } ^ { \prime } , X _ { 2 } ^ { \prime } ) | | ( Y _ { 1 } ^ { \prime } , Y _ { 2 } ^ { \prime } ) \right) .
130
+ $$
131
+
132
+ [DRS19] also show that $\otimes$ is a commutative and associative operation.
133
+
134
+ Given two DP algorithms $M _ { 1 }$ and $M _ { 2 }$ , the adaptive composition $( M _ { 2 } \circ M _ { 1 } ) ( D )$ is an algorithm which outputs $( M _ { 1 } ( D ) , M _ { 2 } ( D , M _ { 1 } ( D ) )$ , i.e., $M _ { 2 }$ can look at the database $D$ and also the output of the previous algorithm $M _ { 1 } ( D )$ . Adaptive composition of more than two algorithms is similarly defined. Suppose $M _ { 1 }$ has privacy curve $\delta _ { 1 }$ and $M _ { 2 }$ has privacy curve $\delta _ { 2 }$ (i.e., $M _ { 2 } ( \cdot , y )$ is a $\mathrm { D P }$ algorithm with privacy curve $\delta _ { 2 }$ for any fixed $y$ .). The following composition theorem shows how to get the privacy curve of $M _ { 2 } \circ M _ { 1 }$ .
135
+
136
+ Theorem 2.4 (Composition theorem [DRS19]). Let $M _ { 1 } , M _ { 2 } , \ldots , M _ { k }$ be DP algorithms with privacy curves given by $\delta _ { 1 } , \delta _ { 2 } , \dots , \delta _ { k }$ respectively. The privacy curve of the adaptive composition $M _ { k } \circ$ $M _ { k - 1 } \circ \cdots \circ M _ { 1 }$ is given by $\delta _ { 1 } \otimes \delta _ { 2 } \otimes \cdot \cdot \cdot \otimes \delta _ { k }$ .
137
+
138
+ # 3 Privacy loss random variables
139
+
140
+ The notion of privacy loss random variables (PRVs) is a unique way to assign a pair $( X , Y )$ for any privacy curve $\delta$ such that $\delta \equiv \delta ( X | | Y )$ . PRVs allow us to compute composition of two algorithms via summing random variables (Theorem 3.5) (equivalently, convolving their distributions). Thus PRVs can be thought of as a reparametrization of privacy curves where composition becomes convolution. In this paper, we differ from the usual definition of PRVs given in [DR16, $\mathrm { K J H } ^ { + } 2 0 ]$ , which are tied to a specific algorithm. Instead we think of them as a reparametrization of privacy curves and study them directly. This allows us to succinctly prove many useful properties of PRVs.
141
+
142
+ Let ${ \overline { { \mathbb { R } } } } = \mathbb { R } \cup \{ - \infty , \infty \}$ be the extended real line where we define $\infty + x = \infty$ and $- \infty + x = - \infty$ for $x \in \mathbb { R }$ .
143
+
144
+ Definition 3.1 (Privacy loss random variables (PRVs)). Given a privacy curve $\delta : \mathbb { R } [ 0 , 1 ]$ , we say that $( X , Y )$ are privacy loss random variables for $\delta$ , if they satisfy the following conditions:
145
+
146
+ • $X , Y$ are supported on ${ \overline { { \mathbb { R } } } } ,$ , • $\delta ( X | | Y ) \equiv \delta$ , • $Y ( t ) = e ^ { t } X ( t )$ for every $t \in \mathbb { R }$ and • $Y ( - \infty ) = 0 a n d X ( \infty ) = 0$
147
+
148
+ where $X ( t ) , Y ( t )$ are probability density functions of $X , Y$ respectively.
149
+
150
+ Mathematically, the correct way to write the condition $Y ( t ) = e ^ { t } X ( t )$ is to say that $\mathbb { E } _ { Y } [ \phi ( Y ) ] =$ $\mathbb { E } _ { X } [ \phi ( X ) e ^ { X } ]$ for all test functions $\phi : \overline { { \mathbb { R } } } [ 0 , 1 ]$ with $\phi ( \infty ) = \phi ( - \infty ) = 0$ . This will generalize to all situations where $X , Y$ are continuous or discrete or both. For ease of exposition, we ignore this complication and assume that $X ( t ) , Y ( t )$ represent the PDFs if $X , Y$ are continuous at $t$ , or the probability masses if they have point masses at $t$ .
151
+
152
+ The following theorem shows that the PRVs for a privacy curve $\delta = \delta ( P | | Q )$ are given by the log-likelihood random variables of $P , Q$ .
153
+
154
+ Theorem 3.2. Let $\delta : \mathbb { R } [ 0 , 1 ]$ be a privacy curve given by $\delta \equiv \delta ( P | | Q )$ where $P , Q$ are two random variables supported on $\Omega$ . The PRVs $( X , Y )$ for the privacy curve $\delta$ are given $b y ^ { 5 }$ :
155
+
156
+ $$
157
+ \begin{array} { r } { X = \log \left( \frac { Q ( \omega ) } { P ( \omega ) } \right) ~ w h e r e ~ \omega \sim P , } \\ { Y = \log \left( \frac { Q ( \omega ) } { P ( \omega ) } \right) ~ w h e r e ~ \omega \sim Q . } \end{array}
158
+ $$
159
+
160
+ The following theorem provides a formula for computing the privacy curve $\delta$ in terms of the PRVs and conversely a formula for PRVs in terms of the privacy curve. A similar statement appears in [SMM19, $\mathrm { K J H } ^ { + } 2 0 ]$ ].
161
+
162
+ Theorem 3.3. The privacy curve $\delta$ can be expressed in terms of PRVs $( X , Y )$ as:
163
+
164
+ $$
165
+ \delta ( \varepsilon ) = \operatorname* { P r } [ Y > \varepsilon ] - e ^ { \varepsilon } \operatorname* { P r } [ X > \varepsilon ] = \mathbb { E } _ { Y } [ ( 1 - e ^ { \varepsilon - Y } ) _ { + } ] = \operatorname* { P r } [ Y \geq \varepsilon + Z ] .
166
+ $$
167
+
168
+ where $Z$ is an exponential random variable.6 Conversely, given a privacy curve $\delta : \mathbb { R } [ 0 , 1 ]$ , we can compute the PDFs of its $P R V s$ $( X , Y )$ as:
169
+
170
+ $$
171
+ Y ( t ) = \delta ^ { \prime \prime } ( t ) - \delta ^ { \prime } ( t ) a n d X ( t ) = e ^ { t } ( \delta ^ { \prime \prime } ( t ) - \delta ^ { \prime } ( t ) ) .
172
+ $$
173
+
174
+ Remark 3.4. Theorem 3.3 shows that the PRVs $X , Y$ do not depend on the particular $P , Q$ used to represent the privacy curve $\delta$ in Theorem 3.2. So we should think of the PDF of of the $P R V Y$ $( o r X )$ as an equivalent reparametrization of the privacy curve $\delta : \mathbb { R } [ 0 , 1 ]$ , just as the notion of $f$ -DP [DRS19] is a reparametrization of the privacy curve $\delta$ .
175
+
176
+ PRVs are useful in computing privacy curves because the composition of two privacy curves can be computed by adding the corresponding pairs of PRVs. A similar statement appears in [DR16].
177
+
178
+ Theorem 3.5. Let $\delta _ { 1 } , \delta _ { 2 }$ be two privacy curves with PRVs $( X _ { 1 } , Y _ { 1 } )$ and $( X _ { 2 } , Y _ { 2 } )$ respectively. Then the PRVs for $\delta _ { 1 } \otimes \delta _ { 2 } = \delta ( X _ { 1 } , X _ { 2 } | | Y _ { 1 } , Y _ { 2 } )$ are given by $\left( X _ { 1 } + X _ { 2 } , Y _ { 1 } + Y _ { 2 } \right)$ . In particular,
179
+
180
+ $$
181
+ \delta _ { 1 } \otimes \delta _ { 2 } = \delta ( X _ { 1 } + X _ { 2 } | | Y _ { 1 } + Y _ { 2 } ) .
182
+ $$
183
+
184
+ Proof. Let $( X , Y )$ be the privacy random variables for $\delta ( X _ { 1 } , X _ { 2 } | | Y _ { 1 } , Y _ { 2 } )$ . By Theorem 3.2,
185
+
186
+ $$
187
+ \begin{array} { r l } & { X = \log \left( \frac { ( Y _ { 1 } , Y _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } { ( X _ { 1 } , X _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } \right) \mathrm { ~ w h e r e ~ } ( t _ { 1 } , t _ { 2 } ) \sim ( X _ { 1 } , X _ { 2 } ) } \\ & { \quad = \log \left( \frac { Y _ { 1 } ( t _ { 1 } ) Y _ { 2 } ( t _ { 2 } ) } { X _ { 1 } ( t _ { 1 } ) \cdot X _ { 2 } ( t _ { 2 } ) } \right) \mathrm { ~ w h e r e ~ } t _ { 1 } \sim X _ { 1 } , t _ { 2 } \sim X _ { 2 } } \\ & { \qquad \mathrm { ( B y ~ i n d e p e n d e n c e ~ o f ~ } X _ { 1 } , X _ { 2 } \mathrm { ~ a n d ~ i n d p e n d } } \\ & { \quad = \log \left( e ^ { t _ { 1 } } \cdot e ^ { t _ { 2 } } \right) \mathrm { ~ w h e r e ~ } t _ { 1 } \sim X _ { 1 } , t _ { 2 } \sim X _ { 2 } } \\ & { \quad = t _ { 1 } + t _ { 2 } \mathrm { ~ w h e r e ~ } t _ { 1 } \sim X _ { 1 } , t _ { 2 } \sim X _ { 2 } } \\ & { \quad = X _ { 1 } + X _ { 2 } . } \end{array}
188
+ $$
189
+
190
+ Similarly,
191
+
192
+ $$
193
+ { \begin{array} { r l } & { Y = \log \left( { \frac { ( Y _ { 1 } , Y _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } { ( X _ { 1 } , X _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } } \right) { \mathrm { ~ w h e r e ~ } } ( t _ { 1 } , t _ { 2 } ) \sim ( Y _ { 1 } , Y _ { 2 } ) } \\ & { \quad = t _ { 1 } + t _ { 2 } { \mathrm { ~ w h e r e ~ } } t _ { 1 } \sim Y _ { 1 } , t _ { 2 } \sim Y _ { 2 } } \\ & { \quad = Y _ { 1 } + Y _ { 2 } . } \end{array} }
194
+ $$
195
+
196
+ In the supplementary material, we provide a proof of Theorems 3.2 and 3.3. We also discuss how to compute the PRVs for a subsampled mechanism given the PRVs for the original mechanism and give examples of PRVs for few standard mechanisms. These are used in our experiments to calculate the PRVs for DP-SGD.
197
+
198
+ # 4 Numerical composition of privacy curves
199
+
200
+ In this section, we present an efficient and numerically accurate method, ComposePRV (Algorithm 1), for composing privacy guarantees by utilizing the notion of PRVs.
201
+
202
+ Input: CDFs of PRVs $Y _ { 1 } , Y _ { 2 } , \ldots , Y _ { k }$ , mesh size $h$ , Truncation parameter $\textstyle L \in { \frac { h } { 2 } } + h \mathbb { Z } ^ { > 0 }$
203
+ Output: PDF of an approximation $\widetilde { Y }$ for $\begin{array} { r } { Y = \sum _ { i = 1 } ^ { k } Y _ { i } } \end{array}$ . $\widetilde { Y }$ will be supported on $\mu + ( h \mathbb { Z } \cap [ - L , L ] )$ for some $\mu \in [ 0 , \frac { h } { 2 } ]$ .
204
+ for $\ell = 1$ to $k$ do $\begin{array} { r l } { \big | } & { { } \widetilde { Y } _ { i } \gets \mathsf { D i s c r e t i z e P R V } ( Y _ { i } , L , h ) ; } \end{array}$
205
+ end
206
+ Compute PDF Of $\widetilde { Y } = \widetilde { Y } _ { 1 } \oplus _ { L } \widetilde { Y } _ { 2 } \oplus _ { L } \cdot \cdot \cdot \oplus _ { L } \widetilde { Y } _ { k }$ by convolving PDFs of $\widetilde { Y } _ { 1 } , \widetilde { Y } _ { 2 } , \ldots , \widetilde { Y } _ { k }$ using FFT;
207
+ Compu $\mathbf { \varepsilon } \mathbf { e } \delta _ { \widetilde { Y } } ( \varepsilon ) = \mathbb { E } _ { \widetilde { Y } } \left[ \left( 1 - e ^ { \varepsilon - \widetilde { Y } } \right) _ { + } \right] \mathrm { f o r } \mathrm { a l l } \varepsilon \in [ 0 , L ] ;$
208
+ Return Y , δ e Y (·)
209
+
210
+ In the algorithm ComposePRV, we compute the circular convolution $\oplus _ { L }$ using Fast Fourier Transform (FFT). Fix some $L > 0$ . For $x \in \mathbb { R }$ , we define $x$ $( { \bmod { 2 } } L ) = x - 2 L n$ where $n \in \mathbb { Z }$ is chosen such that $x - 2 L n \in ( - L , L ]$ . Given $x , y$ , we define the circular addition $x \oplus _ { L } y = x + y$ (mod $2 L$ ). When we use FFT to compute the convolution of two discrete distributions $Y _ { 1 } , Y _ { 2 }$ supported on $h \mathbb { Z } \cap [ - L , L ]$ , we are implicitly calculating the the distribution of $Y _ { 1 } \oplus _ { L } Y _ { 2 }$ . We will later show that $\widetilde { Y } _ { 1 } \oplus _ { L } \widetilde { Y } _ { 2 } \oplus _ { L } \cdot \cdot \cdot \oplus _ { L } \widetilde { Y } _ { k }$ is a good approximation of $Y _ { 1 } + Y _ { 2 } + \cdots + Y _ { k }$ .
211
+
212
+ The subroutine DiscretizePRV (Algorithm 2) is used to truncate and discretize PRVs. In this subroutine, we shift the discretized random variables such that it has the same mean as the original variables. This is one of main differences between our algorithm and the algorithm in [KJPH21, KH21]. We show that this significantly decreases the discretization error and allow us to use much coarser mesh $h \approx 1 / \sqrt { k }$ instead of $h \approx 1 / k$ .
213
+
214
+ Input: $\mathrm { C D F } _ { Y } ( \cdot )$ of a PRV $Y$ , mesh size $h$ , Truncation parameter $\textstyle L \in { \frac { h } { 2 } } + h \mathbb { Z } ^ { > 0 }$
215
+ Output: PDF of an approximation $\widetilde { Y }$ supported on $\mu + ( h \mathbb { Z } \cap [ - L , L ] )$ for some $\mu \in [ 0 , \frac { h } { 2 } ]$ . $n { \frac { L - { \frac { h } { 2 } } } { h } }$
216
+ for $i = - n$ to $n$ do
217
+ $| \quad q _ { i } \gets \mathrm { C D F } _ { Y } ( i h + h / 2 ) - \mathrm { C D F } _ { Y } ( i h - h / 2 ) ;$
218
+ end
219
+ $q q / ( \sum _ { i = - n } ^ { n } q _ { i } )$ ; // Normalize $q$ to make it a probability distribution $Y ^ { L } \gets Y | _ { | Y | \leq L }$ (i.e., $Y$ conditioned on $| Y | \leq L )$ ;
220
+ $\begin{array} { r l } & { \mu \mathbb { E } [ Y ^ { \dot { L } } ] \stackrel { - } { - } \textstyle \sum _ { i = - n } ^ { n } i h \cdot q _ { i } ; } \\ & { \widetilde { Y } \{ i h + \mu \quad \mathrm { ~ w . p . ~ } q _ { i } \mathrm { ~ f o r ~ } - n \leq i \leq n ; } \end{array}$
221
+ Return $\widetilde { Y }$ ;
222
+
223
+ For simplicity, throughout this paper, we will assume that the PRVs $Y _ { 1 } , Y _ { 2 } , \ldots , Y _ { k }$ do not have any mass at $\infty$ . This is with out loss of generality. Suppose $\mathrm { P r } [ Y _ { i } = \infty ] = \delta _ { i }$ for each $i$ . Let $Y _ { i } ^ { \prime } = Y _ { i } | _ { Y _ { i } \neq \infty }$ . Then
224
+
225
+ $$
226
+ \begin{array} { r } { Y _ { 1 } + Y _ { 2 } + \cdots + Y _ { k } = \left\{ \begin{array} { l l } { Y _ { 1 } ^ { \prime } + Y _ { 2 } ^ { \prime } + \cdots + Y _ { k } ^ { \prime } } & { \mathrm { w . p . ~ } ( 1 - \delta _ { 1 } ) ( 1 - \delta _ { 2 } ) \cdots ( 1 - \delta _ { k } ) } \\ { \infty } & { \mathrm { w . p . ~ } 1 - ( 1 - \delta _ { 1 } ) ( 1 - \delta _ { 2 } ) \cdots ( 1 - \delta _ { k } ) . } \end{array} \right. } \end{array}
227
+ $$
228
+
229
+ Therefore we can use Algorithm 1 to approximate the distribution of $Y _ { 1 } ^ { \prime } + Y _ { 2 } ^ { \prime } + \cdots + Y _ { k } ^ { \prime }$ , and use it to approximate the distribution of $Y _ { 1 } + Y _ { 2 } + \cdots + Y _ { k }$ .
230
+
231
+ # 5 Error analysis
232
+
233
+ To analyze the discretization error, we introduce the notion of coupling approximation, a variant of Wasserstein distance. Intuitively, a good coupling approximation is a coupling where the two random variables are close to each other with high probability.
234
+
235
+ Definition 5.1 (coupling approximation). Given two random variables $Y _ { 1 } , Y _ { 2 }$ , we write $| Y _ { 1 } - Y _ { 2 } | \leq _ { \eta }$ h if there exists a coupling between $Y _ { 1 } , Y _ { 2 }$ such that $\operatorname* { P r } [ | Y _ { 1 } - Y _ { 2 } | > h ] \leq \eta$ .
236
+
237
+ The following lemma shows that if we have a good coupling approximation $\widetilde { Y }$ to a PRV $Y$ , then the privacy curves $\delta _ { Y } ( \varepsilon )$ and $\delta _ { \widetilde { Y } } ( \varepsilon )$ should be close.
238
+
239
+ Lemma 5.2. If $Y$ and $\widetilde { Y }$ are two random variables such that $| Y - { \widetilde { Y } } | \leq _ { \eta } h ,$ , then for every $\varepsilon \in \mathbb { R } ,$
240
+
241
+ $$
242
+ \delta _ { \widetilde { Y } } ( \varepsilon + h ) - \eta \leq \delta _ { Y } ( \varepsilon ) \leq \delta _ { \widetilde { Y } } ( \varepsilon - h ) + \eta .
243
+ $$
244
+
245
+ Proof. By Theorem 3.2, $\delta _ { Y } ( \varepsilon ) = \operatorname* { P r } [ Y \geq \varepsilon + Z ]$ and hence
246
+
247
+ $$
248
+ \begin{array} { r l } & { \delta _ { Y } ( \varepsilon ) = \operatorname* { P r } [ Y - \widetilde { Y } + \widetilde { Y } \geq \varepsilon + Z ] } \\ & { \qquad \leq \operatorname* { P r } [ Y - \widetilde { Y } \geq h ] + \operatorname* { P r } [ \widetilde { Y } \geq \varepsilon - h + Z ] } \\ & { \qquad \leq \eta + \delta _ { \widetilde { Y } } ( \varepsilon - h ) . } \end{array}
249
+ $$
250
+
251
+ Similarly, we have $\delta _ { \widetilde { Y } } ( \varepsilon ) \leq \eta + \delta _ { Y } ( \varepsilon - h )$ for all $\varepsilon \in \mathbb { R }$
252
+
253
+ Therefore the goal of our analysis is to show that the ComposePRV algorithm finds a good coupling approximation $\widetilde { Y }$ to $Y = { \dot { \sum _ { i = 1 } ^ { k } } } Y _ { i }$ . We first show that the DiscretizePRV algorithm computes a good coupling approximation to the PRVs and crucially, it preserves the expected value after truncation. Lemma D.5 shows that $| \widetilde { Y } - Y ^ { L } | \le _ { 0 } h$ where $\widetilde { Y }$ is the approximation of a PRV $Y$ output by Algorithm 2 and $Y ^ { L }$ is the truncation of $Y$ to $[ - L , L ]$ .
254
+
255
+ We then use the following key lemma which shows that when we add independent coupling approximations (where expected values match), we get a much better coupling approximation than what the triangle inequality predicts.
256
+
257
+ Lemma 5.3. Suppose $Y _ { 1 } , Y _ { 2 } , \ldots , Y _ { k }$ and $\widetilde { Y } _ { 1 } , \widetilde { Y } _ { 2 } , \ldots , \widetilde { Y } _ { k }$ are two collections of independent random variables such that $| Y _ { i } - \widetilde { Y } _ { i } | \le _ { 0 } h$ and $\mathbb { E } [ Y _ { i } ] = \mathbb { E } [ \widetilde { Y } _ { i } ]$ for all $i$ , then
258
+
259
+ $$
260
+ \left| \sum _ { i = 1 } ^ { k } Y _ { i } - \sum _ { i = 1 } ^ { k } { \widetilde { Y } } _ { i } \right| \leq _ { \eta } h { \sqrt { 2 k \log { \frac { 2 } { \eta } } } } .
261
+ $$
262
+
263
+ Proof. Let $X _ { i } = Y _ { i } - \widetilde { Y } _ { i }$ where $( Y _ { i } , \widetilde { Y _ { i } } )$ are coupled such that $| Y _ { i } { - } \widetilde { Y } _ { i } | \leq h$ w.p. 1. Then $X _ { i } \in [ - h , h ]$ w.p. 1. Note that $X _ { 1 } , X _ { 2 } , \ldots , X _ { k }$ are independent of each other. By Hoeffding’s inequality,
264
+
265
+ $$
266
+ \operatorname* { P r } \left[ \left| \sum _ { i } X _ { i } \right| \geq t \right] \leq 2 \exp \left( - { \frac { 2 t ^ { 2 } } { k ( 2 h ) ^ { 2 } } } \right) = \eta
267
+ $$
268
+
269
+ if we set $t = h \sqrt { 2 k \log \frac { 2 } { \eta } }$
270
+
271
+ This lemma shows that the error of $k$ times composition is around $\sqrt { k } \cdot h$ and hence setting $h \approx 1 / \sqrt { k }$ gives small enough error. Next, we bound the domain size $L$ . Naively, the domain size $L$ should be of the order of $\sqrt { k }$ because $Y$ is the sum of $k$ independent random variables with each bounded by a constant. In the supplementary material, we prove a tighter tail bound of $Y$ .
272
+
273
+ Lemma 5.4. Let $( X , Y )$ be the privacy random variables for a $( \varepsilon , \delta )$ -DP algorithm, then for any $t \geq 0$ , we have
274
+
275
+ $$
276
+ \operatorname* { P r } [ | Y | \geq \varepsilon + t ] \leq { \frac { \delta \left( 1 + e ^ { - \varepsilon - t } \right) } { 1 - e ^ { - t } } } .
277
+ $$
278
+
279
+ This shows that $\begin{array} { r } { \operatorname* { P r } [ | Y | \ge \varepsilon + 2 ] \le \frac { 4 } { 3 } \delta } \end{array}$ and hence truncating the domain with $L = 2 + \varepsilon$ only introduces an additive $\delta$ error in the privacy curve. Therefore, if the composition satisfies a good privacy guarantee (namely $\varepsilon = O ( 1 )$ for small enough $\delta$ ), we can truncate the domain at $L = \Theta ( 1 )$ . Together with the fact that mesh size is $1 / \sqrt { k }$ , this gives a $O ( { \sqrt { k } } )$ -time algorithm for computing the privacy curve when we compose the same mechanism with itself $k$ times. The following theorem gives a formal statement of the error bounds of our algorithm, it is proved in the supplementary material.
280
+
281
+ Theorem 5.5. Let $\varepsilon _ { \mathrm { e r r o r } }$ , $\delta _ { \mathrm { { e r r o r } } } > 0$ be some fixed error terms. Let $\mathcal { M } _ { 1 } , \mathcal { M } _ { 2 } , \ldots , \mathcal { M } _ { k }$ be $D P$ algorithms with privacy curves $\delta _ { { \cal M } _ { i } } ( \varepsilon )$ . Let $Y _ { i }$ be the PRV corresponding to $\mathcal { M } _ { i }$ such that $\delta _ { { \cal M } _ { i } } ( \varepsilon ) =$ $\delta _ { Y _ { i } } ( \varepsilon )$ for $\varepsilon \geq 0$ . Let $\mathcal { M }$ be the (adaptive) composition of $\mathcal { M } _ { 1 } , \mathcal { M } _ { 2 } , \ldots , \mathcal { M } _ { k }$ and let $\delta _ { \mathcal { M } } ( \varepsilon )$ be its privacy curve. Set $L \ge 2 + \varepsilon _ { \mathrm { e r r o r } }$ sufficiently large such that
282
+
283
+ $$
284
+ \sum _ { i = 1 } ^ { k } \delta _ { \mathcal { M } _ { i } } ( L - 2 ) \leq \frac { \delta _ { \mathrm { e r r o r } } } { 8 } a n d \delta _ { \mathcal { M } } ( L - 2 - \varepsilon _ { \mathrm { e r r o r } } ) \leq \frac { \delta _ { \mathrm { e r r o r } } } { 4 } .
285
+ $$
286
+
287
+ Let $\widetilde { Y }$ be the approximation of $\textstyle Y = \sum _ { i = 1 } ^ { k } Y _ { i }$ produced by ComposePRV algorithm with mesh size
288
+
289
+ $$
290
+ h = { \frac { \varepsilon _ { \mathrm { e r r o r } } } { \sqrt { { \frac { k } { 2 } } \log { \frac { 1 2 } { \delta _ { \mathrm { e r r o r } } } } } } } .
291
+ $$
292
+
293
+ Then
294
+
295
+ $$
296
+ \delta _ { \widetilde { Y } } ( \varepsilon + \varepsilon _ { \mathrm { e r r o r } } ) - \delta _ { \mathrm { e r r o r } } \leq \delta _ { Y } ( \varepsilon ) = \delta _ { \mathcal { M } } ( \varepsilon ) \leq \delta _ { \widetilde { Y } } ( \varepsilon - \varepsilon _ { \mathrm { e r r o r } } ) + \delta _ { \mathrm { e r r o r } } .
297
+ $$
298
+
299
+ Furthermore, our algorithm takes $O \left( b { \frac { L } { h } } \log \left( { \frac { L } { h } } \right) \right)$ time where $b$ is the number of distinct algorithms among $\mathcal { M } _ { 1 } , \mathcal { M } _ { 2 } , \ldots , \mathcal { M } _ { k }$ .
300
+
301
+ Remark 5.6. A simple way to set $L$ such that the condition (7) holds is by choosing an $L$ such that:
302
+
303
+ $$
304
+ L \geq 2 + \operatorname* { m a x } \left\{ \varepsilon _ { \mathrm { e r r o r } } + \varepsilon _ { \mathcal { M } } \left( \frac { \delta _ { \mathrm { e r r o r } } } { 4 } \right) , \operatorname* { m a x } _ { i \in [ k ] } \varepsilon _ { \mathcal { M } _ { i } } \left( \frac { \delta _ { \mathrm { e r r o r } } } { 8 k } \right) \right\}
305
+ $$
306
+
307
+ where $\varepsilon _ { \mathcal { A } } ( \delta )$ is the inverse of $\delta _ { \mathcal { A } } ( \varepsilon )$ . To set the value of $L$ , we do not need the exact value of $\varepsilon _ { \mathcal { M } }$ $( o r \varepsilon _ { \mathcal { M } _ { i } } ,$ ). We only need an upper bound on $\varepsilon _ { \mathcal { M } }$ , which can often by obtained by using the $R D P$ Accountant or any other method to derive upper bounds on privacy.
308
+
309
+ # 6 Experiments
310
+
311
+ We demonstrate the utility of our composition method by computing the privacy curves for the DP-SGD algorithm, which is one of the most important algorithms in differential privacy.
312
+
313
+ The DP-SGD algorithm $[ \mathsf { A C G } ^ { + } 1 6 ]$ is a variant of stochastic gradient descent with $k$ steps. In each step, the algorithm selects a $p$ fraction of training examples uniformly at random. The algorithm adds a Gaussian vector with variance $\propto \sigma ^ { 2 }$ to the clipped gradient of the selected batch. Then it performs a gradient step (or any other iterative methods) using the noisy gradient computed. The privacy loss of DP-SGD involves composing the privacy curve of each iteration with itself $k$ times. The PRVs for each iteration have a closed form and depend only $p , \sigma$ (see supplementary material). Our algorithms use this closed form of PRVs.
314
+
315
+ ![](images/dd651af1c46cfcf948587466619d538bd872fe0785ba6d83d42653f689a3929f.jpg)
316
+ Figure 2: Setting $p = 1$ and comparing to the analytical solution (10).
317
+
318
+ See Figure 1(b) for the comparison between our algorithm and the GDP and RDP Accountant. Our method provides a lower and upper bound of the privacy curve according to (8). In Figure 1(a), we compare our algorithm with [KJPH21] (implemented in [KP21]). Under the same mesh size, our algorithm computes a much closer upper and lower bound.
319
+
320
+ We validate our program for the case $p = 1$ . When $p = 1$ , we have an exact formula for
321
+
322
+ $$
323
+ \delta ( \varepsilon ) = \Phi \left( - { \frac { \varepsilon } { \mu } } + { \frac { \mu } { 2 } } \right) - e ^ { \varepsilon } \Phi \left( - { \frac { \varepsilon } { \mu } } - { \frac { \mu } { 2 } } \right)
324
+ $$
325
+
326
+ where the bo $\textstyle \mu = { \frac { \sqrt { k } } { \sigma } }$ . In Figure 2, we show that the true privacy curve is indeed sandwicompute and that the vertical distance between our bounds is indeed etweenwith a $2 \varepsilon _ { \mathrm { e r r o r } }$ neglible δerror of 10−10.
327
+
328
+ Floating point errors Note that our error analysis in Section 5 ignores floating point errors. This is because they are negligible compared to the discretization and truncation errors we analyzed in Section 5 for the range of $\delta$ we are interested in. See supplementary material for more details.
329
+
330
+ # 6.1 Comparison with [KJPH21]
331
+
332
+ ![](images/ca0b62a1d9d64fe917e548bfcb7e7c09e98d280fde0ba10ba8c592a3576fb941.jpg)
333
+ Figure 3: (a) Comparison of error bounds of $\delta$ with varying number of discretisation points for $p = 4 \times 1 0 ^ { - 3 } , \sigma = 0 . 8 , \varepsilon = 1 . 5 , k = 1 0 0 0$ . (b) Comparing runtimes for our algorithm with that of [KJPH21] when aligned on accuracy for $\sigma = 0 . 8$ , $p = \dot { 4 } \times \dot { 1 } 0 ^ { - 3 }$ . We can see a significant reduction in runtime in particular for large number of DPSGD steps. We were not able to run the algorithm of [KJPH21] beyond 2,000 steps, since it becomes unstable beyond that point.7. We also plot the speed up directly on the secondary $y$ -axis.
334
+
335
+ In this section, we provide more results demonstrating the practical use of our algorithm. We compare runtimes of our algorithm with [KJPH21], which is the state-of-the-art, for typical values of privacy parameters $\mathit { \check { \sigma } } = 0 . 8$ , $p = 4 \times 1 0 ^ { - 3 }$ , $\varepsilon = 1 . 5$ ). See Figure 3(a) for the effect of the number of discretisation points $n$ on the accuracy of $\delta$ . Our algorithm requires about a few orders of magnitude smaller number of discretization points to converge compared to the algorithm of [KJPH21].
336
+
337
+ In order to compare runtimes, we align the accuracy of both FFT algorithms. We set numerical parameters (number of discretization bins and domain length) such that both algorithms give similarly accurate bounds and verify it visually. Figure 3(b) shows a significant speedup (100x) using our algorithms. We note that runtimes are directly proportional to the memory required by the algorithms and so a separate memory analysis is not required; the runtime and memory are dominated by the number of points in the discretization of PRV. All experiments are performed on a Intel Xeon W-2155 CPU with 3.30GHz with 128GB of memory.
338
+
339
+ # Acknowledgments and Disclosure of Funding
340
+
341
+ We would like to thank Janardhan Kulkarni and Sergey Yekhanin for several useful discussions and encouraging us to work on this problem. L.W. would like to thank Daniel Jones and Victor Rühle for fruitful discussions and helpful guidance.
342
+
343
+ References
344
+ $[ \mathrm { A C G ^ { + } } 1 6 ]$ Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security, pages 308–318, 2016.
345
+ [BDLS19] Zhiqi Bu, Jinshuo Dong, Qi Long, and Weijie J. Su. Deep learning with gaussian differential privacy, 2019.
346
+ [BDRS18] Mark Bun, Cynthia Dwork, Guy N Rothblum, and Thomas Steinke. Composable and versatile privacy via truncated cdp. In Proceedings of the 50th Annual ACM SIGACT Symposium on Theory of Computing, pages 74–86, 2018.
347
+ $[ \mathrm { B G K } ^ { + } 2 1 ]$ Zhiqi Bu, Sivakanth Gopi, Janardhan Kulkarni, Yin Tat Lee, Judy Hanwen Shen, and Uthaipon Tantipongpipat. Fast and memory efficient differentially private-sgd via jl projections. arXiv preprint arXiv:2102.03013, 2021. [BS16] Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and lower bounds. In Theory of Cryptography Conference, pages 635–658. Springer, 2016. [BW18] Borja Balle and Yu-Xiang Wang. Improving the gaussian mechanism for differential privacy: Analytical calibration and optimal denoising. In International Conference on Machine Learning, pages 403–412, 2018.
348
+ $[ \mathrm { D K M ^ { + } } 0 6 ]$ Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data, ourselves: Privacy via distributed noise generation. In Annual International Conference on the Theory and Applications of Cryptographic Techniques, pages 486– 503. Springer, 2006. [DL09] Cynthia Dwork and Jing Lei. Differential privacy and robust statistics. In Proceedings of the forty-first annual ACM symposium on Theory of computing, pages 371–380, 2009.
349
+ [DMNS06] Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Theory of Cryptography Conference, pages 265–284. Springer, 2006. $[ \mathrm { D R } ^ { + } 1 4 ]$ Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations and Trends $\textsuperscript { \textregistered }$ in Theoretical Computer Science, 9(3–4):211–407, 2014. [DR16] Cynthia Dwork and Guy N Rothblum. Concentrated differential privacy. arXiv preprint arXiv:1603.01887, 2016. [DRS19] Jinshuo Dong, Aaron Roth, and Weijie J. Su. Gaussian differential privacy, 2019. [DRV10] Cynthia Dwork, Guy N Rothblum, and Salil Vadhan. Boosting and differential privacy. In 2010 IEEE 51st Annual Symposium on Foundations of Computer Science, pages 51–60. IEEE, 2010. [KH21] Antti Koskela and Antti Honkela. Computing differential privacy guarantees for heterogeneous compositions using fft. arXiv preprint arXiv:2102.12412, 2021.
350
+ $[ \mathrm { K J H } ^ { + } 2 0 ]$ Antti Koskela, Joonas Jälkö, Antti Honkela, et al. Computing tight differential privacy guarantees using fft. In Proceedings of the Twenty Third International Conference on Artificial Intelligence and Statistics. AISTATS, 2020.
351
+ [KJPH21] Antti Koskela, Joonas Jälkö, Lukas Prediger, and Antti Honkela. Tight differential privacy for discrete-valued mechanisms and for the subsampled gaussian mechanism using fft. In Arindam Banerjee and Kenji Fukumizu, editors, Proceedings of The 24th International Conference on Artificial Intelligence and Statistics, volume 130 of Proceedings of Machine Learning Research, pages 3358–3366. PMLR, 13–15 Apr 2021.
352
+ [KOV15] Peter Kairouz, Sewoong Oh, and Pramod Viswanath. The composition theorem for differential privacy. In International conference on machine learning, pages 1376–1385. PMLR, 2015. [KP21] Antti Koskela and Lukas Prediger. Github repository for fourier accountant. https: //github.com/DPBayes/PLD-Accountant, 2021. [Mir17] Ilya Mironov. Rényi differential privacy. In 2017 IEEE 30th Computer Security Foundations Symposium (CSF), pages 263–275. IEEE, 2017.
353
+ [MM18] Sebastian Meiser and Esfandiar Mohammadi. Tight on budget? tight bounds for r-fold approximate differential privacy. In Proceedings of the 2018 ACM SIGSAC Conference on Computer and Communications Security, pages 247–264, 2018. [MV16] Jack Murtagh and Salil Vadhan. The complexity of computing the optimal composition of differential privacy. In Theory of Cryptography Conference, pages 157–175. Springer, 2016.
354
+ [SMM19] David M Sommer, Sebastian Meiser, and Esfandiar Mohammadi. Privacy loss classes: The central limit theorem in differential privacy. Proceedings on privacy enhancing technologies, 2019(2):245–269, 2019.
355
+ [ZDW21] Yuqing Zhu, Jinshuo Dong, and Yu-Xiang Wang. Optimal accounting of differential privacy via characteristic function. arXiv preprint arXiv:2106.08567, 2021.
parse/train/GSXEx6iYd0/GSXEx6iYd0_content_list.json ADDED
@@ -0,0 +1,1650 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "Numerical Composition of Differential Privacy∗ ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 214,
8
+ 122,
9
+ 792,
10
+ 147
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Sivakanth Gopi Microsoft Research sigopi@microsoft.com ",
17
+ "bbox": [
18
+ 184,
19
+ 200,
20
+ 357,
21
+ 243
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "Yin Tat Lee University of Washington yintat@uw.edu ",
28
+ "bbox": [
29
+ 375,
30
+ 200,
31
+ 545,
32
+ 243
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "Lukas Wutschitz Microsoft lukas.wutschitz@microsoft.com ",
39
+ "bbox": [
40
+ 562,
41
+ 200,
42
+ 813,
43
+ 242
44
+ ],
45
+ "page_idx": 0
46
+ },
47
+ {
48
+ "type": "text",
49
+ "text": "Abstract ",
50
+ "text_level": 1,
51
+ "bbox": [
52
+ 462,
53
+ 279,
54
+ 535,
55
+ 295
56
+ ],
57
+ "page_idx": 0
58
+ },
59
+ {
60
+ "type": "text",
61
+ "text": "We give a fast algorithm to optimally compose privacy guarantees of differentially private (DP) algorithms to arbitrary accuracy. Our method is based on the notion of privacy loss random variables to quantify the privacy loss of DP algorithms. The running time and memory needed for our algorithm to approximate the privacy√ curve of a DP algorithm composed with itself $k$ times is $\\bar { \\tilde { O } } ( { \\sqrt { k } } )$ . This improves over the best prior method by [KH21] which requires $\\tilde { \\Omega } ( k ^ { 1 . 5 } )$ running time. We demonstrate the utility of our algorithm by accurately computing the privacy loss of DP-SGD algorithm of Abadi et al. $[ \\mathsf { A C G } ^ { + } 1 6 ]$ and showing that our algorithm speeds up the privacy computations by a few orders of magnitude compared to prior work, while maintaining similar accuracy. ",
62
+ "bbox": [
63
+ 232,
64
+ 308,
65
+ 766,
66
+ 450
67
+ ],
68
+ "page_idx": 0
69
+ },
70
+ {
71
+ "type": "text",
72
+ "text": "1 Introduction ",
73
+ "text_level": 1,
74
+ "bbox": [
75
+ 174,
76
+ 472,
77
+ 310,
78
+ 489
79
+ ],
80
+ "page_idx": 0
81
+ },
82
+ {
83
+ "type": "text",
84
+ "text": "Differential privacy (DP) introduced by [DMNS06] provides a provable and quantifiable guarantee of privacy when the results of an algorithm run on private data are made public. Formally, we can define an $( \\varepsilon , \\delta )$ -differentially private algorithm as follows. ",
85
+ "bbox": [
86
+ 176,
87
+ 502,
88
+ 823,
89
+ 545
90
+ ],
91
+ "page_idx": 0
92
+ },
93
+ {
94
+ "type": "text",
95
+ "text": "Definition 1.1 ( $( \\varepsilon , \\delta )$ -DP [DMNS06, $\\mathrm { D K M ^ { + } 0 6 ] }$ ). An algorithm $\\mathcal { M }$ is $( \\varepsilon , \\delta )$ -DP if for any two neighboring databases $D , D ^ { \\prime }$ differing in exactly one user and any subset $S$ of outputs, we have $\\operatorname* { P r } [ \\mathcal { M } ( D ) \\in S ] \\le e ^ { \\varepsilon } \\operatorname* { P r } [ \\mathcal { M } ( D ^ { \\prime } ) \\in S ] + \\delta$ . ",
96
+ "bbox": [
97
+ 173,
98
+ 546,
99
+ 825,
100
+ 590
101
+ ],
102
+ "page_idx": 0
103
+ },
104
+ {
105
+ "type": "text",
106
+ "text": "Intuitively, it says that looking at the outcome of $\\mathcal { M }$ , we cannot tell whether it was run on $D$ or $D ^ { \\prime }$ . Hence an adversary cannot infer the existence of any particular user in the input database, and therefore cannot learn any personal data of any particular user. ",
107
+ "bbox": [
108
+ 174,
109
+ 598,
110
+ 825,
111
+ 640
112
+ ],
113
+ "page_idx": 0
114
+ },
115
+ {
116
+ "type": "text",
117
+ "text": "DP algorithms have an important property called composition. Suppose $M _ { 1 }$ and $M _ { 2 }$ are DP algorithms and say $M ( D ) = ( M _ { 1 } ( D ) , M _ { 2 } ( D ) )$ , i.e., $M$ runs both the algorithms on $D$ and outputs their results. Then $M$ is also a DP algorithm. ",
118
+ "bbox": [
119
+ 174,
120
+ 646,
121
+ 825,
122
+ 689
123
+ ],
124
+ "page_idx": 0
125
+ },
126
+ {
127
+ "type": "text",
128
+ "text": "Proposition 1.2 (Simple composition $\\mathrm { [ D K M ^ { + } 0 6 }$ , DL09]). If $M _ { 1 }$ is $( \\varepsilon _ { 1 } , \\delta _ { 1 } )$ -DP and $M _ { 2 }$ is $( \\varepsilon _ { 2 } , \\delta _ { 2 } )$ - $D P ,$ then $M ( D ) = ( \\bar { M } _ { 1 } ( D ) , \\bar { M } _ { 2 } ( D ) )$ is $( \\varepsilon _ { 1 } + \\varepsilon _ { 2 } , \\delta _ { 1 } + \\delta _ { 2 } ) – D P .$ . ",
129
+ "bbox": [
130
+ 171,
131
+ 690,
132
+ 825,
133
+ 720
134
+ ],
135
+ "page_idx": 0
136
+ },
137
+ {
138
+ "type": "text",
139
+ "text": "This also holds under adaptive composition (denoted by $M = M _ { 2 } \\circ M _ { 1 } )$ , where $M _ { 2 }$ can look at both the database and the output of $M _ { 1 }$ (here $M ( D ) = ( M _ { 1 } ( D ) , M _ { 2 } ( D , M _ { 1 } ( D ) ) ) )$ . It turns out that both compositions enjoy much better DP guarantees than this simple composition rule. Let $M$ be an $( \\varepsilon , \\delta )$ -DP algorithm and let $M ^ { \\circ k }$ denote the (adaptive) composition of $M$ with itself $k$ times. The naive composition rule shows that $M ^ { \\circ k }$ is $( k \\varepsilon , k \\delta )$ -DP. This was significantly improved in [DRV10]. ",
140
+ "bbox": [
141
+ 173,
142
+ 727,
143
+ 826,
144
+ 800
145
+ ],
146
+ "page_idx": 0
147
+ },
148
+ {
149
+ "type": "text",
150
+ "text": "Proposition 1.3 (Advanced composition [DRV10, $\\mathrm { D R } ^ { + } 1 4 ]$ ). If $M$ is $( \\varepsilon , \\delta )$ -DP, then $M ^ { \\circ k }$ is $( \\varepsilon ^ { \\prime } , k \\delta +$ $\\delta ^ { \\prime }$ )-DP where ",
151
+ "bbox": [
152
+ 171,
153
+ 801,
154
+ 826,
155
+ 830
156
+ ],
157
+ "page_idx": 0
158
+ },
159
+ {
160
+ "type": "equation",
161
+ "img_path": "images/786915f476a1670946c693ff5ae90c703a0a78e10296dab60fc04ea4cdfa4f8b.jpg",
162
+ "text": "$$\n\\varepsilon ^ { \\prime } = \\varepsilon \\sqrt { 2 k \\log \\left( \\frac { 1 } { \\delta ^ { \\prime } } \\right) } + k \\varepsilon ( e ^ { \\varepsilon } - 1 ) .\n$$",
163
+ "text_format": "latex",
164
+ "bbox": [
165
+ 377,
166
+ 829,
167
+ 619,
168
+ 872
169
+ ],
170
+ "page_idx": 0
171
+ },
172
+ {
173
+ "type": "text",
174
+ "text": "Note that if $\\begin{array} { r } { \\varepsilon = O \\left( \\frac { 1 } { \\sqrt { k } } \\right) } \\end{array}$ and $\\begin{array} { r } { \\delta = o \\left( \\frac { 1 } { k } \\right) } \\end{array}$ , then $M ^ { \\circ k }$ satisfies $( O _ { \\delta ^ { \\prime } } ( 1 ) , \\delta ^ { \\prime } )$ -DP. Using simple composition (Proposition 1.2), we can only claim that $M ^ { \\circ k }$ is $( O ( { \\sqrt { k } } ) , o ( 1 ) )$ -DP. Thus advanced composition often results in $\\sqrt { k }$ -factor savings in privacy which is significant in practice. The optimal DP guarantees for $k$ -fold composition of an $( \\varepsilon , \\delta )$ -DP algorithm were finally obtained by [KOV15]. For composing different algorithms, the situation is more complicated. If $M _ { 1 } , M _ { 2 } , \\ldots , M _ { k }$ are DP algorithms such that $M _ { i }$ is $( \\varepsilon _ { i } , \\delta _ { i } )$ -DP, then it is shown by [MV16] that computing the exact DP guarantees for $M = M _ { 1 } \\circ M _ { 2 } \\circ \\cdot \\cdot \\cdot \\circ M _ { k }$ is #P-complete. They also give an algorithm to approximate the DP guarantees of $M$ to desired accuracy $\\eta$ which runs in ",
175
+ "bbox": [
176
+ 173,
177
+ 88,
178
+ 826,
179
+ 214
180
+ ],
181
+ "page_idx": 1
182
+ },
183
+ {
184
+ "type": "equation",
185
+ "img_path": "images/fe54608e491e192096fe4984b697023884f0947310bb9fc0b11a2f012027ed6d.jpg",
186
+ "text": "$$\n\\tilde { O } \\left( \\frac { k ^ { 3 } \\bar { \\varepsilon } ( 1 + \\bar { \\varepsilon } ) } { \\eta } \\right)\n$$",
187
+ "text_format": "latex",
188
+ "bbox": [
189
+ 437,
190
+ 219,
191
+ 558,
192
+ 257
193
+ ],
194
+ "page_idx": 1
195
+ },
196
+ {
197
+ "type": "text",
198
+ "text": "time where $\\textstyle { \\bar { \\varepsilon } } = ( \\sum _ { i = 1 } ^ { k } \\varepsilon _ { i } ) / k$ .2 If each $\\begin{array} { r } { \\varepsilon _ { i } \\approx \\frac { 1 } { \\sqrt { k } } } \\end{array}$ (so that $M$ will satisfy reasonable privacy guarantees by advanced composition), then the running time is $\\tilde { O } ( k ^ { 2 . 5 } / \\eta )$ . ",
199
+ "bbox": [
200
+ 174,
201
+ 263,
202
+ 825,
203
+ 301
204
+ ],
205
+ "page_idx": 1
206
+ },
207
+ {
208
+ "type": "text",
209
+ "text": "In most situations, DP algorithms come with a collection of $( \\varepsilon , \\delta )$ -DP guarantees, i.e., for each value of $\\varepsilon$ , there exists $\\delta$ such that the algorithm is $( \\varepsilon , \\delta )$ -DP. ",
210
+ "bbox": [
211
+ 174,
212
+ 305,
213
+ 823,
214
+ 335
215
+ ],
216
+ "page_idx": 1
217
+ },
218
+ {
219
+ "type": "text",
220
+ "text": "Definition 1.4 (Privacy curve). A DP algorithm $M$ is said to have privacy curve $\\delta : \\mathbb { R } [ 0 , 1 ] ,$ if for every $\\varepsilon \\in \\mathbb { R }$ , $M$ is $( \\varepsilon , \\delta ( \\varepsilon ) ) \\lrcorner D P .$ ",
221
+ "bbox": [
222
+ 174,
223
+ 338,
224
+ 825,
225
+ 368
226
+ ],
227
+ "page_idx": 1
228
+ },
229
+ {
230
+ "type": "text",
231
+ "text": "For example the privacy curve of a Gaussian mechanism (with sensitivity 1 and noise scale $\\sigma$ ) is given by $\\delta ( \\varepsilon ) = \\Phi \\left( - \\varepsilon \\sigma + 1 / 2 \\sigma \\right) - e ^ { \\varepsilon } \\Phi \\left( - \\varepsilon \\sigma - 1 / 2 \\sigma \\right)$ where $\\Phi ( \\cdot )$ is the Gaussian CDF [BW18]. Suppose we want to compose several Gaussian mechanisms, which $( \\varepsilon , \\delta )$ -DP guarantee should we choose for each mechanism? Any choice will lead to suboptimal DP guarantees for the final composition. Instead, we need a way to compose the privacy curves directly. This was suggested through the use of privacy region in [KOV15] and explicitly studied in the $f$ -DP framework of [DRS19]. $f$ -DP is a dual way (and equivalent) to look at the privacy curve $\\delta ( \\varepsilon )$ . ",
232
+ "bbox": [
233
+ 173,
234
+ 377,
235
+ 825,
236
+ 477
237
+ ],
238
+ "page_idx": 1
239
+ },
240
+ {
241
+ "type": "text",
242
+ "text": "Independently, an algorithm called Privacy Buckets for approximately composing privacy curves using the notion of was initiated in [MM18]. This algorithm depends on the notion of Privacy Loss Random Variable (PRV) [DR16], whose distribution is called Privacy Loss Distribution (PLD). For any DP-algorithm, one can associate a PRV and the privacy curve of that algorithm can be easily obtained from the PRV. The really useful property of PRVs is that under adaptive composition, they just add up; the PRV $Y$ of the composition $M = M _ { 1 } \\circ M _ { 2 } \\circ \\cdots \\circ M _ { k }$ is given by $\\begin{array} { r } { \\bar { Y } = \\sum _ { i = 1 } ^ { k } \\bar { Y _ { i } } } \\end{array}$ where $Y _ { i }$ is the PRV of $M _ { i }$ .3 Therefore, one can find the distribution of $Y$ by the convolution of the distributions of $Y _ { 1 } , Y _ { 2 } , \\ldots , Y _ { k }$ . In an important paper, $[ \\mathrm { K J H ^ { + } } 2 0 ]$ proposed that one can speed up the convolutions using Fast Fourier Transform (FFT). Explicit error bounds were obtained for the approximation obtained by their algorithm in $[ \\mathrm { K J H ^ { + } } 2 0 $ , KJPH21, KH21]. The running time of this algorithm was analyzed in [KH21] where it was shown that the privacy curve $\\delta _ { M } ( \\varepsilon )$ of $M = M _ { 1 } \\circ M _ { 2 } \\circ \\cdot \\cdot \\cdot \\circ M _ { k }$ can be computed up to an additive error of $\\delta _ { \\mathrm { e r r o r } }$ in time ",
243
+ "bbox": [
244
+ 173,
245
+ 481,
246
+ 825,
247
+ 652
248
+ ],
249
+ "page_idx": 1
250
+ },
251
+ {
252
+ "type": "equation",
253
+ "img_path": "images/92d1f198d0aa1f21006d24cdc838d47dd7e695dd1b43a7c893bbfce9d51a2417.jpg",
254
+ "text": "$$\n\\tilde { O } \\left( \\frac { k ^ { 3 } \\bar { \\varepsilon } } { \\delta _ { \\mathrm { e r r o r } } } \\right) ,\n$$",
255
+ "text_format": "latex",
256
+ "bbox": [
257
+ 452,
258
+ 659,
259
+ 544,
260
+ 695
261
+ ],
262
+ "page_idx": 1
263
+ },
264
+ {
265
+ "type": "text",
266
+ "text": "if each algorithm $M _ { i }$ is satisfies $( \\varepsilon _ { i } , 0 )$ -DP and $\\begin{array} { r } { \\bar { \\varepsilon } = \\frac { 1 } { k } \\sum _ { i = 1 } ^ { k } \\varepsilon _ { i } } \\end{array}$ . Assuming that each $\\begin{array} { r } { \\varepsilon _ { i } \\approx \\frac { 1 } { \\sqrt { k } } } \\end{array}$ , we get $\\tilde { O } ( k ^ { 2 . 5 } / \\delta _ { \\mathrm { e r r o r } } )$ running time. Note that this is slightly worse than (1), where the denominator $\\eta$ is the multiplicative error in $\\delta _ { M }$ . When composing the same algorithm with itself for $k$ times, the running time can be improved to $\\begin{array} { r } { \\tilde { O } \\left( \\frac { k ^ { 2 } \\bar { \\varepsilon } } { \\delta _ { \\mathrm { e r r o r } } } \\right) } \\end{array}$ , which is $\\begin{array} { r } { \\tilde { O } \\left( \\frac { k ^ { 1 . 5 } } { \\delta _ { \\mathrm { e r r o r } } } \\right) } \\end{array}$ when ε¯ = √1k . ",
267
+ "bbox": [
268
+ 173,
269
+ 702,
270
+ 825,
271
+ 777
272
+ ],
273
+ "page_idx": 1
274
+ },
275
+ {
276
+ "type": "text",
277
+ "text": "Moments Accountant and Renyi DP In an influential paper where they introduce Differentially Private Deep Learning, $[ \\mathsf { A C G } ^ { + } 1 6 ]$ proposed a method called the Moments Accountant (MA) for giving an upper bound the privacy curve of a composition of DP algorithms. They applied their method to bound the privacy loss of differentially private Stochastic Gradient Descent (DP-SGD) algorithm which they introduced. Analyzing the privacy loss of DP-SGD involves composing the privacy curve of each iteration of training with itself $k$ times, where $k$ is the total of number of training iterations. Typical values of $k$ range from 1000 to 300000 (such as when training large models like GPT3). The Moments Accountant was subsumed into the framework of Renyi Differential Privacy (RDP) introduced by [Mir17]. The running time of these accountants are independent of $k$ , but they only give an upper bound and cannot approximate the privacy curve to arbitrary accuracy. ",
278
+ "bbox": [
279
+ 173,
280
+ 790,
281
+ 825,
282
+ 861
283
+ ],
284
+ "page_idx": 1
285
+ },
286
+ {
287
+ "type": "text",
288
+ "text": "",
289
+ "bbox": [
290
+ 174,
291
+ 90,
292
+ 825,
293
+ 161
294
+ ],
295
+ "page_idx": 2
296
+ },
297
+ {
298
+ "type": "text",
299
+ "text": "DP-SGD is one of the most important DP algorithms in practice, because one can use it to train neural networks to achieve good privacy-vs-utility tradeoffs. Therefore obtaining accurate and tight privacy guarantees for DP-SGD is important. For example reducing $\\varepsilon$ from 2 to 1, can mean that one can train the network for 4 times more epochs while staying within the same privacy budget. Therefore DP-SGD is one of the main motivations for this work. ",
300
+ "bbox": [
301
+ 174,
302
+ 166,
303
+ 825,
304
+ 237
305
+ ],
306
+ "page_idx": 2
307
+ },
308
+ {
309
+ "type": "text",
310
+ "text": "There are also situations when the PRVs do not have bounded moments and so Moments Accountant or Renyi DP cannot be applied for analyzing privacy. An example of such an algorithm is the DP-SGD-JL algorithm of $[ \\mathrm { B G K } ^ { + } 2 1 ]$ which uses numerical composition of PRVs to analyze privacy. ",
311
+ "bbox": [
312
+ 174,
313
+ 242,
314
+ 825,
315
+ 285
316
+ ],
317
+ "page_idx": 2
318
+ },
319
+ {
320
+ "type": "text",
321
+ "text": "GDP Accountant [DRS19, BDLS19] introduced the notion of Gaussian Differential Privacy (GDP) and used it to develop an accountant for DP-SGD. The accountant is based on central limit theorem and only gives an approximation to the true privacy curve, where the approximation gets better with $k$ . But as we show in Figure 1, GDP accountant can significantly underreport the true epsilon value. ",
322
+ "bbox": [
323
+ 173,
324
+ 297,
325
+ 825,
326
+ 356
327
+ ],
328
+ "page_idx": 2
329
+ },
330
+ {
331
+ "type": "text",
332
+ "text": "Several different notions of privacy were introduced for obtaining good upper bounds on the privacy curve of composition of DP algorithms such as Concentrated DP (CDP) [DR16, BS16], Truncated CDP [BDRS18] etc. None of these methods can approximate the privacy curve of compositions to arbitrary accuracy. The notion of $f$ -DP introduced by [DRS19], allows for a lossless composition theorem, but computing the privacy curve of composition seems computationally hard and they do not give any algorithms for doing it. ",
333
+ "bbox": [
334
+ 173,
335
+ 361,
336
+ 825,
337
+ 445
338
+ ],
339
+ "page_idx": 2
340
+ },
341
+ {
342
+ "type": "text",
343
+ "text": "1.1 Our Contributions ",
344
+ "text_level": 1,
345
+ "bbox": [
346
+ 174,
347
+ 460,
348
+ 344,
349
+ 474
350
+ ],
351
+ "page_idx": 2
352
+ },
353
+ {
354
+ "type": "text",
355
+ "text": "The main contribution of this work is a new algorithm with an improved analysis for computing the privacy curve of the composition of a large number of DP algorithms. ",
356
+ "bbox": [
357
+ 174,
358
+ 486,
359
+ 821,
360
+ 513
361
+ ],
362
+ "page_idx": 2
363
+ },
364
+ {
365
+ "type": "text",
366
+ "text": "Theorem 1.5 (Informal version of Theorem 5.5). Suppose $M _ { 1 } , M _ { 2 } , \\ldots , M _ { k }$ are $D P$ algorithms. Then the privacy curve $\\delta _ { M } ( \\varepsilon )$ of adaptive composition $M = M _ { 1 } \\circ M _ { 2 } \\circ \\cdot \\cdot \\cdot \\circ M _ { k }$ can be approximated in time ",
367
+ "bbox": [
368
+ 173,
369
+ 517,
370
+ 823,
371
+ 558
372
+ ],
373
+ "page_idx": 2
374
+ },
375
+ {
376
+ "type": "equation",
377
+ "img_path": "images/a23daebc6a82f5e56b371deea0422bec77d6376c25750e49ae0d14fb50fd84a3.jpg",
378
+ "text": "$$\nO \\left( \\frac { \\varepsilon _ { \\mathrm { u p p e r } } k ^ { 1 . 5 } \\log k \\sqrt { \\log \\frac { 1 } { \\delta _ { \\mathrm { e r r o r } } } } } { \\varepsilon _ { \\mathrm { e r r o r } } } \\right) ,\n$$",
379
+ "text_format": "latex",
380
+ "bbox": [
381
+ 377,
382
+ 555,
383
+ 617,
384
+ 606
385
+ ],
386
+ "page_idx": 2
387
+ },
388
+ {
389
+ "type": "text",
390
+ "text": "where $\\varepsilon _ { \\mathrm { e r r o r } }$ is the additive error in $\\varepsilon$ , $\\delta _ { \\mathrm { e r r o r } }$ is the additive error in $\\delta$ and $\\varepsilon _ { \\mathrm { u p p e r } }$ is an upper bound on max $\\begin{array} { r } { \\left\\{ \\varepsilon _ { M } ( \\delta _ { \\mathrm { e r r o r } } ) , \\mathrm { m a x } _ { i } \\varepsilon _ { M _ { i } } \\left( \\frac { \\delta _ { \\mathrm { e r r o r } } } { k } \\right) \\right\\} } \\end{array}$ . 4 ",
391
+ "bbox": [
392
+ 173,
393
+ 608,
394
+ 826,
395
+ 642
396
+ ],
397
+ "page_idx": 2
398
+ },
399
+ {
400
+ "type": "text",
401
+ "text": "If each $M _ { i }$ satisfies $\\scriptstyle \\left( { \\frac { 1 } { \\sqrt { k } } } , { \\frac { o ( 1 ) } { k } } \\right)$ -DP, then by advanced composition (Proposition 1.3), we can set $\\varepsilon _ { \\mathrm { u p p e r } } = O ( 1 )$ . Therefore the running time of our algorithm in this case is $\\tilde { O } \\left( \\frac { k ^ { 1 . 5 } \\sqrt { \\log \\frac { 1 } { \\delta _ { \\mathrm { e r r o r } } } } } { \\varepsilon _ { \\mathrm { e r r o r } } } \\right)$ . We can save a factor of $k$ , when we compose the same algorithm with itself $k$ times. ",
402
+ "bbox": [
403
+ 173,
404
+ 650,
405
+ 826,
406
+ 728
407
+ ],
408
+ "page_idx": 2
409
+ },
410
+ {
411
+ "type": "text",
412
+ "text": "Theorem 1.6. Suppose $M$ is a DP algorithm. Then the privacy curve $\\delta _ { M ^ { \\circ } k } ( \\varepsilon )$ of $M$ (adaptively) composed with itself $k$ times can be approximated in time ",
413
+ "bbox": [
414
+ 171,
415
+ 729,
416
+ 825,
417
+ 758
418
+ ],
419
+ "page_idx": 2
420
+ },
421
+ {
422
+ "type": "equation",
423
+ "img_path": "images/82c6e1e703e748d79c0ecf5c52e660855da93a9e247debedfbde657537e0646c.jpg",
424
+ "text": "$$\nO \\left( \\frac { \\varepsilon _ { \\mathrm { u p p e r } } k ^ { \\frac { 1 } { 2 } } \\log k \\sqrt { \\log \\frac { 1 } { \\delta _ { \\mathrm { e r r o r } } } } } { \\varepsilon _ { \\mathrm { e r r o r } } } \\right) ,\n$$",
425
+ "text_format": "latex",
426
+ "bbox": [
427
+ 382,
428
+ 763,
429
+ 614,
430
+ 815
431
+ ],
432
+ "page_idx": 2
433
+ },
434
+ {
435
+ "type": "text",
436
+ "text": "where $\\varepsilon _ { \\mathrm { e r r o r } }$ is the additive error in $\\varepsilon$ , $\\delta _ { \\mathrm { e r r o r } }$ is the additive error in $\\delta$ and $\\varepsilon _ { \\mathrm { u p p e r } }$ is an upper bound on max $\\begin{array} { r } { \\left\\{ \\varepsilon _ { M ^ { \\circ k } } ( \\delta _ { \\mathrm { e r r o r } } ) , \\varepsilon _ { M } \\left( \\frac { \\delta _ { \\mathrm { e r r o r } } } { k } \\right) \\right\\} } \\end{array}$ . ",
437
+ "bbox": [
438
+ 174,
439
+ 819,
440
+ 823,
441
+ 853
442
+ ],
443
+ "page_idx": 2
444
+ },
445
+ {
446
+ "type": "text",
447
+ "text": "Thus we improve the state-of-the-art by at least a factor of $k$ in running time. We also note that our algorithm improves the memory required by a factor of $k$ . See Figure 1 for a comparison of our algorithm with that of [KJPH21]. Also note that RDP Accountant (equivalent to the Moments Accountant) significantly overestimates the true $\\varepsilon$ , while the GDP Accountant significantly underestimates the true $\\varepsilon$ . In contrast, the upper and lower bounds provided by our algorithm lie very close to each other. ",
448
+ "bbox": [
449
+ 173,
450
+ 859,
451
+ 825,
452
+ 888
453
+ ],
454
+ "page_idx": 2
455
+ },
456
+ {
457
+ "type": "text",
458
+ "text": "",
459
+ "bbox": [
460
+ 173,
461
+ 90,
462
+ 826,
463
+ 147
464
+ ],
465
+ "page_idx": 3
466
+ },
467
+ {
468
+ "type": "image",
469
+ "img_path": "images/8e9f81b58d5b20927335c64d5bde49592def1d97d29b397a5ab89e225d8706ef.jpg",
470
+ "image_caption": [],
471
+ "image_footnote": [],
472
+ "bbox": [
473
+ 178,
474
+ 159,
475
+ 454,
476
+ 314
477
+ ],
478
+ "page_idx": 3
479
+ },
480
+ {
481
+ "type": "image",
482
+ "img_path": "images/9d2af7302e29615a33af3e6ff3f26516bd66935578ca15397ae42aa3cec7bb70.jpg",
483
+ "image_caption": [
484
+ "(b) Our algorithm can improve significantly over the RDP Accountant. We also see that GDP Accountant can significantly underreport the true $\\varepsilon$ . We have set $\\varepsilon _ { \\mathrm { e r r o r } } = 0 . 1$ , $\\delta _ { \\mathrm { e r r o r } } = { \\bar { \\delta } } / 1 0 0 0$ here. "
485
+ ],
486
+ "image_footnote": [],
487
+ "bbox": [
488
+ 508,
489
+ 171,
490
+ 789,
491
+ 327
492
+ ],
493
+ "page_idx": 3
494
+ },
495
+ {
496
+ "type": "text",
497
+ "text": "(a) Our algorithm gives much closer upper and lower bounds on the true privacy curve compared to [KJPH21], under the same mesh size of $4 ~ \\times$ $1 0 ^ { - 5 }$ . Our upper and lower bounds are nearly coinciding. ",
498
+ "bbox": [
499
+ 173,
500
+ 321,
501
+ 468,
502
+ 385
503
+ ],
504
+ "page_idx": 3
505
+ },
506
+ {
507
+ "type": "text",
508
+ "text": "Figure 1: Case study on DP-SGD. Sampling probability $p = 1 0 ^ { - 3 }$ , noise scale $\\sigma = 0 . 8$ , $\\delta = 1 0 ^ { - 7 }$ ",
509
+ "bbox": [
510
+ 171,
511
+ 392,
512
+ 820,
513
+ 409
514
+ ],
515
+ "page_idx": 3
516
+ },
517
+ {
518
+ "type": "text",
519
+ "text": "Our Techniques Our algorithm (also the prior work of $\\mathrm { [ K J H ^ { + } 2 0 ] }$ ) proceeds by approximating the privacy loss random variables (PRVs) by truncating and discretizing them. We then use Fast Fourier Transform (FFT) to convolve the distributions efficiently. The main difference is in the approximation procedure and the error analysis. In the approximation procedure, we correct the approximation so that the expected value of the discretization matches with the expected value of the PRV. ",
520
+ "bbox": [
521
+ 173,
522
+ 433,
523
+ 825,
524
+ 502
525
+ ],
526
+ "page_idx": 3
527
+ },
528
+ {
529
+ "type": "text",
530
+ "text": "To analyze the approximation error, we introduce the concept of coupling approximation (Definition 5.1), which is a variant of Wasserstein (optimal transport) distance specifically tailored to this application. We first show that the approximation output by our algorithm to each privacy random variable is a good coupling approximation. We then show that when independent coupling approximations are added, cancellation happens between the errors due to Hoeffding bound, producing a much better coupling approximation than one naively expects from the triangle inequality. This allows us to choose the mesh size in our discretization to be $\\approx { \\frac { 1 } { \\sqrt { k } } }$ , whereas [KH21] choose a mesh size of $\\approx \\frac { 1 } { k }$ . The other improvement is the truncation procedure. We give a tight tail bound of the PRVs (Lemma 5.4). This allows us to choose the domain size for in truncation to be√ $\\approx \\tilde { O } ( 1 )$ , whereas [KH21] choose $\\approx \\tilde { O } ( \\sqrt { k } )$ . Both ideas together saves a factor of $k$ in the run time and memory. ",
531
+ "bbox": [
532
+ 173,
533
+ 508,
534
+ 826,
535
+ 672
536
+ ],
537
+ "page_idx": 3
538
+ },
539
+ {
540
+ "type": "text",
541
+ "text": "For the analysis, the previous paper analyzes the discretization error by studying the stability of convolution. This leads to complicated calculations with the runtime linear in $1 / \\bar { \\delta } _ { \\mathrm { e r r o r } } \\bar { }$ (see (2)). Since $\\delta _ { \\mathrm { e r r o r } } \\ll \\delta \\ll 1 / N$ is required to give meaningful privacy guarantee $N$ is the number of users), this term $1 / \\delta _ { \\mathrm { e r r o r } }$ is huge. In this paper, we show various facts about how coupling approximation accumulates and use them to give a runtime depending only on $\\sqrt { \\log ( 1 / \\delta _ { \\mathrm { e r r o r } } ) }$ . ",
542
+ "bbox": [
543
+ 174,
544
+ 678,
545
+ 825,
546
+ 751
547
+ ],
548
+ "page_idx": 3
549
+ },
550
+ {
551
+ "type": "text",
552
+ "text": "2 DP Preliminaries ",
553
+ "text_level": 1,
554
+ "bbox": [
555
+ 174,
556
+ 767,
557
+ 349,
558
+ 785
559
+ ],
560
+ "page_idx": 3
561
+ },
562
+ {
563
+ "type": "text",
564
+ "text": "Given a DP algorithm $\\mathcal { M }$ , for each value of $\\varepsilon \\geq 0$ , there exists some $\\delta \\in [ 0 , 1 ]$ such that $\\mathcal { M }$ is $( \\varepsilon , \\delta )$ -DP. We can represent all these privacy guarantees by a function $\\delta _ { \\mathcal { M } } ( \\varepsilon ) : \\mathbb { R } ^ { \\geq 0 } [ 0 , 1 ]$ and say that $\\delta _ { \\mathcal { M } } ( \\cdot )$ is the privacy curve of $\\mathcal { M }$ . This inspires the following definition of a privacy curve between two random variables. ",
565
+ "bbox": [
566
+ 173,
567
+ 799,
568
+ 825,
569
+ 854
570
+ ],
571
+ "page_idx": 3
572
+ },
573
+ {
574
+ "type": "text",
575
+ "text": "Definition 2.1 (Privacy curve). Given two random variables $X , Y$ supported on some set $\\Omega$ , define $\\delta ( X \\vert \\vert Y ) : \\mathbb { R } \\to [ 0 , 1 ]$ as: ",
576
+ "bbox": [
577
+ 173,
578
+ 857,
579
+ 823,
580
+ 886
581
+ ],
582
+ "page_idx": 3
583
+ },
584
+ {
585
+ "type": "equation",
586
+ "img_path": "images/56c3e027976d7e7080fbb80490a1b3a84ba66ba9a20a34b3da9fa3b3e134faec.jpg",
587
+ "text": "$$\n\\delta ( X | | Y ) ( \\varepsilon ) = \\operatorname* { s u p } _ { S \\subset \\Omega } \\operatorname* { P r } [ Y \\in S ] - e ^ { \\varepsilon } \\operatorname* { P r } [ X \\in S ] .\n$$",
588
+ "text_format": "latex",
589
+ "bbox": [
590
+ 339,
591
+ 888,
592
+ 656,
593
+ 915
594
+ ],
595
+ "page_idx": 3
596
+ },
597
+ {
598
+ "type": "text",
599
+ "text": "Therefore an algorithm $\\mathcal { M }$ is $( \\varepsilon , \\delta )$ -DP iff $\\delta \\left( \\mathcal { M } ( D ) \\vert \\vert \\mathcal { M } ( D ^ { \\prime } ) \\right) ( \\varepsilon ) \\leq \\delta$ for all neighboring databases $D , D ^ { \\prime }$ . ",
600
+ "bbox": [
601
+ 173,
602
+ 90,
603
+ 825,
604
+ 121
605
+ ],
606
+ "page_idx": 4
607
+ },
608
+ {
609
+ "type": "text",
610
+ "text": "Remark 2.2. Note that not all functions $\\delta : \\mathbb { R } [ 0 , 1 ]$ are privacy curves. A characterization of privacy curves can be obtained using the $f$ -DP framework of [DRS19]. The notion of privacy curve $\\delta ( X \\vert \\vert Y )$ and tradeoff function $T ( X \\vert \\vert Y )$ are dual to each other via convex duality [DRS19]. This implies a characterization of privacy curves as shown in [ZDW21]. ",
611
+ "bbox": [
612
+ 173,
613
+ 121,
614
+ 826,
615
+ 178
616
+ ],
617
+ "page_idx": 4
618
+ },
619
+ {
620
+ "type": "text",
621
+ "text": "Definition 2.3 (Composition of privacy curves [DRS19]). Let $\\delta _ { 1 } \\equiv \\delta ( X _ { 1 } | | Y _ { 1 } )$ and $\\delta _ { 2 } \\equiv \\delta ( X _ { 2 } | | Y _ { 2 } )$ be any two privacy curves. The composition of the privacy curves, denoted by $\\delta _ { 1 } \\otimes \\delta _ { 2 }$ , is defined as ",
622
+ "bbox": [
623
+ 173,
624
+ 179,
625
+ 823,
626
+ 209
627
+ ],
628
+ "page_idx": 4
629
+ },
630
+ {
631
+ "type": "equation",
632
+ "img_path": "images/bf8f61bbadcb9f839c8e707419841f359c8c000d21171241639f1a8f6bceb9ed.jpg",
633
+ "text": "$$\n\\delta _ { 1 } \\otimes \\delta _ { 2 } \\equiv \\delta \\left( ( X _ { 1 } , X _ { 2 } ) | | ( Y _ { 1 } , Y _ { 2 } ) \\right)\n$$",
634
+ "text_format": "latex",
635
+ "bbox": [
636
+ 388,
637
+ 210,
638
+ 609,
639
+ 228
640
+ ],
641
+ "page_idx": 4
642
+ },
643
+ {
644
+ "type": "text",
645
+ "text": "where $X _ { 1 } , X _ { 2 }$ are independently sampled and $Y _ { 1 } , Y _ { 2 }$ are independently sampled. ",
646
+ "bbox": [
647
+ 174,
648
+ 229,
649
+ 702,
650
+ 246
651
+ ],
652
+ "page_idx": 4
653
+ },
654
+ {
655
+ "type": "text",
656
+ "text": "Note that there can be many pairs of random variables which have the same privacy curve, but the above operation is well-defined. If $\\delta ( X _ { 1 } | | Y _ { 1 } ) \\equiv \\delta ( X _ { 1 } ^ { \\prime } | | Y _ { 1 } ^ { \\prime } )$ and $\\delta ( X _ { 2 } | | Y _ { 2 } ) \\equiv \\delta ( X _ { 2 } ^ { \\prime } | | Y _ { 2 } ^ { \\prime } )$ , then it was shown by [DRS19] that ",
657
+ "bbox": [
658
+ 176,
659
+ 253,
660
+ 823,
661
+ 295
662
+ ],
663
+ "page_idx": 4
664
+ },
665
+ {
666
+ "type": "equation",
667
+ "img_path": "images/e3fe5c38f12900b684c1d9088bb6cd1795a5ad6d0f87f7149e6a58e0159ba91c.jpg",
668
+ "text": "$$\n\\delta \\left( ( X _ { 1 } , X _ { 2 } ) | | ( Y _ { 1 } , Y _ { 2 } ) \\right) = \\delta \\left( ( X _ { 1 } ^ { \\prime } , X _ { 2 } ^ { \\prime } ) | | ( Y _ { 1 } ^ { \\prime } , Y _ { 2 } ^ { \\prime } ) \\right) .\n$$",
669
+ "text_format": "latex",
670
+ "bbox": [
671
+ 334,
672
+ 297,
673
+ 663,
674
+ 315
675
+ ],
676
+ "page_idx": 4
677
+ },
678
+ {
679
+ "type": "text",
680
+ "text": "[DRS19] also show that $\\otimes$ is a commutative and associative operation. ",
681
+ "bbox": [
682
+ 174,
683
+ 318,
684
+ 635,
685
+ 332
686
+ ],
687
+ "page_idx": 4
688
+ },
689
+ {
690
+ "type": "text",
691
+ "text": "Given two DP algorithms $M _ { 1 }$ and $M _ { 2 }$ , the adaptive composition $( M _ { 2 } \\circ M _ { 1 } ) ( D )$ is an algorithm which outputs $( M _ { 1 } ( D ) , M _ { 2 } ( D , M _ { 1 } ( D ) )$ , i.e., $M _ { 2 }$ can look at the database $D$ and also the output of the previous algorithm $M _ { 1 } ( D )$ . Adaptive composition of more than two algorithms is similarly defined. Suppose $M _ { 1 }$ has privacy curve $\\delta _ { 1 }$ and $M _ { 2 }$ has privacy curve $\\delta _ { 2 }$ (i.e., $M _ { 2 } ( \\cdot , y )$ is a $\\mathrm { D P }$ algorithm with privacy curve $\\delta _ { 2 }$ for any fixed $y$ .). The following composition theorem shows how to get the privacy curve of $M _ { 2 } \\circ M _ { 1 }$ . ",
692
+ "bbox": [
693
+ 174,
694
+ 337,
695
+ 825,
696
+ 421
697
+ ],
698
+ "page_idx": 4
699
+ },
700
+ {
701
+ "type": "text",
702
+ "text": "Theorem 2.4 (Composition theorem [DRS19]). Let $M _ { 1 } , M _ { 2 } , \\ldots , M _ { k }$ be DP algorithms with privacy curves given by $\\delta _ { 1 } , \\delta _ { 2 } , \\dots , \\delta _ { k }$ respectively. The privacy curve of the adaptive composition $M _ { k } \\circ$ $M _ { k - 1 } \\circ \\cdots \\circ M _ { 1 }$ is given by $\\delta _ { 1 } \\otimes \\delta _ { 2 } \\otimes \\cdot \\cdot \\cdot \\otimes \\delta _ { k }$ . ",
703
+ "bbox": [
704
+ 174,
705
+ 422,
706
+ 825,
707
+ 467
708
+ ],
709
+ "page_idx": 4
710
+ },
711
+ {
712
+ "type": "text",
713
+ "text": "3 Privacy loss random variables ",
714
+ "text_level": 1,
715
+ "bbox": [
716
+ 174,
717
+ 483,
718
+ 457,
719
+ 501
720
+ ],
721
+ "page_idx": 4
722
+ },
723
+ {
724
+ "type": "text",
725
+ "text": "The notion of privacy loss random variables (PRVs) is a unique way to assign a pair $( X , Y )$ for any privacy curve $\\delta$ such that $\\delta \\equiv \\delta ( X | | Y )$ . PRVs allow us to compute composition of two algorithms via summing random variables (Theorem 3.5) (equivalently, convolving their distributions). Thus PRVs can be thought of as a reparametrization of privacy curves where composition becomes convolution. In this paper, we differ from the usual definition of PRVs given in [DR16, $\\mathrm { K J H } ^ { + } 2 0 ]$ , which are tied to a specific algorithm. Instead we think of them as a reparametrization of privacy curves and study them directly. This allows us to succinctly prove many useful properties of PRVs. ",
726
+ "bbox": [
727
+ 173,
728
+ 513,
729
+ 825,
730
+ 612
731
+ ],
732
+ "page_idx": 4
733
+ },
734
+ {
735
+ "type": "text",
736
+ "text": "Let ${ \\overline { { \\mathbb { R } } } } = \\mathbb { R } \\cup \\{ - \\infty , \\infty \\}$ be the extended real line where we define $\\infty + x = \\infty$ and $- \\infty + x = - \\infty$ for $x \\in \\mathbb { R }$ . ",
737
+ "bbox": [
738
+ 173,
739
+ 618,
740
+ 821,
741
+ 647
742
+ ],
743
+ "page_idx": 4
744
+ },
745
+ {
746
+ "type": "text",
747
+ "text": "Definition 3.1 (Privacy loss random variables (PRVs)). Given a privacy curve $\\delta : \\mathbb { R } [ 0 , 1 ]$ , we say that $( X , Y )$ are privacy loss random variables for $\\delta$ , if they satisfy the following conditions: ",
748
+ "bbox": [
749
+ 173,
750
+ 650,
751
+ 825,
752
+ 679
753
+ ],
754
+ "page_idx": 4
755
+ },
756
+ {
757
+ "type": "text",
758
+ "text": "• $X , Y$ are supported on ${ \\overline { { \\mathbb { R } } } } ,$ , • $\\delta ( X | | Y ) \\equiv \\delta$ , • $Y ( t ) = e ^ { t } X ( t )$ for every $t \\in \\mathbb { R }$ and • $Y ( - \\infty ) = 0 a n d X ( \\infty ) = 0$ ",
759
+ "bbox": [
760
+ 214,
761
+ 688,
762
+ 468,
763
+ 773
764
+ ],
765
+ "page_idx": 4
766
+ },
767
+ {
768
+ "type": "text",
769
+ "text": "where $X ( t ) , Y ( t )$ are probability density functions of $X , Y$ respectively. ",
770
+ "bbox": [
771
+ 174,
772
+ 781,
773
+ 645,
774
+ 796
775
+ ],
776
+ "page_idx": 4
777
+ },
778
+ {
779
+ "type": "text",
780
+ "text": "Mathematically, the correct way to write the condition $Y ( t ) = e ^ { t } X ( t )$ is to say that $\\mathbb { E } _ { Y } [ \\phi ( Y ) ] =$ $\\mathbb { E } _ { X } [ \\phi ( X ) e ^ { X } ]$ for all test functions $\\phi : \\overline { { \\mathbb { R } } } [ 0 , 1 ]$ with $\\phi ( \\infty ) = \\phi ( - \\infty ) = 0$ . This will generalize to all situations where $X , Y$ are continuous or discrete or both. For ease of exposition, we ignore this complication and assume that $X ( t ) , Y ( t )$ represent the PDFs if $X , Y$ are continuous at $t$ , or the probability masses if they have point masses at $t$ . ",
781
+ "bbox": [
782
+ 173,
783
+ 804,
784
+ 825,
785
+ 877
786
+ ],
787
+ "page_idx": 4
788
+ },
789
+ {
790
+ "type": "text",
791
+ "text": "The following theorem shows that the PRVs for a privacy curve $\\delta = \\delta ( P | | Q )$ are given by the log-likelihood random variables of $P , Q$ . ",
792
+ "bbox": [
793
+ 173,
794
+ 882,
795
+ 823,
796
+ 912
797
+ ],
798
+ "page_idx": 4
799
+ },
800
+ {
801
+ "type": "text",
802
+ "text": "Theorem 3.2. Let $\\delta : \\mathbb { R } [ 0 , 1 ]$ be a privacy curve given by $\\delta \\equiv \\delta ( P | | Q )$ where $P , Q$ are two random variables supported on $\\Omega$ . The PRVs $( X , Y )$ for the privacy curve $\\delta$ are given $b y ^ { 5 }$ : ",
803
+ "bbox": [
804
+ 169,
805
+ 89,
806
+ 825,
807
+ 121
808
+ ],
809
+ "page_idx": 5
810
+ },
811
+ {
812
+ "type": "equation",
813
+ "img_path": "images/6c48ee62f238b5e21988dfc5d16fbe76bb0e34ff16130dbb4d52f77ca988637b.jpg",
814
+ "text": "$$\n\\begin{array} { r } { X = \\log \\left( \\frac { Q ( \\omega ) } { P ( \\omega ) } \\right) ~ w h e r e ~ \\omega \\sim P , } \\\\ { Y = \\log \\left( \\frac { Q ( \\omega ) } { P ( \\omega ) } \\right) ~ w h e r e ~ \\omega \\sim Q . } \\end{array}\n$$",
815
+ "text_format": "latex",
816
+ "bbox": [
817
+ 383,
818
+ 125,
819
+ 612,
820
+ 200
821
+ ],
822
+ "page_idx": 5
823
+ },
824
+ {
825
+ "type": "text",
826
+ "text": "The following theorem provides a formula for computing the privacy curve $\\delta$ in terms of the PRVs and conversely a formula for PRVs in terms of the privacy curve. A similar statement appears in [SMM19, $\\mathrm { K J H } ^ { + } 2 0 ]$ ]. ",
827
+ "bbox": [
828
+ 173,
829
+ 205,
830
+ 825,
831
+ 250
832
+ ],
833
+ "page_idx": 5
834
+ },
835
+ {
836
+ "type": "text",
837
+ "text": "Theorem 3.3. The privacy curve $\\delta$ can be expressed in terms of PRVs $( X , Y )$ as: ",
838
+ "bbox": [
839
+ 174,
840
+ 251,
841
+ 709,
842
+ 267
843
+ ],
844
+ "page_idx": 5
845
+ },
846
+ {
847
+ "type": "equation",
848
+ "img_path": "images/61863da84611495cce385648cec20163a1bd9388460206de9d29abf8bf3ae4b1.jpg",
849
+ "text": "$$\n\\delta ( \\varepsilon ) = \\operatorname* { P r } [ Y > \\varepsilon ] - e ^ { \\varepsilon } \\operatorname* { P r } [ X > \\varepsilon ] = \\mathbb { E } _ { Y } [ ( 1 - e ^ { \\varepsilon - Y } ) _ { + } ] = \\operatorname* { P r } [ Y \\geq \\varepsilon + Z ] .\n$$",
850
+ "text_format": "latex",
851
+ "bbox": [
852
+ 250,
853
+ 272,
854
+ 748,
855
+ 291
856
+ ],
857
+ "page_idx": 5
858
+ },
859
+ {
860
+ "type": "text",
861
+ "text": "where $Z$ is an exponential random variable.6 Conversely, given a privacy curve $\\delta : \\mathbb { R } [ 0 , 1 ]$ , we can compute the PDFs of its $P R V s$ $( X , Y )$ as: ",
862
+ "bbox": [
863
+ 173,
864
+ 295,
865
+ 825,
866
+ 325
867
+ ],
868
+ "page_idx": 5
869
+ },
870
+ {
871
+ "type": "equation",
872
+ "img_path": "images/eec634282743c9c3732076d4c40db553dd8e8ce9c3aeba02f8dc976fa971af10.jpg",
873
+ "text": "$$\nY ( t ) = \\delta ^ { \\prime \\prime } ( t ) - \\delta ^ { \\prime } ( t ) a n d X ( t ) = e ^ { t } ( \\delta ^ { \\prime \\prime } ( t ) - \\delta ^ { \\prime } ( t ) ) .\n$$",
874
+ "text_format": "latex",
875
+ "bbox": [
876
+ 325,
877
+ 329,
878
+ 673,
879
+ 347
880
+ ],
881
+ "page_idx": 5
882
+ },
883
+ {
884
+ "type": "text",
885
+ "text": "Remark 3.4. Theorem 3.3 shows that the PRVs $X , Y$ do not depend on the particular $P , Q$ used to represent the privacy curve $\\delta$ in Theorem 3.2. So we should think of the PDF of of the $P R V Y$ $( o r X )$ as an equivalent reparametrization of the privacy curve $\\delta : \\mathbb { R } [ 0 , 1 ]$ , just as the notion of $f$ -DP [DRS19] is a reparametrization of the privacy curve $\\delta$ . ",
886
+ "bbox": [
887
+ 173,
888
+ 351,
889
+ 826,
890
+ 409
891
+ ],
892
+ "page_idx": 5
893
+ },
894
+ {
895
+ "type": "text",
896
+ "text": "PRVs are useful in computing privacy curves because the composition of two privacy curves can be computed by adding the corresponding pairs of PRVs. A similar statement appears in [DR16]. ",
897
+ "bbox": [
898
+ 171,
899
+ 417,
900
+ 823,
901
+ 446
902
+ ],
903
+ "page_idx": 5
904
+ },
905
+ {
906
+ "type": "text",
907
+ "text": "Theorem 3.5. Let $\\delta _ { 1 } , \\delta _ { 2 }$ be two privacy curves with PRVs $( X _ { 1 } , Y _ { 1 } )$ and $( X _ { 2 } , Y _ { 2 } )$ respectively. Then the PRVs for $\\delta _ { 1 } \\otimes \\delta _ { 2 } = \\delta ( X _ { 1 } , X _ { 2 } | | Y _ { 1 } , Y _ { 2 } )$ are given by $\\left( X _ { 1 } + X _ { 2 } , Y _ { 1 } + Y _ { 2 } \\right)$ . In particular, ",
908
+ "bbox": [
909
+ 173,
910
+ 449,
911
+ 825,
912
+ 479
913
+ ],
914
+ "page_idx": 5
915
+ },
916
+ {
917
+ "type": "equation",
918
+ "img_path": "images/aca1b4fa25cd9470e1d5eb0f18b7c6b212a195ee9da9063962d3665c0fee69eb.jpg",
919
+ "text": "$$\n\\delta _ { 1 } \\otimes \\delta _ { 2 } = \\delta ( X _ { 1 } + X _ { 2 } | | Y _ { 1 } + Y _ { 2 } ) .\n$$",
920
+ "text_format": "latex",
921
+ "bbox": [
922
+ 387,
923
+ 483,
924
+ 607,
925
+ 501
926
+ ],
927
+ "page_idx": 5
928
+ },
929
+ {
930
+ "type": "text",
931
+ "text": "Proof. Let $( X , Y )$ be the privacy random variables for $\\delta ( X _ { 1 } , X _ { 2 } | | Y _ { 1 } , Y _ { 2 } )$ . By Theorem 3.2, ",
932
+ "bbox": [
933
+ 169,
934
+ 513,
935
+ 774,
936
+ 530
937
+ ],
938
+ "page_idx": 5
939
+ },
940
+ {
941
+ "type": "equation",
942
+ "img_path": "images/cd407302da6bf7eb8cc43098fcb923abf24f8d1819fdfdb300b0d831180413d8.jpg",
943
+ "text": "$$\n\\begin{array} { r l } & { X = \\log \\left( \\frac { ( Y _ { 1 } , Y _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } { ( X _ { 1 } , X _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } \\right) \\mathrm { ~ w h e r e ~ } ( t _ { 1 } , t _ { 2 } ) \\sim ( X _ { 1 } , X _ { 2 } ) } \\\\ & { \\quad = \\log \\left( \\frac { Y _ { 1 } ( t _ { 1 } ) Y _ { 2 } ( t _ { 2 } ) } { X _ { 1 } ( t _ { 1 } ) \\cdot X _ { 2 } ( t _ { 2 } ) } \\right) \\mathrm { ~ w h e r e ~ } t _ { 1 } \\sim X _ { 1 } , t _ { 2 } \\sim X _ { 2 } } \\\\ & { \\qquad \\mathrm { ( B y ~ i n d e p e n d e n c e ~ o f ~ } X _ { 1 } , X _ { 2 } \\mathrm { ~ a n d ~ i n d p e n d } } \\\\ & { \\quad = \\log \\left( e ^ { t _ { 1 } } \\cdot e ^ { t _ { 2 } } \\right) \\mathrm { ~ w h e r e ~ } t _ { 1 } \\sim X _ { 1 } , t _ { 2 } \\sim X _ { 2 } } \\\\ & { \\quad = t _ { 1 } + t _ { 2 } \\mathrm { ~ w h e r e ~ } t _ { 1 } \\sim X _ { 1 } , t _ { 2 } \\sim X _ { 2 } } \\\\ & { \\quad = X _ { 1 } + X _ { 2 } . } \\end{array}\n$$",
944
+ "text_format": "latex",
945
+ "bbox": [
946
+ 307,
947
+ 535,
948
+ 723,
949
+ 676
950
+ ],
951
+ "page_idx": 5
952
+ },
953
+ {
954
+ "type": "text",
955
+ "text": "Similarly, ",
956
+ "bbox": [
957
+ 173,
958
+ 679,
959
+ 240,
960
+ 695
961
+ ],
962
+ "page_idx": 5
963
+ },
964
+ {
965
+ "type": "equation",
966
+ "img_path": "images/90290373446198852d03f6c56680a073601d587d110b0dbf4ae1e7b0673769dd.jpg",
967
+ "text": "$$\n{ \\begin{array} { r l } & { Y = \\log \\left( { \\frac { ( Y _ { 1 } , Y _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } { ( X _ { 1 } , X _ { 2 } ) ( t _ { 1 } , t _ { 2 } ) } } \\right) { \\mathrm { ~ w h e r e ~ } } ( t _ { 1 } , t _ { 2 } ) \\sim ( Y _ { 1 } , Y _ { 2 } ) } \\\\ & { \\quad = t _ { 1 } + t _ { 2 } { \\mathrm { ~ w h e r e ~ } } t _ { 1 } \\sim Y _ { 1 } , t _ { 2 } \\sim Y _ { 2 } } \\\\ & { \\quad = Y _ { 1 } + Y _ { 2 } . } \\end{array} }\n$$",
968
+ "text_format": "latex",
969
+ "bbox": [
970
+ 310,
971
+ 699,
972
+ 684,
973
+ 770
974
+ ],
975
+ "page_idx": 5
976
+ },
977
+ {
978
+ "type": "text",
979
+ "text": "In the supplementary material, we provide a proof of Theorems 3.2 and 3.3. We also discuss how to compute the PRVs for a subsampled mechanism given the PRVs for the original mechanism and give examples of PRVs for few standard mechanisms. These are used in our experiments to calculate the PRVs for DP-SGD. ",
980
+ "bbox": [
981
+ 173,
982
+ 803,
983
+ 825,
984
+ 859
985
+ ],
986
+ "page_idx": 5
987
+ },
988
+ {
989
+ "type": "text",
990
+ "text": "4 Numerical composition of privacy curves ",
991
+ "text_level": 1,
992
+ "bbox": [
993
+ 173,
994
+ 89,
995
+ 547,
996
+ 107
997
+ ],
998
+ "page_idx": 6
999
+ },
1000
+ {
1001
+ "type": "text",
1002
+ "text": "In this section, we present an efficient and numerically accurate method, ComposePRV (Algorithm 1), for composing privacy guarantees by utilizing the notion of PRVs. ",
1003
+ "bbox": [
1004
+ 174,
1005
+ 119,
1006
+ 825,
1007
+ 148
1008
+ ],
1009
+ "page_idx": 6
1010
+ },
1011
+ {
1012
+ "type": "text",
1013
+ "text": "Input: CDFs of PRVs $Y _ { 1 } , Y _ { 2 } , \\ldots , Y _ { k }$ , mesh size $h$ , Truncation parameter $\\textstyle L \\in { \\frac { h } { 2 } } + h \\mathbb { Z } ^ { > 0 }$ \nOutput: PDF of an approximation $\\widetilde { Y }$ for $\\begin{array} { r } { Y = \\sum _ { i = 1 } ^ { k } Y _ { i } } \\end{array}$ . $\\widetilde { Y }$ will be supported on $\\mu + ( h \\mathbb { Z } \\cap [ - L , L ] )$ for some $\\mu \\in [ 0 , \\frac { h } { 2 } ]$ . \nfor $\\ell = 1$ to $k$ do $\\begin{array} { r l } { \\big | } & { { } \\widetilde { Y } _ { i } \\gets \\mathsf { D i s c r e t i z e P R V } ( Y _ { i } , L , h ) ; } \\end{array}$ \nend \nCompute PDF Of $\\widetilde { Y } = \\widetilde { Y } _ { 1 } \\oplus _ { L } \\widetilde { Y } _ { 2 } \\oplus _ { L } \\cdot \\cdot \\cdot \\oplus _ { L } \\widetilde { Y } _ { k }$ by convolving PDFs of $\\widetilde { Y } _ { 1 } , \\widetilde { Y } _ { 2 } , \\ldots , \\widetilde { Y } _ { k }$ using FFT; \nCompu $\\mathbf { \\varepsilon } \\mathbf { e } \\delta _ { \\widetilde { Y } } ( \\varepsilon ) = \\mathbb { E } _ { \\widetilde { Y } } \\left[ \\left( 1 - e ^ { \\varepsilon - \\widetilde { Y } } \\right) _ { + } \\right] \\mathrm { f o r } \\mathrm { a l l } \\varepsilon \\in [ 0 , L ] ;$ \nReturn Y , δ e Y (·) ",
1014
+ "bbox": [
1015
+ 171,
1016
+ 184,
1017
+ 785,
1018
+ 366
1019
+ ],
1020
+ "page_idx": 6
1021
+ },
1022
+ {
1023
+ "type": "text",
1024
+ "text": "In the algorithm ComposePRV, we compute the circular convolution $\\oplus _ { L }$ using Fast Fourier Transform (FFT). Fix some $L > 0$ . For $x \\in \\mathbb { R }$ , we define $x$ $( { \\bmod { 2 } } L ) = x - 2 L n$ where $n \\in \\mathbb { Z }$ is chosen such that $x - 2 L n \\in ( - L , L ]$ . Given $x , y$ , we define the circular addition $x \\oplus _ { L } y = x + y$ (mod $2 L$ ). When we use FFT to compute the convolution of two discrete distributions $Y _ { 1 } , Y _ { 2 }$ supported on $h \\mathbb { Z } \\cap [ - L , L ]$ , we are implicitly calculating the the distribution of $Y _ { 1 } \\oplus _ { L } Y _ { 2 }$ . We will later show that $\\widetilde { Y } _ { 1 } \\oplus _ { L } \\widetilde { Y } _ { 2 } \\oplus _ { L } \\cdot \\cdot \\cdot \\oplus _ { L } \\widetilde { Y } _ { k }$ is a good approximation of $Y _ { 1 } + Y _ { 2 } + \\cdots + Y _ { k }$ . ",
1025
+ "bbox": [
1026
+ 173,
1027
+ 383,
1028
+ 825,
1029
+ 472
1030
+ ],
1031
+ "page_idx": 6
1032
+ },
1033
+ {
1034
+ "type": "text",
1035
+ "text": "The subroutine DiscretizePRV (Algorithm 2) is used to truncate and discretize PRVs. In this subroutine, we shift the discretized random variables such that it has the same mean as the original variables. This is one of main differences between our algorithm and the algorithm in [KJPH21, KH21]. We show that this significantly decreases the discretization error and allow us to use much coarser mesh $h \\approx 1 / \\sqrt { k }$ instead of $h \\approx 1 / k$ . ",
1036
+ "bbox": [
1037
+ 173,
1038
+ 476,
1039
+ 826,
1040
+ 549
1041
+ ],
1042
+ "page_idx": 6
1043
+ },
1044
+ {
1045
+ "type": "text",
1046
+ "text": "Input: $\\mathrm { C D F } _ { Y } ( \\cdot )$ of a PRV $Y$ , mesh size $h$ , Truncation parameter $\\textstyle L \\in { \\frac { h } { 2 } } + h \\mathbb { Z } ^ { > 0 }$ \nOutput: PDF of an approximation $\\widetilde { Y }$ supported on $\\mu + ( h \\mathbb { Z } \\cap [ - L , L ] )$ for some $\\mu \\in [ 0 , \\frac { h } { 2 } ]$ . $n { \\frac { L - { \\frac { h } { 2 } } } { h } }$ \nfor $i = - n$ to $n$ do \n$| \\quad q _ { i } \\gets \\mathrm { C D F } _ { Y } ( i h + h / 2 ) - \\mathrm { C D F } _ { Y } ( i h - h / 2 ) ;$ \nend \n$q q / ( \\sum _ { i = - n } ^ { n } q _ { i } )$ ; // Normalize $q$ to make it a probability distribution $Y ^ { L } \\gets Y | _ { | Y | \\leq L }$ (i.e., $Y$ conditioned on $| Y | \\leq L )$ ; \n$\\begin{array} { r l } & { \\mu \\mathbb { E } [ Y ^ { \\dot { L } } ] \\stackrel { - } { - } \\textstyle \\sum _ { i = - n } ^ { n } i h \\cdot q _ { i } ; } \\\\ & { \\widetilde { Y } \\{ i h + \\mu \\quad \\mathrm { ~ w . p . ~ } q _ { i } \\mathrm { ~ f o r ~ } - n \\leq i \\leq n ; } \\end{array}$ \nReturn $\\widetilde { Y }$ ; ",
1047
+ "bbox": [
1048
+ 171,
1049
+ 585,
1050
+ 799,
1051
+ 775
1052
+ ],
1053
+ "page_idx": 6
1054
+ },
1055
+ {
1056
+ "type": "text",
1057
+ "text": "For simplicity, throughout this paper, we will assume that the PRVs $Y _ { 1 } , Y _ { 2 } , \\ldots , Y _ { k }$ do not have any mass at $\\infty$ . This is with out loss of generality. Suppose $\\mathrm { P r } [ Y _ { i } = \\infty ] = \\delta _ { i }$ for each $i$ . Let $Y _ { i } ^ { \\prime } = Y _ { i } | _ { Y _ { i } \\neq \\infty }$ . Then ",
1058
+ "bbox": [
1059
+ 173,
1060
+ 792,
1061
+ 825,
1062
+ 837
1063
+ ],
1064
+ "page_idx": 6
1065
+ },
1066
+ {
1067
+ "type": "equation",
1068
+ "img_path": "images/a9e5c4d37a572293b934807bce1f2a0ded96a29eca5dbb4c8eaf67d8609296d5.jpg",
1069
+ "text": "$$\n\\begin{array} { r } { Y _ { 1 } + Y _ { 2 } + \\cdots + Y _ { k } = \\left\\{ \\begin{array} { l l } { Y _ { 1 } ^ { \\prime } + Y _ { 2 } ^ { \\prime } + \\cdots + Y _ { k } ^ { \\prime } } & { \\mathrm { w . p . ~ } ( 1 - \\delta _ { 1 } ) ( 1 - \\delta _ { 2 } ) \\cdots ( 1 - \\delta _ { k } ) } \\\\ { \\infty } & { \\mathrm { w . p . ~ } 1 - ( 1 - \\delta _ { 1 } ) ( 1 - \\delta _ { 2 } ) \\cdots ( 1 - \\delta _ { k } ) . } \\end{array} \\right. } \\end{array}\n$$",
1070
+ "text_format": "latex",
1071
+ "bbox": [
1072
+ 209,
1073
+ 842,
1074
+ 784,
1075
+ 877
1076
+ ],
1077
+ "page_idx": 6
1078
+ },
1079
+ {
1080
+ "type": "text",
1081
+ "text": "Therefore we can use Algorithm 1 to approximate the distribution of $Y _ { 1 } ^ { \\prime } + Y _ { 2 } ^ { \\prime } + \\cdots + Y _ { k } ^ { \\prime }$ , and use it to approximate the distribution of $Y _ { 1 } + Y _ { 2 } + \\cdots + Y _ { k }$ . ",
1082
+ "bbox": [
1083
+ 173,
1084
+ 882,
1085
+ 823,
1086
+ 912
1087
+ ],
1088
+ "page_idx": 6
1089
+ },
1090
+ {
1091
+ "type": "text",
1092
+ "text": "5 Error analysis ",
1093
+ "text_level": 1,
1094
+ "bbox": [
1095
+ 173,
1096
+ 89,
1097
+ 326,
1098
+ 107
1099
+ ],
1100
+ "page_idx": 7
1101
+ },
1102
+ {
1103
+ "type": "text",
1104
+ "text": "To analyze the discretization error, we introduce the notion of coupling approximation, a variant of Wasserstein distance. Intuitively, a good coupling approximation is a coupling where the two random variables are close to each other with high probability. ",
1105
+ "bbox": [
1106
+ 173,
1107
+ 121,
1108
+ 825,
1109
+ 164
1110
+ ],
1111
+ "page_idx": 7
1112
+ },
1113
+ {
1114
+ "type": "text",
1115
+ "text": "Definition 5.1 (coupling approximation). Given two random variables $Y _ { 1 } , Y _ { 2 }$ , we write $| Y _ { 1 } - Y _ { 2 } | \\leq _ { \\eta }$ h if there exists a coupling between $Y _ { 1 } , Y _ { 2 }$ such that $\\operatorname* { P r } [ | Y _ { 1 } - Y _ { 2 } | > h ] \\leq \\eta$ . ",
1116
+ "bbox": [
1117
+ 174,
1118
+ 167,
1119
+ 823,
1120
+ 198
1121
+ ],
1122
+ "page_idx": 7
1123
+ },
1124
+ {
1125
+ "type": "text",
1126
+ "text": "The following lemma shows that if we have a good coupling approximation $\\widetilde { Y }$ to a PRV $Y$ , then the privacy curves $\\delta _ { Y } ( \\varepsilon )$ and $\\delta _ { \\widetilde { Y } } ( \\varepsilon )$ should be close. ",
1127
+ "bbox": [
1128
+ 173,
1129
+ 210,
1130
+ 821,
1131
+ 241
1132
+ ],
1133
+ "page_idx": 7
1134
+ },
1135
+ {
1136
+ "type": "text",
1137
+ "text": "Lemma 5.2. If $Y$ and $\\widetilde { Y }$ are two random variables such that $| Y - { \\widetilde { Y } } | \\leq _ { \\eta } h ,$ , then for every $\\varepsilon \\in \\mathbb { R } ,$ ",
1138
+ "bbox": [
1139
+ 173,
1140
+ 246,
1141
+ 816,
1142
+ 263
1143
+ ],
1144
+ "page_idx": 7
1145
+ },
1146
+ {
1147
+ "type": "equation",
1148
+ "img_path": "images/e12b759a6b4ac9150a71e749222cfb39017fadb7cad294c13440457da63a6f6a.jpg",
1149
+ "text": "$$\n\\delta _ { \\widetilde { Y } } ( \\varepsilon + h ) - \\eta \\leq \\delta _ { Y } ( \\varepsilon ) \\leq \\delta _ { \\widetilde { Y } } ( \\varepsilon - h ) + \\eta .\n$$",
1150
+ "text_format": "latex",
1151
+ "bbox": [
1152
+ 356,
1153
+ 270,
1154
+ 640,
1155
+ 289
1156
+ ],
1157
+ "page_idx": 7
1158
+ },
1159
+ {
1160
+ "type": "text",
1161
+ "text": "Proof. By Theorem 3.2, $\\delta _ { Y } ( \\varepsilon ) = \\operatorname* { P r } [ Y \\geq \\varepsilon + Z ]$ and hence ",
1162
+ "bbox": [
1163
+ 173,
1164
+ 304,
1165
+ 573,
1166
+ 321
1167
+ ],
1168
+ "page_idx": 7
1169
+ },
1170
+ {
1171
+ "type": "equation",
1172
+ "img_path": "images/f620c90b39e14745244fbc37b89fcecccb67792e05a2588435344eace24af2bf.jpg",
1173
+ "text": "$$\n\\begin{array} { r l } & { \\delta _ { Y } ( \\varepsilon ) = \\operatorname* { P r } [ Y - \\widetilde { Y } + \\widetilde { Y } \\geq \\varepsilon + Z ] } \\\\ & { \\qquad \\leq \\operatorname* { P r } [ Y - \\widetilde { Y } \\geq h ] + \\operatorname* { P r } [ \\widetilde { Y } \\geq \\varepsilon - h + Z ] } \\\\ & { \\qquad \\leq \\eta + \\delta _ { \\widetilde { Y } } ( \\varepsilon - h ) . } \\end{array}\n$$",
1174
+ "text_format": "latex",
1175
+ "bbox": [
1176
+ 339,
1177
+ 327,
1178
+ 658,
1179
+ 390
1180
+ ],
1181
+ "page_idx": 7
1182
+ },
1183
+ {
1184
+ "type": "text",
1185
+ "text": "Similarly, we have $\\delta _ { \\widetilde { Y } } ( \\varepsilon ) \\leq \\eta + \\delta _ { Y } ( \\varepsilon - h )$ for all $\\varepsilon \\in \\mathbb { R }$ ",
1186
+ "bbox": [
1187
+ 173,
1188
+ 393,
1189
+ 549,
1190
+ 411
1191
+ ],
1192
+ "page_idx": 7
1193
+ },
1194
+ {
1195
+ "type": "text",
1196
+ "text": "Therefore the goal of our analysis is to show that the ComposePRV algorithm finds a good coupling approximation $\\widetilde { Y }$ to $Y = { \\dot { \\sum _ { i = 1 } ^ { k } } } Y _ { i }$ . We first show that the DiscretizePRV algorithm computes a good coupling approximation to the PRVs and crucially, it preserves the expected value after truncation. Lemma D.5 shows that $| \\widetilde { Y } - Y ^ { L } | \\le _ { 0 } h$ where $\\widetilde { Y }$ is the approximation of a PRV $Y$ output by Algorithm 2 and $Y ^ { L }$ is the truncation of $Y$ to $[ - L , L ]$ . ",
1197
+ "bbox": [
1198
+ 173,
1199
+ 426,
1200
+ 826,
1201
+ 503
1202
+ ],
1203
+ "page_idx": 7
1204
+ },
1205
+ {
1206
+ "type": "text",
1207
+ "text": "We then use the following key lemma which shows that when we add independent coupling approximations (where expected values match), we get a much better coupling approximation than what the triangle inequality predicts. ",
1208
+ "bbox": [
1209
+ 174,
1210
+ 508,
1211
+ 825,
1212
+ 551
1213
+ ],
1214
+ "page_idx": 7
1215
+ },
1216
+ {
1217
+ "type": "text",
1218
+ "text": "Lemma 5.3. Suppose $Y _ { 1 } , Y _ { 2 } , \\ldots , Y _ { k }$ and $\\widetilde { Y } _ { 1 } , \\widetilde { Y } _ { 2 } , \\ldots , \\widetilde { Y } _ { k }$ are two collections of independent random variables such that $| Y _ { i } - \\widetilde { Y } _ { i } | \\le _ { 0 } h$ and $\\mathbb { E } [ Y _ { i } ] = \\mathbb { E } [ \\widetilde { Y } _ { i } ]$ for all $i$ , then ",
1219
+ "bbox": [
1220
+ 171,
1221
+ 555,
1222
+ 821,
1223
+ 590
1224
+ ],
1225
+ "page_idx": 7
1226
+ },
1227
+ {
1228
+ "type": "equation",
1229
+ "img_path": "images/4b90306cbcfff5a33e611ee05782f2621a7c5260a45d06b02ec4a150a81dc749.jpg",
1230
+ "text": "$$\n\\left| \\sum _ { i = 1 } ^ { k } Y _ { i } - \\sum _ { i = 1 } ^ { k } { \\widetilde { Y } } _ { i } \\right| \\leq _ { \\eta } h { \\sqrt { 2 k \\log { \\frac { 2 } { \\eta } } } } .\n$$",
1231
+ "text_format": "latex",
1232
+ "bbox": [
1233
+ 379,
1234
+ 597,
1235
+ 616,
1236
+ 641
1237
+ ],
1238
+ "page_idx": 7
1239
+ },
1240
+ {
1241
+ "type": "text",
1242
+ "text": "Proof. Let $X _ { i } = Y _ { i } - \\widetilde { Y } _ { i }$ where $( Y _ { i } , \\widetilde { Y _ { i } } )$ are coupled such that $| Y _ { i } { - } \\widetilde { Y } _ { i } | \\leq h$ w.p. 1. Then $X _ { i } \\in [ - h , h ]$ w.p. 1. Note that $X _ { 1 } , X _ { 2 } , \\ldots , X _ { k }$ are independent of each other. By Hoeffding’s inequality, ",
1243
+ "bbox": [
1244
+ 173,
1245
+ 659,
1246
+ 825,
1247
+ 690
1248
+ ],
1249
+ "page_idx": 7
1250
+ },
1251
+ {
1252
+ "type": "equation",
1253
+ "img_path": "images/b5a776d5b4358b3ba1364cf2b53780c7883366c2ceed67f296081f20b3f42761.jpg",
1254
+ "text": "$$\n\\operatorname* { P r } \\left[ \\left| \\sum _ { i } X _ { i } \\right| \\geq t \\right] \\leq 2 \\exp \\left( - { \\frac { 2 t ^ { 2 } } { k ( 2 h ) ^ { 2 } } } \\right) = \\eta\n$$",
1255
+ "text_format": "latex",
1256
+ "bbox": [
1257
+ 344,
1258
+ 695,
1259
+ 651,
1260
+ 739
1261
+ ],
1262
+ "page_idx": 7
1263
+ },
1264
+ {
1265
+ "type": "text",
1266
+ "text": "if we set $t = h \\sqrt { 2 k \\log \\frac { 2 } { \\eta } }$ ",
1267
+ "bbox": [
1268
+ 173,
1269
+ 747,
1270
+ 348,
1271
+ 772
1272
+ ],
1273
+ "page_idx": 7
1274
+ },
1275
+ {
1276
+ "type": "text",
1277
+ "text": "This lemma shows that the error of $k$ times composition is around $\\sqrt { k } \\cdot h$ and hence setting $h \\approx 1 / \\sqrt { k }$ gives small enough error. Next, we bound the domain size $L$ . Naively, the domain size $L$ should be of the order of $\\sqrt { k }$ because $Y$ is the sum of $k$ independent random variables with each bounded by a constant. In the supplementary material, we prove a tighter tail bound of $Y$ . ",
1278
+ "bbox": [
1279
+ 173,
1280
+ 792,
1281
+ 826,
1282
+ 852
1283
+ ],
1284
+ "page_idx": 7
1285
+ },
1286
+ {
1287
+ "type": "text",
1288
+ "text": "Lemma 5.4. Let $( X , Y )$ be the privacy random variables for a $( \\varepsilon , \\delta )$ -DP algorithm, then for any $t \\geq 0$ , we have ",
1289
+ "bbox": [
1290
+ 166,
1291
+ 856,
1292
+ 823,
1293
+ 883
1294
+ ],
1295
+ "page_idx": 7
1296
+ },
1297
+ {
1298
+ "type": "equation",
1299
+ "img_path": "images/7ff97cefeb66e12f3e9c657e8741e3fa94e20d0c33c4924370406b122baa542b.jpg",
1300
+ "text": "$$\n\\operatorname* { P r } [ | Y | \\geq \\varepsilon + t ] \\leq { \\frac { \\delta \\left( 1 + e ^ { - \\varepsilon - t } \\right) } { 1 - e ^ { - t } } } .\n$$",
1301
+ "text_format": "latex",
1302
+ "bbox": [
1303
+ 383,
1304
+ 883,
1305
+ 612,
1306
+ 916
1307
+ ],
1308
+ "page_idx": 7
1309
+ },
1310
+ {
1311
+ "type": "text",
1312
+ "text": "This shows that $\\begin{array} { r } { \\operatorname* { P r } [ | Y | \\ge \\varepsilon + 2 ] \\le \\frac { 4 } { 3 } \\delta } \\end{array}$ and hence truncating the domain with $L = 2 + \\varepsilon$ only introduces an additive $\\delta$ error in the privacy curve. Therefore, if the composition satisfies a good privacy guarantee (namely $\\varepsilon = O ( 1 )$ for small enough $\\delta$ ), we can truncate the domain at $L = \\Theta ( 1 )$ . Together with the fact that mesh size is $1 / \\sqrt { k }$ , this gives a $O ( { \\sqrt { k } } )$ -time algorithm for computing the privacy curve when we compose the same mechanism with itself $k$ times. The following theorem gives a formal statement of the error bounds of our algorithm, it is proved in the supplementary material. ",
1313
+ "bbox": [
1314
+ 173,
1315
+ 89,
1316
+ 826,
1317
+ 190
1318
+ ],
1319
+ "page_idx": 8
1320
+ },
1321
+ {
1322
+ "type": "text",
1323
+ "text": "Theorem 5.5. Let $\\varepsilon _ { \\mathrm { e r r o r } }$ , $\\delta _ { \\mathrm { { e r r o r } } } > 0$ be some fixed error terms. Let $\\mathcal { M } _ { 1 } , \\mathcal { M } _ { 2 } , \\ldots , \\mathcal { M } _ { k }$ be $D P$ algorithms with privacy curves $\\delta _ { { \\cal M } _ { i } } ( \\varepsilon )$ . Let $Y _ { i }$ be the PRV corresponding to $\\mathcal { M } _ { i }$ such that $\\delta _ { { \\cal M } _ { i } } ( \\varepsilon ) =$ $\\delta _ { Y _ { i } } ( \\varepsilon )$ for $\\varepsilon \\geq 0$ . Let $\\mathcal { M }$ be the (adaptive) composition of $\\mathcal { M } _ { 1 } , \\mathcal { M } _ { 2 } , \\ldots , \\mathcal { M } _ { k }$ and let $\\delta _ { \\mathcal { M } } ( \\varepsilon )$ be its privacy curve. Set $L \\ge 2 + \\varepsilon _ { \\mathrm { e r r o r } }$ sufficiently large such that ",
1324
+ "bbox": [
1325
+ 173,
1326
+ 195,
1327
+ 825,
1328
+ 252
1329
+ ],
1330
+ "page_idx": 8
1331
+ },
1332
+ {
1333
+ "type": "equation",
1334
+ "img_path": "images/9df3e2db0c8d4df6b0066978de70f5b09afa32bd3c9c00cf4a8aea2027bd3df9.jpg",
1335
+ "text": "$$\n\\sum _ { i = 1 } ^ { k } \\delta _ { \\mathcal { M } _ { i } } ( L - 2 ) \\leq \\frac { \\delta _ { \\mathrm { e r r o r } } } { 8 } a n d \\delta _ { \\mathcal { M } } ( L - 2 - \\varepsilon _ { \\mathrm { e r r o r } } ) \\leq \\frac { \\delta _ { \\mathrm { e r r o r } } } { 4 } .\n$$",
1336
+ "text_format": "latex",
1337
+ "bbox": [
1338
+ 295,
1339
+ 258,
1340
+ 699,
1341
+ 301
1342
+ ],
1343
+ "page_idx": 8
1344
+ },
1345
+ {
1346
+ "type": "text",
1347
+ "text": "Let $\\widetilde { Y }$ be the approximation of $\\textstyle Y = \\sum _ { i = 1 } ^ { k } Y _ { i }$ produced by ComposePRV algorithm with mesh size ",
1348
+ "bbox": [
1349
+ 176,
1350
+ 309,
1351
+ 823,
1352
+ 328
1353
+ ],
1354
+ "page_idx": 8
1355
+ },
1356
+ {
1357
+ "type": "equation",
1358
+ "img_path": "images/20375c04877704332bbf536bfceb15f92dd6540daf009030ddaf009124d06d06.jpg",
1359
+ "text": "$$\nh = { \\frac { \\varepsilon _ { \\mathrm { e r r o r } } } { \\sqrt { { \\frac { k } { 2 } } \\log { \\frac { 1 2 } { \\delta _ { \\mathrm { e r r o r } } } } } } } .\n$$",
1360
+ "text_format": "latex",
1361
+ "bbox": [
1362
+ 431,
1363
+ 333,
1364
+ 565,
1365
+ 375
1366
+ ],
1367
+ "page_idx": 8
1368
+ },
1369
+ {
1370
+ "type": "text",
1371
+ "text": "Then ",
1372
+ "bbox": [
1373
+ 173,
1374
+ 381,
1375
+ 209,
1376
+ 395
1377
+ ],
1378
+ "page_idx": 8
1379
+ },
1380
+ {
1381
+ "type": "equation",
1382
+ "img_path": "images/cc507513aa9a69e347f364a6cdd802f29e8df65c3ade95c43a493de155635c64.jpg",
1383
+ "text": "$$\n\\delta _ { \\widetilde { Y } } ( \\varepsilon + \\varepsilon _ { \\mathrm { e r r o r } } ) - \\delta _ { \\mathrm { e r r o r } } \\leq \\delta _ { Y } ( \\varepsilon ) = \\delta _ { \\mathcal { M } } ( \\varepsilon ) \\leq \\delta _ { \\widetilde { Y } } ( \\varepsilon - \\varepsilon _ { \\mathrm { e r r o r } } ) + \\delta _ { \\mathrm { e r r o r } } .\n$$",
1384
+ "text_format": "latex",
1385
+ "bbox": [
1386
+ 271,
1387
+ 393,
1388
+ 727,
1389
+ 412
1390
+ ],
1391
+ "page_idx": 8
1392
+ },
1393
+ {
1394
+ "type": "text",
1395
+ "text": "Furthermore, our algorithm takes $O \\left( b { \\frac { L } { h } } \\log \\left( { \\frac { L } { h } } \\right) \\right)$ time where $b$ is the number of distinct algorithms among $\\mathcal { M } _ { 1 } , \\mathcal { M } _ { 2 } , \\ldots , \\mathcal { M } _ { k }$ . ",
1396
+ "bbox": [
1397
+ 176,
1398
+ 416,
1399
+ 823,
1400
+ 446
1401
+ ],
1402
+ "page_idx": 8
1403
+ },
1404
+ {
1405
+ "type": "text",
1406
+ "text": "Remark 5.6. A simple way to set $L$ such that the condition (7) holds is by choosing an $L$ such that: ",
1407
+ "bbox": [
1408
+ 173,
1409
+ 449,
1410
+ 818,
1411
+ 465
1412
+ ],
1413
+ "page_idx": 8
1414
+ },
1415
+ {
1416
+ "type": "equation",
1417
+ "img_path": "images/5a7353099e28c77a626403976c6969e4d704175ddb5a30630218607188da7b37.jpg",
1418
+ "text": "$$\nL \\geq 2 + \\operatorname* { m a x } \\left\\{ \\varepsilon _ { \\mathrm { e r r o r } } + \\varepsilon _ { \\mathcal { M } } \\left( \\frac { \\delta _ { \\mathrm { e r r o r } } } { 4 } \\right) , \\operatorname* { m a x } _ { i \\in [ k ] } \\varepsilon _ { \\mathcal { M } _ { i } } \\left( \\frac { \\delta _ { \\mathrm { e r r o r } } } { 8 k } \\right) \\right\\}\n$$",
1419
+ "text_format": "latex",
1420
+ "bbox": [
1421
+ 294,
1422
+ 472,
1423
+ 704,
1424
+ 507
1425
+ ],
1426
+ "page_idx": 8
1427
+ },
1428
+ {
1429
+ "type": "text",
1430
+ "text": "where $\\varepsilon _ { \\mathcal { A } } ( \\delta )$ is the inverse of $\\delta _ { \\mathcal { A } } ( \\varepsilon )$ . To set the value of $L$ , we do not need the exact value of $\\varepsilon _ { \\mathcal { M } }$ $( o r \\varepsilon _ { \\mathcal { M } _ { i } } ,$ ). We only need an upper bound on $\\varepsilon _ { \\mathcal { M } }$ , which can often by obtained by using the $R D P$ Accountant or any other method to derive upper bounds on privacy. ",
1431
+ "bbox": [
1432
+ 173,
1433
+ 513,
1434
+ 826,
1435
+ 558
1436
+ ],
1437
+ "page_idx": 8
1438
+ },
1439
+ {
1440
+ "type": "text",
1441
+ "text": "6 Experiments ",
1442
+ "text_level": 1,
1443
+ "bbox": [
1444
+ 174,
1445
+ 575,
1446
+ 312,
1447
+ 593
1448
+ ],
1449
+ "page_idx": 8
1450
+ },
1451
+ {
1452
+ "type": "text",
1453
+ "text": "We demonstrate the utility of our composition method by computing the privacy curves for the DP-SGD algorithm, which is one of the most important algorithms in differential privacy. ",
1454
+ "bbox": [
1455
+ 173,
1456
+ 607,
1457
+ 485,
1458
+ 662
1459
+ ],
1460
+ "page_idx": 8
1461
+ },
1462
+ {
1463
+ "type": "text",
1464
+ "text": "The DP-SGD algorithm $[ \\mathsf { A C G } ^ { + } 1 6 ]$ is a variant of stochastic gradient descent with $k$ steps. In each step, the algorithm selects a $p$ fraction of training examples uniformly at random. The algorithm adds a Gaussian vector with variance $\\propto \\sigma ^ { 2 }$ to the clipped gradient of the selected batch. Then it performs a gradient step (or any other iterative methods) using the noisy gradient computed. The privacy loss of DP-SGD involves composing the privacy curve of each iteration with itself $k$ times. The PRVs for each iteration have a closed form and depend only $p , \\sigma$ (see supplementary material). Our algorithms use this closed form of PRVs. ",
1465
+ "bbox": [
1466
+ 174,
1467
+ 669,
1468
+ 485,
1469
+ 863
1470
+ ],
1471
+ "page_idx": 8
1472
+ },
1473
+ {
1474
+ "type": "image",
1475
+ "img_path": "images/dd651af1c46cfcf948587466619d538bd872fe0785ba6d83d42653f689a3929f.jpg",
1476
+ "image_caption": [
1477
+ "Figure 2: Setting $p = 1$ and comparing to the analytical solution (10). "
1478
+ ],
1479
+ "image_footnote": [],
1480
+ "bbox": [
1481
+ 503,
1482
+ 626,
1483
+ 849,
1484
+ 823
1485
+ ],
1486
+ "page_idx": 8
1487
+ },
1488
+ {
1489
+ "type": "text",
1490
+ "text": "See Figure 1(b) for the comparison between our algorithm and the GDP and RDP Accountant. Our method provides a lower and upper bound of the privacy curve according to (8). In Figure 1(a), we compare our algorithm with [KJPH21] (implemented in [KP21]). Under the same mesh size, our algorithm computes a much closer upper and lower bound. ",
1491
+ "bbox": [
1492
+ 171,
1493
+ 869,
1494
+ 826,
1495
+ 912
1496
+ ],
1497
+ "page_idx": 8
1498
+ },
1499
+ {
1500
+ "type": "text",
1501
+ "text": "",
1502
+ "bbox": [
1503
+ 171,
1504
+ 90,
1505
+ 825,
1506
+ 121
1507
+ ],
1508
+ "page_idx": 9
1509
+ },
1510
+ {
1511
+ "type": "text",
1512
+ "text": "We validate our program for the case $p = 1$ . When $p = 1$ , we have an exact formula for ",
1513
+ "bbox": [
1514
+ 173,
1515
+ 126,
1516
+ 748,
1517
+ 141
1518
+ ],
1519
+ "page_idx": 9
1520
+ },
1521
+ {
1522
+ "type": "equation",
1523
+ "img_path": "images/b1f102a28fdb38c6c3c7063e71f28f903136ea395de468f46495f179039f9c93.jpg",
1524
+ "text": "$$\n\\delta ( \\varepsilon ) = \\Phi \\left( - { \\frac { \\varepsilon } { \\mu } } + { \\frac { \\mu } { 2 } } \\right) - e ^ { \\varepsilon } \\Phi \\left( - { \\frac { \\varepsilon } { \\mu } } - { \\frac { \\mu } { 2 } } \\right)\n$$",
1525
+ "text_format": "latex",
1526
+ "bbox": [
1527
+ 356,
1528
+ 156,
1529
+ 642,
1530
+ 190
1531
+ ],
1532
+ "page_idx": 9
1533
+ },
1534
+ {
1535
+ "type": "text",
1536
+ "text": "where the bo $\\textstyle \\mu = { \\frac { \\sqrt { k } } { \\sigma } }$ . In Figure 2, we show that the true privacy curve is indeed sandwicompute and that the vertical distance between our bounds is indeed etweenwith a $2 \\varepsilon _ { \\mathrm { e r r o r } }$ neglible δerror of 10−10. ",
1537
+ "bbox": [
1538
+ 174,
1539
+ 195,
1540
+ 825,
1541
+ 239
1542
+ ],
1543
+ "page_idx": 9
1544
+ },
1545
+ {
1546
+ "type": "text",
1547
+ "text": "Floating point errors Note that our error analysis in Section 5 ignores floating point errors. This is because they are negligible compared to the discretization and truncation errors we analyzed in Section 5 for the range of $\\delta$ we are interested in. See supplementary material for more details. ",
1548
+ "bbox": [
1549
+ 176,
1550
+ 253,
1551
+ 825,
1552
+ 296
1553
+ ],
1554
+ "page_idx": 9
1555
+ },
1556
+ {
1557
+ "type": "text",
1558
+ "text": "6.1 Comparison with [KJPH21] ",
1559
+ "text_level": 1,
1560
+ "bbox": [
1561
+ 174,
1562
+ 313,
1563
+ 408,
1564
+ 327
1565
+ ],
1566
+ "page_idx": 9
1567
+ },
1568
+ {
1569
+ "type": "image",
1570
+ "img_path": "images/ca0b62a1d9d64fe917e548bfcb7e7c09e98d280fde0ba10ba8c592a3576fb941.jpg",
1571
+ "image_caption": [
1572
+ "Figure 3: (a) Comparison of error bounds of $\\delta$ with varying number of discretisation points for $p = 4 \\times 1 0 ^ { - 3 } , \\sigma = 0 . 8 , \\varepsilon = 1 . 5 , k = 1 0 0 0$ . (b) Comparing runtimes for our algorithm with that of [KJPH21] when aligned on accuracy for $\\sigma = 0 . 8$ , $p = \\dot { 4 } \\times \\dot { 1 } 0 ^ { - 3 }$ . We can see a significant reduction in runtime in particular for large number of DPSGD steps. We were not able to run the algorithm of [KJPH21] beyond 2,000 steps, since it becomes unstable beyond that point.7. We also plot the speed up directly on the secondary $y$ -axis. "
1573
+ ],
1574
+ "image_footnote": [],
1575
+ "bbox": [
1576
+ 176,
1577
+ 347,
1578
+ 838,
1579
+ 516
1580
+ ],
1581
+ "page_idx": 9
1582
+ },
1583
+ {
1584
+ "type": "text",
1585
+ "text": "In this section, we provide more results demonstrating the practical use of our algorithm. We compare runtimes of our algorithm with [KJPH21], which is the state-of-the-art, for typical values of privacy parameters $\\mathit { \\check { \\sigma } } = 0 . 8$ , $p = 4 \\times 1 0 ^ { - 3 }$ , $\\varepsilon = 1 . 5$ ). See Figure 3(a) for the effect of the number of discretisation points $n$ on the accuracy of $\\delta$ . Our algorithm requires about a few orders of magnitude smaller number of discretization points to converge compared to the algorithm of [KJPH21]. ",
1586
+ "bbox": [
1587
+ 174,
1588
+ 625,
1589
+ 825,
1590
+ 694
1591
+ ],
1592
+ "page_idx": 9
1593
+ },
1594
+ {
1595
+ "type": "text",
1596
+ "text": "In order to compare runtimes, we align the accuracy of both FFT algorithms. We set numerical parameters (number of discretization bins and domain length) such that both algorithms give similarly accurate bounds and verify it visually. Figure 3(b) shows a significant speedup (100x) using our algorithms. We note that runtimes are directly proportional to the memory required by the algorithms and so a separate memory analysis is not required; the runtime and memory are dominated by the number of points in the discretization of PRV. All experiments are performed on a Intel Xeon W-2155 CPU with 3.30GHz with 128GB of memory. ",
1597
+ "bbox": [
1598
+ 174,
1599
+ 699,
1600
+ 825,
1601
+ 796
1602
+ ],
1603
+ "page_idx": 9
1604
+ },
1605
+ {
1606
+ "type": "text",
1607
+ "text": "Acknowledgments and Disclosure of Funding ",
1608
+ "text_level": 1,
1609
+ "bbox": [
1610
+ 174,
1611
+ 815,
1612
+ 553,
1613
+ 833
1614
+ ],
1615
+ "page_idx": 9
1616
+ },
1617
+ {
1618
+ "type": "text",
1619
+ "text": "We would like to thank Janardhan Kulkarni and Sergey Yekhanin for several useful discussions and encouraging us to work on this problem. L.W. would like to thank Daniel Jones and Victor Rühle for fruitful discussions and helpful guidance. ",
1620
+ "bbox": [
1621
+ 174,
1622
+ 848,
1623
+ 825,
1624
+ 888
1625
+ ],
1626
+ "page_idx": 9
1627
+ },
1628
+ {
1629
+ "type": "text",
1630
+ "text": "References \n$[ \\mathrm { A C G ^ { + } } 1 6 ]$ Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security, pages 308–318, 2016. \n[BDLS19] Zhiqi Bu, Jinshuo Dong, Qi Long, and Weijie J. Su. Deep learning with gaussian differential privacy, 2019. \n[BDRS18] Mark Bun, Cynthia Dwork, Guy N Rothblum, and Thomas Steinke. Composable and versatile privacy via truncated cdp. In Proceedings of the 50th Annual ACM SIGACT Symposium on Theory of Computing, pages 74–86, 2018. \n$[ \\mathrm { B G K } ^ { + } 2 1 ]$ Zhiqi Bu, Sivakanth Gopi, Janardhan Kulkarni, Yin Tat Lee, Judy Hanwen Shen, and Uthaipon Tantipongpipat. Fast and memory efficient differentially private-sgd via jl projections. arXiv preprint arXiv:2102.03013, 2021. [BS16] Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and lower bounds. In Theory of Cryptography Conference, pages 635–658. Springer, 2016. [BW18] Borja Balle and Yu-Xiang Wang. Improving the gaussian mechanism for differential privacy: Analytical calibration and optimal denoising. In International Conference on Machine Learning, pages 403–412, 2018. \n$[ \\mathrm { D K M ^ { + } } 0 6 ]$ Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data, ourselves: Privacy via distributed noise generation. In Annual International Conference on the Theory and Applications of Cryptographic Techniques, pages 486– 503. Springer, 2006. [DL09] Cynthia Dwork and Jing Lei. Differential privacy and robust statistics. In Proceedings of the forty-first annual ACM symposium on Theory of computing, pages 371–380, 2009. \n[DMNS06] Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Theory of Cryptography Conference, pages 265–284. Springer, 2006. $[ \\mathrm { D R } ^ { + } 1 4 ]$ Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations and Trends $\\textsuperscript { \\textregistered }$ in Theoretical Computer Science, 9(3–4):211–407, 2014. [DR16] Cynthia Dwork and Guy N Rothblum. Concentrated differential privacy. arXiv preprint arXiv:1603.01887, 2016. [DRS19] Jinshuo Dong, Aaron Roth, and Weijie J. Su. Gaussian differential privacy, 2019. [DRV10] Cynthia Dwork, Guy N Rothblum, and Salil Vadhan. Boosting and differential privacy. In 2010 IEEE 51st Annual Symposium on Foundations of Computer Science, pages 51–60. IEEE, 2010. [KH21] Antti Koskela and Antti Honkela. Computing differential privacy guarantees for heterogeneous compositions using fft. arXiv preprint arXiv:2102.12412, 2021. \n$[ \\mathrm { K J H } ^ { + } 2 0 ]$ Antti Koskela, Joonas Jälkö, Antti Honkela, et al. Computing tight differential privacy guarantees using fft. In Proceedings of the Twenty Third International Conference on Artificial Intelligence and Statistics. AISTATS, 2020. \n[KJPH21] Antti Koskela, Joonas Jälkö, Lukas Prediger, and Antti Honkela. Tight differential privacy for discrete-valued mechanisms and for the subsampled gaussian mechanism using fft. In Arindam Banerjee and Kenji Fukumizu, editors, Proceedings of The 24th International Conference on Artificial Intelligence and Statistics, volume 130 of Proceedings of Machine Learning Research, pages 3358–3366. PMLR, 13–15 Apr 2021. \n[KOV15] Peter Kairouz, Sewoong Oh, and Pramod Viswanath. The composition theorem for differential privacy. In International conference on machine learning, pages 1376–1385. PMLR, 2015. [KP21] Antti Koskela and Lukas Prediger. Github repository for fourier accountant. https: //github.com/DPBayes/PLD-Accountant, 2021. [Mir17] Ilya Mironov. Rényi differential privacy. In 2017 IEEE 30th Computer Security Foundations Symposium (CSF), pages 263–275. IEEE, 2017. \n[MM18] Sebastian Meiser and Esfandiar Mohammadi. Tight on budget? tight bounds for r-fold approximate differential privacy. In Proceedings of the 2018 ACM SIGSAC Conference on Computer and Communications Security, pages 247–264, 2018. [MV16] Jack Murtagh and Salil Vadhan. The complexity of computing the optimal composition of differential privacy. In Theory of Cryptography Conference, pages 157–175. Springer, 2016. \n[SMM19] David M Sommer, Sebastian Meiser, and Esfandiar Mohammadi. Privacy loss classes: The central limit theorem in differential privacy. Proceedings on privacy enhancing technologies, 2019(2):245–269, 2019. \n[ZDW21] Yuqing Zhu, Jinshuo Dong, and Yu-Xiang Wang. Optimal accounting of differential privacy via characteristic function. arXiv preprint arXiv:2106.08567, 2021. ",
1631
+ "bbox": [
1632
+ 174,
1633
+ 70,
1634
+ 828,
1635
+ 929
1636
+ ],
1637
+ "page_idx": 10
1638
+ },
1639
+ {
1640
+ "type": "text",
1641
+ "text": "",
1642
+ "bbox": [
1643
+ 184,
1644
+ 90,
1645
+ 828,
1646
+ 404
1647
+ ],
1648
+ "page_idx": 11
1649
+ }
1650
+ ]
parse/train/GSXEx6iYd0/GSXEx6iYd0_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/GSXEx6iYd0/GSXEx6iYd0_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/Hk6a8N5xe/Hk6a8N5xe.md ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CLASSIFY OR SELECT: NEURAL ARCHITECTURES FOR EXTRACTIVE DOCUMENT SUMMARIZATION
2
+
3
+ Ramesh Nallapati, Bowen Zhou IBM Watson Yorktown Heights, NY 10598 USA {nallapati,zhou}@us.ibm.com
4
+
5
+ Mingbo Ma
6
+ Oregon State University
7
+ Kelley Engineering Center, Corvallis, OR, 97331
8
+ mam@oregonstate.edu
9
+
10
+ # ABSTRACT
11
+
12
+ We present two novel and contrasting Recurrent Neural Network (RNN) based architectures for extractive summarization of documents. The Classifier based architecture sequentially accepts or rejects each sentence in the original document order for its membership in the final summary. The Selector architecture, on the other hand, is free to pick one sentence at a time in any arbitrary order to piece together the summary.
13
+
14
+ Our models under both architectures jointly capture the notions of salience and redundancy of sentences. In addition, these models have the advantage of being very interpretable, since they allow visualization of their predictions broken up by abstract features such as information content, salience and redundancy.
15
+
16
+ We show that our models reach or outperform state-of-the-art supervised models on two different corpora. We also recommend the conditions under which one architecture is superior to the other based on experimental evidence.
17
+
18
+ # 1 INTRODUCTION
19
+
20
+ Document summarization is an important problem that has many applications in information retrieval and natural language understanding. Summarization techniques are mainly classified into two categories: extractive and abstractive. Extractive methods aim to select salient snippets, sentences or passages from documents, while abstractive summarization techniques aim to concisely paraphrase the information content in the documents.
21
+
22
+ A vast majority of the literature on document summarization is devoted to extractive summarization. Traditional methods for extractive summarization can be broadly classified into greedy approaches (e.g., Carbonell & Goldstein (1998)), graph based approaches (e.g., Radev & Erkan (2004)) and constraint optimization based approaches (e.g., McDonald (2007)).
23
+
24
+ Recently, neural network based approaches have become popular for extractive summarization. For example, Kageback et al. (2014) employed the recursive autoencoder (Socher et al. (2011)) to summarize documents, producing best performance on the Opinosis dataset (Ganesan et al. (2010)). Yin & Pei (2015) applied Convolutional Neural Networks (CNN) to project sentences to continuous vector space and then select sentences by minimizing the cost based on their ‘prestige’ and ‘diverseness’, on the task of multi-document extractive summarization. Another related work is that of Cao et al. (2016), who address the problem of query-focused multi-document summarization using query-attention-weighted CNNs.
25
+
26
+ Recently, with the emergence of strong generative neural models for text Bahdanau et al. (2014), abstractive techniques are also becoming increasingly popular (Rush et al. (2015), Nallapati et al. (2016b) and Nallapati et al. (2016a)). Despite the emergence of abstractive techniques, extractive techniques are still attractive as they are less complex, less expensive, and generate grammatically and semantically correct summaries most of the time. In a very recent work, Cheng & Lapata (2016) proposed an attentional encoder-decoder for extractive single-document summarization and trained it on Daily Mail corpus, a large news data set, achieving state-of-the-art performance. Like Cheng & Lapata (2016), our work also focuses only on sentential extractive summarization of single documents using neural networks.
27
+
28
+ # 2 TWO ARCHITECTURES
29
+
30
+ Our architectures are motivated by two intuitive strategies that humans tend to adopt when they are tasked with extracting salient sentences in a document. The first strategy, which we call Classify, involves reading the whole document once to understand its contents, and then traversing through the sentences in the original document order and deciding whether or not each sentence belongs to the summary. The other strategy that we call Select involves memorizing the whole document once as before, and then picking sentences that should belong to the summary one at a time, in any order of one’s choosing. Qualitatively, the latter strategy appears to be a better one since it allows us to make globally optimal decisions at each step. While it may be harder for humans to follow this strategy since we are forgetful by nature, one may expect that the Select strategy could deliver an advantage for the machines, since ’forgetfulness’ is not a real ‘concern’ for them. In this work, we will explore both the strategies empirically and make a recommendation on which strategy is optimal under what conditions.
31
+
32
+ Broadly, our Classify architecture involves an RNN based sequence classification model that sequentially classifies each sentence into 0/1 binary labels, while the Select architecture involves a generative model that sequentially generates the indices of the sentences that should belong to the summary. We will first discuss the components shared by both the architectures and then we will present each architecture separately.
33
+
34
+ Shared Building Blocks: Both architectures begin with word-level bidirectional Gated Recurrent Unit (GRU) based RNNs (Chung et al. (2014)) run independently over each sentence in the document, where each time-step of the RNN corresponds to a word index in the sentence. The average pooling of the concatenated hidden states of this bidirectional RNN is then used as an input to another bidirectional RNN whose time steps correspond to sentence indices in the document. The concatenated hidden states $\mathbf { \hat { h } } \mathbf { \Phi } $ from the forward and backward layers of this second layer of bidirectional RNN at each time step are used as corresponding sentence representations. We also use the average pooling of the sentence representations as the document representation $\mathbf { \cdot } _ { \mathbf { d } } ,$ . Both architectures also maintain a dynamic summary representation ‘s’ whose estimation is architecture dependent. Models under each architecture compute a score for each sentence towards its summary membership. Motivated by the need to build humanly interpretable models, we compute this score by explicitly modeling abstract features such as salience, novelty and information content as shown below:
35
+
36
+ $$
37
+ \begin{array} { r l r l } { \mathord { \mathrm { s c o r e } } ( \mathbf { h } _ { j } , \mathbf { s } _ { j } , \mathbf { d } , \mathbf { p } _ { j } ) = w _ { c } \sigma ( \mathbf { W } _ { c } ^ { T } \mathbf { h } _ { j } ) } & { } & { \textnormal { \# } ( \mathrm { c o n t e n t ~ r i c h n e s s } ) } \\ { + w _ { s } \sigma ( \cos ( \mathbf { h } _ { j } , \mathbf { d } ) ) } & { } & { \textnormal { \# } ( \mathrm { s a l ~ i e n c e ~ w . r . t . ~ d o c u m e n t } ) } \\ { + w _ { p } \sigma ( \mathbf { W } _ { p } ^ { T } \mathbf { p } _ { j } ) } & { } & { \textnormal { \# } ( \mathrm { p o s i t i o n a l ~ i m p o r t a n c e } ) } \\ { - w _ { r } \sigma ( \cos ( \mathbf { h } _ { j } , \mathbf { s } _ { j } ) ) } & { } & { \textnormal { \# } ( \mathrm { r e d u n d a n c y ~ w . r . t . ~ s u m m a r y } ) } \\ { + b ) , } & { } & { \textnormal { \# } ( \mathrm { b i a s ~ t e r m } ) } \end{array}
38
+ $$
39
+
40
+ where $j$ is the index of the sentence in the document, $\mathbf { p } _ { j }$ is the positional embedding of the sentence computed by concatenation of embeddings corresponding to forward and backward position indices of the sentence in the document; $\cos ( \mathbf { a } , \mathbf { b } )$ is the standard cosine similarity between the two vectors $\mathbf { a }$ and $\mathbf { b }$ ; $\mathbf { W } _ { c }$ and $\mathbf { W } _ { p }$ are parameter vectors to model content richness and positional importance of sentences respectively; and $w _ { c } , w _ { s } , w _ { p }$ and $w _ { r }$ are scalar weights to model relative importance of various abstract features, and are learned automatically. In the equation above, the abstract feature that each term represents is printed against the term in comments. In other words, assuming the importance weights are positive, in order for a sentence to score high for summary membership, it needs to be highly salient, content rich and occupy important positions in the document, while being least redundant with respect to the summary generated till that point. Note that our formulation of the scoring function simultaneously captures both salience of the sentence $\mathbf { h } _ { j }$ with respect to the document $\mathbf { d }$ as well as its redundancy with respect to the current summary representation ${ \bf s } _ { j }$ . In the next subsection, we will describe the estimation of dynamic summary representation ${ \bf s } _ { j }$ and the formulation of the cost function for training in each architecture. We will also present shallow and deep models under each architecture.
41
+
42
+ # 2.1 CLASSIFIER ARCHITECTURE
43
+
44
+ In this architecture, we sequentially visit each sentence in the original document order and binaryclassify the sentence in terms of whether it belongs to the summary. The probability of the sentence belonging to the summary, $P ( y _ { j } = 1 )$ is given as follows:
45
+
46
+ $$
47
+ P ( y _ { j } = 1 | \mathbf { h } _ { j } , \mathbf { s } _ { j } , \mathbf { d } , \mathbf { p } _ { j } ) = \sigma ( { \mathsf { s c o r e } } ( \mathbf { h } _ { j } , \mathbf { s } _ { j } , \mathbf { d } , \mathbf { p } _ { j } )
48
+ $$
49
+
50
+ The objective function to minimize at training is the negative log-likelihood of the training data labels:
51
+
52
+ $$
53
+ \ell ( \mathbf { W } , \mathbf { w } , \mathbf { b } ) = - \sum _ { d = 1 } ^ { N } \sum _ { j = 1 } ^ { N _ { d } } ( y _ { j } ^ { d } \log P ( y _ { j } ^ { d } = 1 | \mathbf { h } _ { j } ^ { d } , \mathbf { s } _ { j } ^ { d } , \mathbf { d } _ { d } ) + ( 1 - y _ { j } ^ { d } ) \log ( 1 - P ( y _ { j } ^ { d } = 1 | \mathbf { h } _ { j } ^ { d } , \mathbf { s } _ { j } ^ { d } , \mathbf { d } _ { d } ) )
54
+ $$
55
+
56
+ where $N$ is the size of the training corpus and $N _ { d }$ is the number of sentences in the document $d$ . Now the only detail that remains is how the dynamic summary representation ${ \bf s } _ { j }$ is estimated. This is where the shallow and deep models under this architecture differ, and we describe them below.
57
+
58
+ ![](images/22dfb52afa32430a634e87ff92dc82078c1f5d3c0928962112dea681948f3f26.jpg)
59
+ Figure 1: The shallow and deep versions of the Classifier architecture for extractive summarization.
60
+
61
+ Shallow Model: In the shallow model, we estimate the dynamic summary representation as the running sum of the representations of the sentences visited so far weighted by their probability of being in the summary.
62
+
63
+ $$
64
+ \begin{array}{c} \begin{array} { r c l } { { { \bf { s } } _ { j } } } & { { = } } & { { \displaystyle \sum _ { i = 1 } ^ { j - 1 } { { \bf { h } } _ { i } y _ { i } \qquad } } } \\ { { { \bf { s } } _ { j } } } & { { = } } & { { \displaystyle \sum _ { i = 1 } ^ { j - 1 } { { \bf { h } } _ { i } y _ { i } \qquad } } } \end{array} \textstyle { \Psi } { \mathrm { ~ ( t r a i n i n g ~ t ~ t i m e ) } } \\ { { \bf { s } } _ { j } } & { { = } } & { { \displaystyle \sum _ { i = 1 } ^ { j - 1 } { { \bf { h } } _ { i } { \cal P } \big ( { y _ { i } = 1 \big | { { \bf { h } } _ { i } , { \bf { s } } _ { i } , { \bf { d } } } \big ) \mathrm { ~ } } \mathrm { ~ \# ~ ( t e s t ~ t i m e ) } } } } \end{array}
65
+ $$
66
+
67
+ In other words, at training time, since the summary membership of sentences is known, the probabilities are binary, whereas at test time we use a weighted pooling based on the estimated probability that each sentence belongs to the summary. There is no need to normalize the summary representations since the cosine similarity metric we use in the scoring function of Eq. (1) automatically normalizes them.
68
+
69
+ Deep Model: In the deep model, we introduce an additional layer of unidirectional sentence-level GRU-RNN that takes as input the sentence representations $\mathbf { h } _ { j }$ at each time-step. The hidden state of the new GRU $\hat { \mathbf { h } } _ { j } = G R U ( \mathbf { h } _ { j } )$ is used as a replacement for sentence representation $\mathbf { h } _ { j }$ in computing summary membership scores using Eq. (1) as well as in computing the dynamic summary representation using Eq. (3). The main idea behind using this additional layer of GRU is to allow a greater degree of non-linearity in computing the summary representation.
70
+
71
+ The graphical representations of the shallow and deep models under the Classifier architecture are displayed in Figure 1 with their full set of dependencies.
72
+
73
+ # 2.2 SELECTOR ARCHITECTURE
74
+
75
+ In this architecture, the models do not make decisions in the sequence of sentence ordering; instead, they pick one sentence at a time in an order that they deem fit. The act of picking a sentence is cast as a sequential generative model in which one sentence-index is emitted at each time step that maximizes the score in Eq. 1. Accordingly, the probability of picking a sentence with index $I ( j ) = k \in \{ 1 , \dots , N _ { d } \}$ at time-step $j$ is given by the softmax over the scoring function:
76
+
77
+ $$
78
+ P ( I ( j ) = k | \mathbf { s } _ { j } , \mathbf { h } _ { k } , \mathbf { d } ) = \frac { \exp ( \operatorname { s c o r e } ( \mathbf { h } _ { k } , \mathbf { s } _ { j } , \mathbf { d } , \mathbf { p } _ { k } ) ) } { \sum _ { l \in \{ 1 , \dots , N _ { d } \} } \exp ( \operatorname { s c o r e } ( \mathbf { h } _ { l } , \mathbf { s } _ { j } , \mathbf { d } , \mathbf { p } _ { l } ) ) }
79
+ $$
80
+
81
+ The loss function in this case is the negative log-likelihood of the selected sentences in the ground truth data as shown below.
82
+
83
+ $$
84
+ \begin{array} { r l r } { \ell ( { \mathbf W } , { \mathbf w } , { \mathbf b } ) } & { = } & { - \displaystyle \sum _ { d = 1 } ^ { N } \sum _ { j = 1 } ^ { M _ { d } } \log P ( I ( j ) ^ { ( d ) } | { \mathbf h } _ { I ( j ) ^ { ( d ) } } , { \mathbf s } _ { j } ^ { d } , { \mathbf d } _ { d } ) } \end{array}
85
+ $$
86
+
87
+ where $M _ { d }$ is the number of sentences selected in the ground truth of document $d$ , $\{ I ( 1 ) ^ { ( d ) } , \dots , I ( M _ { d } ) ^ { ( d ) } \}$ is the ordered list of selected sentence indices in the ground truth of document $d$ . The dependence of the loss function on the order of the selected sentences can be gauged by the fact that the probability of selecting a sentence at time step $j$ depends on the dynamic summary representation ${ \bf s } _ { j }$ , which is estimated based on the all sentences selected up to time step $j - 1$ .
88
+
89
+ At test time, at each time-step, the model emits the index of the sentence that has the best score given the current summary representation as shown below.
90
+
91
+ $$
92
+ I ( j ) = \arg \operatorname* { m a x } _ { k \in \{ 1 , \dots , N _ { d } \} } \mathtt { s c o r e } ( \mathbf { h } _ { k } , \mathbf { s } _ { j } , \mathbf { d } , \mathbf { p } _ { k } )
93
+ $$
94
+
95
+ The estimation of dynamic summary representation is done differently for the shallow and deep selector models as described below.
96
+
97
+ Shallow Model: In this model, we sum the representations of the selected sentences until the time step $j$ as the dynamic summary representation. This is true for both training time and test time.
98
+
99
+ $$
100
+ \mathbf { s } _ { j } = \sum _ { i = 1 } ^ { j - 1 } \mathbf { h } _ { I ( i ) } .
101
+ $$
102
+
103
+ Deep Model: In the deep model, we introduce an additional GRU-RNN whose time steps correspond to the sentence index emission events. At each time-step, it takes as input the representation of the previously selected sentence $\mathbf { h } _ { I ( j - 1 ) }$ , and computes a new hidden state $\hat { \mathbf { h } } _ { j } = G R U ( \mathbf { h } _ { I ( j - 1 ) } )$ . Unlike the shallow model that maintains a separate vector for summary representation ${ \bf s } _ { j }$ , we use $\hat { \mathbf { h } } _ { j }$ as the summary representation ${ \bf s } _ { j }$ at time step $j$ . This makes sense for the case of the Selector architecture since both at training and test time we make hard decisions of sentence selection, with the effect that the hidden state of the new GRU can capture a non-linear aggregation of the sentences selected until time step $j - 1$ .
104
+
105
+ ![](images/eb9e93e233925f834a6b17c74e15ea081d07fe5886a372e0868ee6806320d105.jpg)
106
+ Figure 2: Selector architecture for extractive summarization. The shallow and deep versions are identical except for the fact that the simple vector representation for summary representation in the shallow version is replaced with a gated recurrent unit in the deep version.
107
+
108
+ Fig. 2 shows the graphical representation of the Selector architecture with all the dependencies between the nodes. The architecture is the same for both shallow and deep models with the only difference being that the simple summary representation in the former is replaced with a gated recurrent unit in the latter.
109
+
110
+ # 3 RELATED WORK
111
+
112
+ Previous researcher such as Shen et al. (2007) have proposed modeling extractive document summarization as a sequence classification problem using Conditional Random Fields. Our approach is different from theirs in the sense that we use RNNs in our model that do not require any handcrafted features for representing sentences and documents.
113
+
114
+ The Selector architecture broadly involves ranking of sentences by some criterion, therefore does correspond to traditional methods for extractive summarization such as TextRank (Mihalcea & Tarau (2004)) that also involve ranking of sentences by salience and novelty. However, to the best of our knowledge, our Selector framework is a novel deep learning framework for extractive summarization. Broader efforts are being made in the deep learning community to build more sophisticated sequence to sequence models towards the objective of automatically learning complex tasks such as sorting sequences (Oriol Vinyals (2015); Graves et al. (2014)), but their utility for extractive summarization remains to be explored.
115
+
116
+ In the deep learning framework, the extractive summarization work of Cheng & Lapata (2016) is the closest to our work. Their model is based on an encoder-decoder approach where the encoder learns the representation of sentences and documents while the decoder classifies each sentence using an attention mechanism. Broadly, their model is also in the Classifier framework, but architecturally, our approaches are different. While their approach can be termed as a multi-pass approach where both the encoder and decoder consume the same sentence representations, our approach is a deep one where the representations learned by the bidirectional GRU encoder are in turn consumed by the Classifier or Selector models. Another key difference between our work and theirs is that unlike our unsupervised greedy approach to convert abstractive summaries to extractive labels, Cheng & Lapata (2016) chose to train a separate supervised classifier using manually created labels on a subset of the data. This may yield more accurate gold extractive labels which may help boost the performance of their models, but incurs additional annotation costs.
117
+
118
+ # 4 EXPERIMENTS AND RESULTS
119
+
120
+ Pseudo ground-truth generation: In order to train our extractive Classifier and Selector models, for each document we need ground truth in the form of sentence-level binary labels and ordered list of selected sentences respectively. However, most summarization corpora only contain human written abstractive summaries as ground truth. To solve this problem, we use an unsupervised approach to convert the abstractive summaries to extractive labels. Our approach is based on the idea that the selected sentences from the document should be the ones that maximize the Rouge score with respect to gold abstractive summaries. Since it is computationally expensive to find a globally optimal subset of sentences that maximizes the Rouge score, we employ a greedy approach, where we add one sentence at a time incrementally to the summary, such that the Rouge score of the current set of selected sentences is maximized with respect to the entire gold summary. We stop adding sentences when either none of the remaining candidate sentences improves the Rouge score upon addition to the current summary set or when the maximum summary length is reached. We return this ordered list of sentences as the ground-truth for the Selector architecture. The ordered list is converted into binary summary-membership labels that are consumed by the Classifier architecture for training.
121
+
122
+ We note that similar approaches have been employed by other researchers such as Svore et al. (2007) to handle the problem of converting abstractive summaries to extractive ground truth. We would also like to point readers to a recent work by Cao et al. (2015) that proposes an ILP based approach to solve this problem optimally. Since this is not the focus of this work, we chose a simple greedy algorithm.
123
+
124
+ Corpora: For our experiments, we used the Daily Mail corpus originally constructed by Hermann et al. (2015) for the task of passage-based question answering, and re-purposed for the task of document summarization as proposed in Cheng & Lapata (2016) for extractive summarization and Nallapati et al. (2016a) for abstractive summarization. Overall, we have 196,557 training documents, 12,147 validation documents and 10,396 test documents from the Daily Mail corpus. On average, there are about 28 sentences per document in the training set, and an average of 3-4 sentences in the reference summaries. The average word count per document in the training set is 802.
125
+
126
+ We also used the DUC 2002 single-document summarization dataset1 consisting of 567 documents as an additional out-of-domain test set to evaluate our models.
127
+
128
+ Evaluation: In our experiments below, we evaluate the performance of our models using different variants of the Rouge metric2 computed with respect to the gold abstractive summaries. Following Cheng & Lapata (2016), we use limited length Rouge recall at 75 bytes of summary as well as 275 bytes on the Daily Mail corpus. On DUC 2002 corpus, following the official guidelines, we use limited length Rouge recall at 75 words. We report the scores from Rouge-1, Rouge-2 and RougeL, which are computed using matches of unigrams, bigrams and longest common subsequences respectively, with the ground truth summaries.
129
+
130
+ Baselines: On all datasets, we use Lead-3 model, which simply produces the leading three sentences of the document as the summary, as a baseline. On the Daily Mail and DUC 2002 corpora, we also report performance of $L R e g$ , a feature-rich logistic classifier used as a baseline by Cheng & Lapata (2016). On DUC 2002 corpus, we report several baselines such as Integer Linear Programming based approach (Woodsend & Lapata (2010)), and graph based approaches such as TGRAPH (Parveen et al. (2015)) and URANK (Wan (2010)) which achieve very high performance on this corpus. In addition, we also compare with the state-of-the art deep learning supervised extractive model from Cheng & Lapata (2016).
131
+
132
+ Experimental Settings: We used 100-dimensional word2vec (Mikolov et al. (2013)) embeddings trained on the Daily Mail corpus as our embedding initialization. We limited the vocabulary size to 150K and the maximum sentence length to 50 words, to speed up computation. We fixed the model hidden state size at 200. We used a batch size of 32 at training time, and employed adadelta (Zeiler (2012)) to train our model. We employed gradient clipping and L-2 regularization to prevent overfitting and an early stopping criterion based on validation cost.
133
+
134
+ At test time, for the Classifier models we pick sentences sorted by the predicted probabilities until we exceed the length limit as determined by the Rouge metric. Likewise, we allow the Selector models to emit sentence indices until the desired summary length is reached. For the Selector model, we also make sure the emitted sentence ids are not repeated across time steps by traversing down the sorted predicted probabilities of the softmax layer at each time step until we reach a sentence-id that was not emitted before.
135
+
136
+ We note that it is possible to optimize the Classifier performance at test time using the Viterbi algorithm to compute the best sequence of labels, subject to the Markovian assumptions of the architecture and model. Similarly, it is also possible to further boost the Selector’s performance by using beam search at test time. However, in this work we used greedy classification/selection for inference since our primary interest is in comparing the two architectures, and our choice allows us to make a fair apples-to-apples comparison.
137
+
138
+ Results on Daily Mail corpus: Table 1 shows the performance comparison of our models with state-of-the-art model of Cheng & Lapata (2016) and other baselines on the DailyMail corpus using Rouge recall at two different summary lengths.
139
+
140
+ Table 1: Performance of various models on the entire Daily Mail test set using the limited length recall variants of Rouge with respect to the abstractive ground truth at 75 bytes and 275 bytes. Entries with asterisk are statistically significant using $9 5 \%$ confidence interval with respect to the nearest state-of-the-art model, as estimated by the Rouge script.
141
+
142
+ <table><tr><td rowspan="2">Model</td><td colspan="3">Recall at 75 bytes</td><td colspan="3">Recall at 275 bytes</td></tr><tr><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td></tr><tr><td>Lead-3</td><td>21.9</td><td>7.2</td><td>11.6</td><td>40.5</td><td>14.9</td><td>32.6</td></tr><tr><td>LReg(500)</td><td>18.5</td><td>6.9</td><td>10.2</td><td>N/A</td><td>N/A</td><td>N/A</td></tr><tr><td>Cheng &#x27;16</td><td>22.7</td><td>8.5</td><td>12.5</td><td>42.2</td><td>17.3*</td><td>34.8</td></tr><tr><td>Shal.-Select</td><td>25.6</td><td>10.3</td><td>14.0</td><td>41.3</td><td>16.8</td><td>34.9</td></tr><tr><td>Deep-Select</td><td>26.1</td><td>10.7</td><td>14.4</td><td>41.3</td><td>15.3</td><td>33.5</td></tr><tr><td>Shal.-Cls.</td><td>26.0</td><td>10.5</td><td>14.23</td><td>42.1</td><td>16.8</td><td>34.8</td></tr><tr><td>Deep-Cls.</td><td>26.2* ±0.4</td><td>10.7* ±0.4</td><td>14.4* ±0.4</td><td>42.2 ±0.2</td><td>16.8 ±0.2</td><td>35.0 ±0.2</td></tr></table>
143
+
144
+ The results show that contrary to our initial expectation, the Classifier architecture is superior to the Selector architecture. Within each architecture, the deeper models are better performing than the shallower ones. Our deep classifier model outperforms Cheng & Lapata (2016) with a statistically significant margin at 75 bytes, while matching their model at 275 bytes. One potential reason our models do not consistently outperform the extractive model of Cheng & Lapata (2016) is the additional supervised training they used to create sentence-level extractive labels to train their model. Our models instead use an unsupervised greedy approximation to create extractive labels from abstractive summaries, and as a result, may generate noisier ground truth than theirs.
145
+
146
+ Results on the Out-of-Domain DUC 2002 corpus: We also evaluated the models trained on the DailyMail corpus on the out-of-domain DUC 2002 set as shown in Table 2. The performance trend is similar to that on Daily Mail. Our best model, Deep Classifier is again statistically on par with the model of Cheng & Lapata (2016). However, both models perform worse than graph-based TGRAPH (Parveen et al. (2015)) and URANK (Wan (2010)) algorithms, which are the state-of-the-art models on this corpus. Deep learning based supervised models such as ours and that of Cheng & Lapata (2016) perform very well on the domain they are trained on, but may suffer from domain adaptation issues when tested on a different corpus such as DUC 2002.
147
+
148
+ # 5 DISCUSSION
149
+
150
+ Impact of Document Structure: In all our experiments thus far, the classifier architecture has proven superior to the selector architecture. We conjecture that decision making in the same sequence as the original sentence ordering is perhaps advantageous in document summarization since there is a smooth sequential discourse structure in news stories starting with the main highlights of the story in the beginning, more elaborate description in the middle and ending with conclusive remarks. If this is true, then in scenarios where sentence ordering is less structured, the selector architecture should be superior since it has freedom to select salient sentences in any arbitrary order. Such scenarios actually do occur in practice, e.g., summarization of a cluster of tweets on a topic where there is no specific discourse structure between individual tweets, or in multi-document summarization where a pair of sentences across document boundaries have no specific ordering. In order to test this hypothesis, we simulated such data in the Daily Mail corpus by randomly shuffling the sentences in each document in the training set and retraining models under both the architectures, and evaluating them on the original test sets. The results, summarized in Table 3, show that the Classifier architecture suffers bigger losses than the Selector architecture when the document structure is destroyed. In fact, the Selector architecture performs slightly better than the Classifier architecture when trained on the shuffled data, indicating that our hypothesis may indeed be true.
151
+
152
+ Table 2: Performance of various models on the DUC 2002 set using the limited length recall variants of Rouge at 75 words. Our Deep Classifier is statistically within the margin of error at $9 5 \%$ C.I. with respect to the model of Cheng & Lapata (2016), but both are lower than state-of-the-art results due to out-of-domain training.
153
+
154
+ <table><tr><td></td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td></tr><tr><td>Lead-3</td><td>43.6</td><td>21.0</td><td>40.2</td></tr><tr><td>LReg</td><td>43.8</td><td>20.7</td><td>40.3</td></tr><tr><td>ILP</td><td>45.4</td><td>21.3</td><td>42.8</td></tr><tr><td>TGRAPH</td><td>48.1</td><td>24.3*</td><td></td></tr><tr><td>URANK</td><td>48.5*</td><td>21.5</td><td>=</td></tr><tr><td>Cheng et al &#x27;16</td><td>47.4</td><td>23.0</td><td>43.5</td></tr><tr><td>Shallow-Selector</td><td>44.6</td><td>20.0</td><td>41.1</td></tr><tr><td>Deep-Selector</td><td>45.9</td><td>21.5</td><td>42.4</td></tr><tr><td>Shallow-Classifier</td><td>45.9</td><td>21.5</td><td>42.3</td></tr><tr><td>Deep-Classifier</td><td>46.8 ±0.9</td><td>22.6 ±0.9</td><td>43.1 ±0.9</td></tr></table>
155
+
156
+ <table><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=3>Trained on original data</td><td rowspan=1 colspan=3>Trained on shuffled sentences</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1>Rouge-1</td><td rowspan=1 colspan=1>Rouge-2</td><td rowspan=1 colspan=1>Rouge-L</td><td rowspan=1 colspan=1>Rouge-1</td><td rowspan=1 colspan=1>Rouge-2</td><td rowspan=1 colspan=1>Rouge-L</td></tr><tr><td rowspan=2 colspan=1>Shallow-SelectorShallow-Classifier</td><td rowspan=2 colspan=1>41.342.1</td><td rowspan=2 colspan=1>16.816.8</td><td rowspan=1 colspan=1>34.9</td><td rowspan=1 colspan=1>40.6</td><td rowspan=2 colspan=1>15.615.3</td><td rowspan=2 colspan=1>33.032.9</td></tr><tr><td rowspan=1 colspan=1>35.0</td><td rowspan=1 colspan=1>40.1</td></tr><tr><td rowspan=1 colspan=1>Deep-SelectorDeep-Classifier</td><td rowspan=1 colspan=1>41.342.2</td><td rowspan=1 colspan=1>15.316.8</td><td rowspan=1 colspan=1>33.535.0</td><td rowspan=1 colspan=1>40.540.1</td><td rowspan=1 colspan=1>15.315.1</td><td rowspan=1 colspan=1>32.532.9</td></tr></table>
157
+
158
+ Table 3: Simulated experiment to demonstrate the impact of document discourse structure on model performance. Evaluation is done using Rouge limited length recall at 275 bytes. The Selector architecture exhibits superior performance when the discourse structure of the document is destroyed.
159
+
160
+ Qualitative Analysis: One of the advantages of our model design is teasing out various abstract features for the sake of interpretability of system predictions. In the appendix, we present a visualization (see Fig. 3 in the Appendix) of the system predictions based on the scores for various abstract features listed in Eq. (1). We also present the learned importance weights of these features in Table 4. A few representative documents are also presented in the appendix highlighting the sentences chosen by our models for summarization.
161
+
162
+ # 6 CONCLUSION AND FUTURE WORK
163
+
164
+ In this work, we propose two neural architectures for extractive summarization. Our proposed models under these architectures are not only very interpretable, but also achieve state-of-the-art performance on two different data sets. We also empirically compare our two frameworks and suggest conditions under which each of them can deliver optimal performance.
165
+
166
+ As part of our future work, we plan to further investigate the applicability of the novel Selector architecture to relatively less structured summarization problems such as summarization of multiple documents or topical clusters of tweets. In addition, we also intend to perform additional experiments on the Daily Mail dataset such as incorporating beam search in both model inference as well in pseudo ground truth generation that may result in further performance improvements.
167
+
168
+ # REFERENCES
169
+
170
+ Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473, 2014.
171
+
172
+ Ziqiang Cao, Chengyao Chen, Wenjie Li, Sujian Li, Furu Wei, and Ming Zhou. Tgsum: Build tweet guided multi-document summarization dataset. CoRR, abs/1511.08417, 2015. URL http: //arxiv.org/abs/1511.08417.
173
+
174
+ Ziqiang Cao, Wenjie Li, Sujian Li, and Furu Wei. Attsum: Joint learning of focusing and summarization with neural attention. arXiv preprint arXiv:1604.00125, 2016.
175
+
176
+ Jaime Carbonell and Jade Goldstein. The use of mmr, diversity-based reranking for reordering documents and producing summaries. In Proceedings of the 21st annual international ACM SIGIR conference on Research and development in information retrieval, pp. 335–336. ACM, 1998.
177
+
178
+ Jianpeng Cheng and Mirella Lapata. Neural summarization by extracting sentences and words. 54th Annual Meeting of the Association for Computational Linguistics, 2016. URL http://arxiv. org/abs/1603.07252.
179
+
180
+ Junyoung Chung, C¸ aglar Gulc¸ehre, KyungHyun Cho, and Yoshua Bengio. Empirical evaluation ¨ of gated recurrent neural networks on sequence modeling. CoRR, abs/1412.3555, 2014. URL http://arxiv.org/abs/1412.3555.
181
+
182
+ Kavita Ganesan, ChengXiang Zhai, and Jiawei Han. Opinosis: a graph-based approach to abstractive summarization of highly redundant opinions. In Proceedings of the 23rd international conference on computational linguistics, pp. 340–348. Association for Computational Linguistics, 2010.
183
+
184
+ Alex Graves, Greg Wayne, and Ivo Danihelka. Neural turing machines. CoRR, abs/1410.5401, 2014. URL http://arxiv.org/abs/1410.5401.
185
+
186
+ Karl Moritz Hermann, Tomas Kocisk ´ y, Edward Grefenstette, Lasse Espeholt, Will Kay, Mustafa Su-´ leyman, and Phil Blunsom. Teaching machines to read and comprehend. CoRR, abs/1506.03340, 2015. URL http://arxiv.org/abs/1506.03340.
187
+
188
+ Mikael Kageback, Olof Mogren, Nina Tahmasebi, and Devdatt Dubhashi. Extractive summarization using continuous vector space models. pp. 31–39. 2014.
189
+
190
+ Ryan McDonald. A study of global inference algorithms in multi-document summarization. pp. 557–564. 2007.
191
+
192
+ Rada Mihalcea and Paul Tarau. Textrank: Bringing order into texts. Empirical Methods in Natural Language Processing, 2004.
193
+
194
+ Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations of words and phrases and their compositionality. In Advances in neural information processing systems, pp. 3111–3119, 2013.
195
+
196
+ Ramesh Nallapati, Bowen Zhou, Cicero dos Santos, Caglar Gulcehre, and Bing Xiang. Abstractive text summarization using sequence-to-sequence rnns and beyond. The SIGNLL Conference on Computational Natural Language Learning, 2016a.
197
+
198
+ Ramesh Nallapati, Bowen Zhou, and Bing Xiang. Sequence-to-sequence rnns for text summarization. International Conference on Learning Representations, Workshop track, 2016b.
199
+
200
+ Manjunath Kudlur Oriol Vinyals, Samy Bengio. Order matters: Sequence to sequence for sets. International Conference on Learning Representations, 2015.
201
+
202
+ Daraksha Parveen, Hans-Martin Ramsl, and Michael Strube. Topical coherence for graph-based extractive summarization. In Proceedings of the Conference on Empirical Methods in Natural Language Processing, pp. 19491954, 2015.
203
+
204
+ Dragomir Radev and Gunes Erkan. Lexrank: Graph-based lexical centrality as salience in text ¨ summarization. Journal of Artificial Intelligence Research, pp. 457–479, 2004.
205
+
206
+ Alexander M Rush, Sumit Chopra, and Jason Weston. A neural attention model for abstractive sentence summarization. arXiv preprint arXiv:1509.00685, 2015.
207
+ Dou Shen, Jian-Tao Sun, Hua Li, Qiang Yang, and Zheng Chen. Document summarization using conditional random fields. In Proceedings of IJCAI, 2007.
208
+ Richard Socher, Eric H. Huang, Jeffrey Pennin, Christopher D. Manning, and Andrew Y. Ng. Dynamic pooling and unfolding recursive autoencoders for paraphrase detection. pp. 801–809. 2011.
209
+ Krysta M. Svore, Lucy Vanderwende, and Christopher J.C. Burges. Enhancing single-document summarization by combining ranknet and third-party sources. In Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning, pp. 448–457, 2007.
210
+ Xiaojun Wan. Towards a unified approach to simultaneous single-document and multidocument summarizations. In In Proceedings of the 23rd COLING, pp. 11371145, 2010.
211
+ Kristian Woodsend and Mirella Lapata. Automatic generation of story highlights. In In Proceedings of the 48th ACL, pp. 565574, 2010.
212
+ Wenpeng Yin and Yulong Pei. Optimizing sentence modeling and selection for document summarization. In Proceedings of the 24th International Conference on Artificial Intelligence, pp. 1383–1389. AAAI Press, 2015.
213
+ Matthew D. Zeiler. ADADELTA: an adaptive learning rate method. CoRR, abs/1212.5701, 2012. URL http://arxiv.org/abs/1212.5701.
214
+
215
+ # 7 APPENDIX
216
+
217
+ In this section, we will present some additional qualitative and quantitative analysis of our models that we hope will shed some light on their behavior.
218
+
219
+ # 7.1 VISUALIZATION OF MODEL OUTPUT
220
+
221
+ In addition to being state-of-the-art performers, our models have the additional advantage of being very interpretable. The clearly separated terms in the scoring function (see Eqn. 1) allow us to tease out various factors responsible for the classification/selection of each sentence. This is illustrated in Figure 3, where we display a representative document from our validation set along with normalized scores from each abstract feature from the deep classifier model. Such visualization is especially useful in explaining to the end-user the decisions made by the system.
222
+
223
+ # 7.2 LEARNED IMPORTANCE WEIGHTS
224
+
225
+ We display in Table 4 the learned importance weights corresponding to various abstract features for deep sentence selector. Confirming our intuition, the model learns that salience and redundancy are the most important predictive features for summary membership of a sentence, followed by positional feature and content based feature. Further, when the same model is trained on documents with randomly shuffled sentences, it learns very small weight for the positional features, which is exactly what one expects.
226
+
227
+ <table><tr><td rowspan=1 colspan=1>Trainingcondition</td><td rowspan=1 colspan=1>Salience</td><td rowspan=1 colspan=1>Content</td><td rowspan=1 colspan=1>Position</td><td rowspan=1 colspan=1>Redundancy</td></tr><tr><td rowspan=1 colspan=1>Original dataShuffled data</td><td rowspan=1 colspan=1>42.759.69</td><td rowspan=1 colspan=1>14.832.85</td><td rowspan=1 colspan=1>-31.090.20</td><td rowspan=1 colspan=1>40.9916.08</td></tr></table>
228
+
229
+ Table 4: Learned weights of various abstract features from the deep sentence selector model. Salience and redundancy are the most important features as learned by the model, followed by position and content. The negative sign for position weights has no particular significance. The positional feature gets very low weight when the document structure is destroyed by randomly shuffling sentences in each document the training data.
230
+
231
+ <table><tr><td rowspan=1 colspan=1>Gold Summary:Redpath has ended his eight-year association with SaleSharks. Redpath spent five years as a player and three as acoach at sale. He has thanked the owners, coaches and players for their support.</td><td rowspan=1 colspan=1>Salience</td><td rowspan=1 colspan=1>Content</td><td rowspan=1 colspan=1>Novelty</td><td rowspan=1 colspan=1>Position Prob.</td><td rowspan=1 colspan=1>Position Prob.</td></tr><tr><td rowspan=1 colspan=1>Bryan Redpath has left his coaching role at Sale Sharks withimmediate effect.</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.3</td></tr><tr><td rowspan=1 colspan=1>The 43- year- old Scot ends an eight-year association withthe Aviva Premiership side, having spent five years with them as a player and three as a coach.</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.6</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.7</td></tr><tr><td rowspan=1 colspan=1> Redpath returned to Sale in June 2012 as director of rugbyafter starting a coaching career at Gloucester and progressing to the top job at Kingsholm .</td><td rowspan=1 colspan=1>0.8</td><td rowspan=1 colspan=1>0.5</td><td rowspan=1 colspan=1>0.5</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.6</td></tr><tr><td rowspan=2 colspan=1>Redpath spent five years with Sale Sharks as a player and afurther three as a coach but with Sale Sharks struggling fourmonths into Redpath&#x27;s tenure, he was removed from thedirector of rugby role at the Salford-based side and has sincebeen operating as head coach .</td><td rowspan=1 colspan=1>0.8</td><td rowspan=1 colspan=1>0.9</td><td rowspan=2 colspan=1>0.7</td><td rowspan=2 colspan=1>0.8</td><td rowspan=2 colspan=1>0.9</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td></tr><tr><td rowspan=2 colspan=1>‘I would like to thank the owners,coaches,players and stafffor all their helpand support since I returned to the club in2012.</td><td rowspan=1 colspan=1>0.4</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.7</td><td rowspan=2 colspan=1>0.2</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td></tr><tr><td rowspan=2 colspan=1> Also to the supporters who have been great with me both asa player and as a coach,&#x27; Redpath said.</td><td rowspan=1 colspan=1>0.6</td><td rowspan=1 colspan=1>0.0</td><td rowspan=1 colspan=1>0.2</td><td rowspan=1 colspan=1>0.3</td><td rowspan=1 colspan=1>0.2</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td></tr></table>
232
+
233
+ # 7.3 ABLATION EXPERIMENTS
234
+
235
+ We evaluated the performance of the deep selector and deep classifier models on the validation set by deleting one abstract feature at a time from the model, with replacement. The performance numbers, displayed in Table 5, show that removing any of the features results in a small loss in performance. Note that the priority of features in the ablation experiments need not correspond to their priority in terms of learned weights in Table 4, since feature correlations may affect the two metrics differently. For the deep classifier, content and redundancy seem to matter the most while for the deep selector, dropping positional features hurts the most. Based on this analysis, we plan to investigate more thoroughly the reasons behind the poor ablation performance of salience and redundancy in the classifier and selector models respectively.
236
+
237
+ <table><tr><td></td><td colspan="3">Deep Classifier</td><td colspan="3">Deep Selector</td></tr><tr><td>Features</td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td></tr><tr><td>All</td><td>42.43</td><td>17.32</td><td>34.07</td><td>41.55</td><td>16.52</td><td>32.41</td></tr><tr><td>-Salience</td><td>42.40</td><td>17.27</td><td>34.09</td><td>40.82</td><td>15.99</td><td>31.45</td></tr><tr><td>-Position</td><td>41.78</td><td>16.76</td><td>33.58</td><td>39.06</td><td>14.32</td><td>29.85</td></tr><tr><td>-Content</td><td>41.12</td><td>15.78</td><td>33.23</td><td>40.68</td><td>15.83</td><td>31.13</td></tr><tr><td>-Redundancy</td><td>41.67</td><td>16.86</td><td>32.93</td><td>41.46</td><td>16.50</td><td>32.31</td></tr></table>
238
+
239
+ Table 5: Ablation experiments on the validation set to gauge the relative importance of each abstract feature. The top row is where all four abstract features are present. The following rows corresponding to removal of one feature at a time with replacement. Evaluation is done using Rouge limited length recall at 275 bytes. Bold faced entries correspond to largest reduction in performance when the corresponding features are dropped.
240
+
241
+ # 7.4 REPRESENTATIVE DOCUMENTS AND EXTRACTIVE SUMMARIES
242
+
243
+ We display a couple of representative documents, one each from the Daily Mail and DUC corpora, highlighting the sentences chosen by deep classifier and comparing them with the gold summaries in Table 6. The examples demonstrate qualitatively that the model performs a reasonably good job in identifying the key messages of a document.
244
+
245
+ <table><tr><td>Document:@entityO have an interest in @entity3 defender @entity2 but are unlikely to make a move until january . the 00 - year - old @entity6 captain has yet to open talks over a new contract at @entity3 and his current deal runs out in 0000 .@entity3 defender @entity2 could be targeted by @entityO in the january transfer window @entityO like @entity2 but do n&#x27;t expect @ entity3 to sell yet they know he will be free to talk to foreign clubs from january.@entity12 will make a Omillion offer for @entity3 goalkeeper @entity14 this summer.the OO - year - old is poised to leave @entityl6 and wants to play for a @entity18 contender . @entity12 are set to make a Omillion bid for @entity2’s @en-</td></tr><tr><td>tity3 team - mate @entity14 in the summer Gold Summary:@entity2&#x27;s contract at @entity3 expires at the end of next season .OO - year-old has yet to open talks over a new deal at @entityl6 .@entity14 is poised to leave @entity3 at the end of</td></tr><tr><td>the season Document: today, the foreign ministry said that control opera- tions carried out by the corvette spiro against a korean-flagged asreceived ship fishing illegally in argentine waters were car- ried out “ in accordance with international law and in coordi- nation with the foreign ministry ”.the foreign ministry thus ap- proved the intervention by the argentine corvette when it discovered the korean ship chin yuan hsing violating argentine jurisdictional waters on OO may.... the korean ship,which had been fishing illegally in argentine waters,was sunk by its own crew after failing to answer to the argentine ship &#x27;s warnings .the crew was transferred to the chin chuan hsing,which was sailing nearby and</td></tr><tr><td>approached to rescue the crew of the sinking ship... Gold Summary:the korean-flagged fishing vessel chin yuan hs- ing was scuttled in waters off argentina on OO may OOoO .adverse weather conditions prevailed when the argentine corvette spiro spot- ted the korean ship fishing illegally in restricted argentine waters . the korean vessel did not respond to the corvette &#x27;s warning .instead ,the korean crew sank their ship,and transferred to another korean ship sailing nearby.in accordance with a uk-argentine agreement, the argentine navy turned the surveillance of the second korean ves- sel over to the british when it approached within OO nautical miles of the malvinas(falkland)islands .</td></tr></table>
parse/train/Hk6a8N5xe/Hk6a8N5xe_content_list.json ADDED
@@ -0,0 +1,1288 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "CLASSIFY OR SELECT: NEURAL ARCHITECTURES FOR EXTRACTIVE DOCUMENT SUMMARIZATION ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 176,
8
+ 98,
9
+ 823,
10
+ 146
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Ramesh Nallapati, Bowen Zhou IBM Watson Yorktown Heights, NY 10598 USA {nallapati,zhou}@us.ibm.com ",
17
+ "bbox": [
18
+ 183,
19
+ 170,
20
+ 447,
21
+ 227
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "Mingbo Ma \nOregon State University \nKelley Engineering Center, Corvallis, OR, 97331 \nmam@oregonstate.edu ",
28
+ "bbox": [
29
+ 183,
30
+ 247,
31
+ 504,
32
+ 303
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "ABSTRACT ",
39
+ "text_level": 1,
40
+ "bbox": [
41
+ 454,
42
+ 340,
43
+ 544,
44
+ 354
45
+ ],
46
+ "page_idx": 0
47
+ },
48
+ {
49
+ "type": "text",
50
+ "text": "We present two novel and contrasting Recurrent Neural Network (RNN) based architectures for extractive summarization of documents. The Classifier based architecture sequentially accepts or rejects each sentence in the original document order for its membership in the final summary. The Selector architecture, on the other hand, is free to pick one sentence at a time in any arbitrary order to piece together the summary. ",
51
+ "bbox": [
52
+ 233,
53
+ 369,
54
+ 764,
55
+ 454
56
+ ],
57
+ "page_idx": 0
58
+ },
59
+ {
60
+ "type": "text",
61
+ "text": "Our models under both architectures jointly capture the notions of salience and redundancy of sentences. In addition, these models have the advantage of being very interpretable, since they allow visualization of their predictions broken up by abstract features such as information content, salience and redundancy. ",
62
+ "bbox": [
63
+ 232,
64
+ 455,
65
+ 766,
66
+ 511
67
+ ],
68
+ "page_idx": 0
69
+ },
70
+ {
71
+ "type": "text",
72
+ "text": "We show that our models reach or outperform state-of-the-art supervised models on two different corpora. We also recommend the conditions under which one architecture is superior to the other based on experimental evidence. ",
73
+ "bbox": [
74
+ 232,
75
+ 512,
76
+ 764,
77
+ 554
78
+ ],
79
+ "page_idx": 0
80
+ },
81
+ {
82
+ "type": "text",
83
+ "text": "1 INTRODUCTION ",
84
+ "text_level": 1,
85
+ "bbox": [
86
+ 176,
87
+ 579,
88
+ 336,
89
+ 594
90
+ ],
91
+ "page_idx": 0
92
+ },
93
+ {
94
+ "type": "text",
95
+ "text": "Document summarization is an important problem that has many applications in information retrieval and natural language understanding. Summarization techniques are mainly classified into two categories: extractive and abstractive. Extractive methods aim to select salient snippets, sentences or passages from documents, while abstractive summarization techniques aim to concisely paraphrase the information content in the documents. ",
96
+ "bbox": [
97
+ 174,
98
+ 609,
99
+ 823,
100
+ 679
101
+ ],
102
+ "page_idx": 0
103
+ },
104
+ {
105
+ "type": "text",
106
+ "text": "A vast majority of the literature on document summarization is devoted to extractive summarization. Traditional methods for extractive summarization can be broadly classified into greedy approaches (e.g., Carbonell & Goldstein (1998)), graph based approaches (e.g., Radev & Erkan (2004)) and constraint optimization based approaches (e.g., McDonald (2007)). ",
107
+ "bbox": [
108
+ 174,
109
+ 686,
110
+ 823,
111
+ 742
112
+ ],
113
+ "page_idx": 0
114
+ },
115
+ {
116
+ "type": "text",
117
+ "text": "Recently, neural network based approaches have become popular for extractive summarization. For example, Kageback et al. (2014) employed the recursive autoencoder (Socher et al. (2011)) to summarize documents, producing best performance on the Opinosis dataset (Ganesan et al. (2010)). Yin & Pei (2015) applied Convolutional Neural Networks (CNN) to project sentences to continuous vector space and then select sentences by minimizing the cost based on their ‘prestige’ and ‘diverseness’, on the task of multi-document extractive summarization. Another related work is that of Cao et al. (2016), who address the problem of query-focused multi-document summarization using query-attention-weighted CNNs. ",
118
+ "bbox": [
119
+ 174,
120
+ 750,
121
+ 825,
122
+ 861
123
+ ],
124
+ "page_idx": 0
125
+ },
126
+ {
127
+ "type": "text",
128
+ "text": "Recently, with the emergence of strong generative neural models for text Bahdanau et al. (2014), abstractive techniques are also becoming increasingly popular (Rush et al. (2015), Nallapati et al. (2016b) and Nallapati et al. (2016a)). Despite the emergence of abstractive techniques, extractive techniques are still attractive as they are less complex, less expensive, and generate grammatically and semantically correct summaries most of the time. In a very recent work, Cheng & Lapata (2016) proposed an attentional encoder-decoder for extractive single-document summarization and trained it on Daily Mail corpus, a large news data set, achieving state-of-the-art performance. Like Cheng & Lapata (2016), our work also focuses only on sentential extractive summarization of single documents using neural networks. ",
129
+ "bbox": [
130
+ 174,
131
+ 868,
132
+ 823,
133
+ 924
134
+ ],
135
+ "page_idx": 0
136
+ },
137
+ {
138
+ "type": "text",
139
+ "text": "",
140
+ "bbox": [
141
+ 174,
142
+ 103,
143
+ 825,
144
+ 174
145
+ ],
146
+ "page_idx": 1
147
+ },
148
+ {
149
+ "type": "text",
150
+ "text": "2 TWO ARCHITECTURES ",
151
+ "text_level": 1,
152
+ "bbox": [
153
+ 176,
154
+ 193,
155
+ 395,
156
+ 209
157
+ ],
158
+ "page_idx": 1
159
+ },
160
+ {
161
+ "type": "text",
162
+ "text": "Our architectures are motivated by two intuitive strategies that humans tend to adopt when they are tasked with extracting salient sentences in a document. The first strategy, which we call Classify, involves reading the whole document once to understand its contents, and then traversing through the sentences in the original document order and deciding whether or not each sentence belongs to the summary. The other strategy that we call Select involves memorizing the whole document once as before, and then picking sentences that should belong to the summary one at a time, in any order of one’s choosing. Qualitatively, the latter strategy appears to be a better one since it allows us to make globally optimal decisions at each step. While it may be harder for humans to follow this strategy since we are forgetful by nature, one may expect that the Select strategy could deliver an advantage for the machines, since ’forgetfulness’ is not a real ‘concern’ for them. In this work, we will explore both the strategies empirically and make a recommendation on which strategy is optimal under what conditions. ",
163
+ "bbox": [
164
+ 174,
165
+ 224,
166
+ 825,
167
+ 391
168
+ ],
169
+ "page_idx": 1
170
+ },
171
+ {
172
+ "type": "text",
173
+ "text": "Broadly, our Classify architecture involves an RNN based sequence classification model that sequentially classifies each sentence into 0/1 binary labels, while the Select architecture involves a generative model that sequentially generates the indices of the sentences that should belong to the summary. We will first discuss the components shared by both the architectures and then we will present each architecture separately. ",
174
+ "bbox": [
175
+ 174,
176
+ 397,
177
+ 825,
178
+ 468
179
+ ],
180
+ "page_idx": 1
181
+ },
182
+ {
183
+ "type": "text",
184
+ "text": "Shared Building Blocks: Both architectures begin with word-level bidirectional Gated Recurrent Unit (GRU) based RNNs (Chung et al. (2014)) run independently over each sentence in the document, where each time-step of the RNN corresponds to a word index in the sentence. The average pooling of the concatenated hidden states of this bidirectional RNN is then used as an input to another bidirectional RNN whose time steps correspond to sentence indices in the document. The concatenated hidden states $\\mathbf { \\hat { h } } \\mathbf { \\Phi } $ from the forward and backward layers of this second layer of bidirectional RNN at each time step are used as corresponding sentence representations. We also use the average pooling of the sentence representations as the document representation $\\mathbf { \\cdot } _ { \\mathbf { d } } ,$ . Both architectures also maintain a dynamic summary representation ‘s’ whose estimation is architecture dependent. Models under each architecture compute a score for each sentence towards its summary membership. Motivated by the need to build humanly interpretable models, we compute this score by explicitly modeling abstract features such as salience, novelty and information content as shown below: ",
185
+ "bbox": [
186
+ 174,
187
+ 474,
188
+ 825,
189
+ 655
190
+ ],
191
+ "page_idx": 1
192
+ },
193
+ {
194
+ "type": "equation",
195
+ "img_path": "images/c7e6710a5c007487cc3620f9b1389ff122cd46abf63d01d530bc2fb4a02ad338.jpg",
196
+ "text": "$$\n\\begin{array} { r l r l } { \\mathord { \\mathrm { s c o r e } } ( \\mathbf { h } _ { j } , \\mathbf { s } _ { j } , \\mathbf { d } , \\mathbf { p } _ { j } ) = w _ { c } \\sigma ( \\mathbf { W } _ { c } ^ { T } \\mathbf { h } _ { j } ) } & { } & { \\textnormal { \\# } ( \\mathrm { c o n t e n t ~ r i c h n e s s } ) } \\\\ { + w _ { s } \\sigma ( \\cos ( \\mathbf { h } _ { j } , \\mathbf { d } ) ) } & { } & { \\textnormal { \\# } ( \\mathrm { s a l ~ i e n c e ~ w . r . t . ~ d o c u m e n t } ) } \\\\ { + w _ { p } \\sigma ( \\mathbf { W } _ { p } ^ { T } \\mathbf { p } _ { j } ) } & { } & { \\textnormal { \\# } ( \\mathrm { p o s i t i o n a l ~ i m p o r t a n c e } ) } \\\\ { - w _ { r } \\sigma ( \\cos ( \\mathbf { h } _ { j } , \\mathbf { s } _ { j } ) ) } & { } & { \\textnormal { \\# } ( \\mathrm { r e d u n d a n c y ~ w . r . t . ~ s u m m a r y } ) } \\\\ { + b ) , } & { } & { \\textnormal { \\# } ( \\mathrm { b i a s ~ t e r m } ) } \\end{array}\n$$",
197
+ "text_format": "latex",
198
+ "bbox": [
199
+ 217,
200
+ 657,
201
+ 785,
202
+ 753
203
+ ],
204
+ "page_idx": 1
205
+ },
206
+ {
207
+ "type": "text",
208
+ "text": "where $j$ is the index of the sentence in the document, $\\mathbf { p } _ { j }$ is the positional embedding of the sentence computed by concatenation of embeddings corresponding to forward and backward position indices of the sentence in the document; $\\cos ( \\mathbf { a } , \\mathbf { b } )$ is the standard cosine similarity between the two vectors $\\mathbf { a }$ and $\\mathbf { b }$ ; $\\mathbf { W } _ { c }$ and $\\mathbf { W } _ { p }$ are parameter vectors to model content richness and positional importance of sentences respectively; and $w _ { c } , w _ { s } , w _ { p }$ and $w _ { r }$ are scalar weights to model relative importance of various abstract features, and are learned automatically. In the equation above, the abstract feature that each term represents is printed against the term in comments. In other words, assuming the importance weights are positive, in order for a sentence to score high for summary membership, it needs to be highly salient, content rich and occupy important positions in the document, while being least redundant with respect to the summary generated till that point. Note that our formulation of the scoring function simultaneously captures both salience of the sentence $\\mathbf { h } _ { j }$ with respect to the document $\\mathbf { d }$ as well as its redundancy with respect to the current summary representation ${ \\bf s } _ { j }$ . In the next subsection, we will describe the estimation of dynamic summary representation ${ \\bf s } _ { j }$ and the formulation of the cost function for training in each architecture. We will also present shallow and deep models under each architecture. ",
209
+ "bbox": [
210
+ 173,
211
+ 757,
212
+ 825,
213
+ 924
214
+ ],
215
+ "page_idx": 1
216
+ },
217
+ {
218
+ "type": "text",
219
+ "text": "",
220
+ "bbox": [
221
+ 174,
222
+ 103,
223
+ 825,
224
+ 146
225
+ ],
226
+ "page_idx": 2
227
+ },
228
+ {
229
+ "type": "text",
230
+ "text": "2.1 CLASSIFIER ARCHITECTURE ",
231
+ "text_level": 1,
232
+ "bbox": [
233
+ 176,
234
+ 161,
235
+ 413,
236
+ 176
237
+ ],
238
+ "page_idx": 2
239
+ },
240
+ {
241
+ "type": "text",
242
+ "text": "In this architecture, we sequentially visit each sentence in the original document order and binaryclassify the sentence in terms of whether it belongs to the summary. The probability of the sentence belonging to the summary, $P ( y _ { j } = 1 )$ is given as follows: ",
243
+ "bbox": [
244
+ 173,
245
+ 188,
246
+ 825,
247
+ 231
248
+ ],
249
+ "page_idx": 2
250
+ },
251
+ {
252
+ "type": "equation",
253
+ "img_path": "images/cf639cb5e09c35be2bed554e89629a8fcec3a69221bf950d74103991f9d28a6b.jpg",
254
+ "text": "$$\nP ( y _ { j } = 1 | \\mathbf { h } _ { j } , \\mathbf { s } _ { j } , \\mathbf { d } , \\mathbf { p } _ { j } ) = \\sigma ( { \\mathsf { s c o r e } } ( \\mathbf { h } _ { j } , \\mathbf { s } _ { j } , \\mathbf { d } , \\mathbf { p } _ { j } )\n$$",
255
+ "text_format": "latex",
256
+ "bbox": [
257
+ 328,
258
+ 234,
259
+ 669,
260
+ 252
261
+ ],
262
+ "page_idx": 2
263
+ },
264
+ {
265
+ "type": "text",
266
+ "text": "The objective function to minimize at training is the negative log-likelihood of the training data labels: ",
267
+ "bbox": [
268
+ 174,
269
+ 256,
270
+ 821,
271
+ 285
272
+ ],
273
+ "page_idx": 2
274
+ },
275
+ {
276
+ "type": "equation",
277
+ "img_path": "images/bf5817724e3e5450e54caecd6a746a0469aa79cc2f456b07d8c1ff1eb821c552.jpg",
278
+ "text": "$$\n\\ell ( \\mathbf { W } , \\mathbf { w } , \\mathbf { b } ) = - \\sum _ { d = 1 } ^ { N } \\sum _ { j = 1 } ^ { N _ { d } } ( y _ { j } ^ { d } \\log P ( y _ { j } ^ { d } = 1 | \\mathbf { h } _ { j } ^ { d } , \\mathbf { s } _ { j } ^ { d } , \\mathbf { d } _ { d } ) + ( 1 - y _ { j } ^ { d } ) \\log ( 1 - P ( y _ { j } ^ { d } = 1 | \\mathbf { h } _ { j } ^ { d } , \\mathbf { s } _ { j } ^ { d } , \\mathbf { d } _ { d } ) )\n$$",
279
+ "text_format": "latex",
280
+ "bbox": [
281
+ 181,
282
+ 285,
283
+ 820,
284
+ 332
285
+ ],
286
+ "page_idx": 2
287
+ },
288
+ {
289
+ "type": "text",
290
+ "text": "where $N$ is the size of the training corpus and $N _ { d }$ is the number of sentences in the document $d$ . Now the only detail that remains is how the dynamic summary representation ${ \\bf s } _ { j }$ is estimated. This is where the shallow and deep models under this architecture differ, and we describe them below. ",
291
+ "bbox": [
292
+ 174,
293
+ 334,
294
+ 825,
295
+ 377
296
+ ],
297
+ "page_idx": 2
298
+ },
299
+ {
300
+ "type": "image",
301
+ "img_path": "images/22dfb52afa32430a634e87ff92dc82078c1f5d3c0928962112dea681948f3f26.jpg",
302
+ "image_caption": [
303
+ "Figure 1: The shallow and deep versions of the Classifier architecture for extractive summarization. "
304
+ ],
305
+ "image_footnote": [],
306
+ "bbox": [
307
+ 223,
308
+ 387,
309
+ 767,
310
+ 703
311
+ ],
312
+ "page_idx": 2
313
+ },
314
+ {
315
+ "type": "text",
316
+ "text": "Shallow Model: In the shallow model, we estimate the dynamic summary representation as the running sum of the representations of the sentences visited so far weighted by their probability of being in the summary. ",
317
+ "bbox": [
318
+ 174,
319
+ 739,
320
+ 825,
321
+ 782
322
+ ],
323
+ "page_idx": 2
324
+ },
325
+ {
326
+ "type": "equation",
327
+ "img_path": "images/47ffb7d6698d4e3efd7472eb5951b5bd73f0f888eca720366762305560e45b08.jpg",
328
+ "text": "$$\n\\begin{array}{c} \\begin{array} { r c l } { { { \\bf { s } } _ { j } } } & { { = } } & { { \\displaystyle \\sum _ { i = 1 } ^ { j - 1 } { { \\bf { h } } _ { i } y _ { i } \\qquad } } } \\\\ { { { \\bf { s } } _ { j } } } & { { = } } & { { \\displaystyle \\sum _ { i = 1 } ^ { j - 1 } { { \\bf { h } } _ { i } y _ { i } \\qquad } } } \\end{array} \\textstyle { \\Psi } { \\mathrm { ~ ( t r a i n i n g ~ t ~ t i m e ) } } \\\\ { { \\bf { s } } _ { j } } & { { = } } & { { \\displaystyle \\sum _ { i = 1 } ^ { j - 1 } { { \\bf { h } } _ { i } { \\cal P } \\big ( { y _ { i } = 1 \\big | { { \\bf { h } } _ { i } , { \\bf { s } } _ { i } , { \\bf { d } } } \\big ) \\mathrm { ~ } } \\mathrm { ~ \\# ~ ( t e s t ~ t i m e ) } } } } \\end{array}\n$$",
329
+ "text_format": "latex",
330
+ "bbox": [
331
+ 313,
332
+ 785,
333
+ 681,
334
+ 876
335
+ ],
336
+ "page_idx": 2
337
+ },
338
+ {
339
+ "type": "text",
340
+ "text": "In other words, at training time, since the summary membership of sentences is known, the probabilities are binary, whereas at test time we use a weighted pooling based on the estimated probability that each sentence belongs to the summary. There is no need to normalize the summary representations since the cosine similarity metric we use in the scoring function of Eq. (1) automatically normalizes them. ",
341
+ "bbox": [
342
+ 173,
343
+ 895,
344
+ 826,
345
+ 924
346
+ ],
347
+ "page_idx": 2
348
+ },
349
+ {
350
+ "type": "text",
351
+ "text": "",
352
+ "bbox": [
353
+ 176,
354
+ 103,
355
+ 821,
356
+ 146
357
+ ],
358
+ "page_idx": 3
359
+ },
360
+ {
361
+ "type": "text",
362
+ "text": "Deep Model: In the deep model, we introduce an additional layer of unidirectional sentence-level GRU-RNN that takes as input the sentence representations $\\mathbf { h } _ { j }$ at each time-step. The hidden state of the new GRU $\\hat { \\mathbf { h } } _ { j } = G R U ( \\mathbf { h } _ { j } )$ is used as a replacement for sentence representation $\\mathbf { h } _ { j }$ in computing summary membership scores using Eq. (1) as well as in computing the dynamic summary representation using Eq. (3). The main idea behind using this additional layer of GRU is to allow a greater degree of non-linearity in computing the summary representation. ",
363
+ "bbox": [
364
+ 173,
365
+ 151,
366
+ 825,
367
+ 239
368
+ ],
369
+ "page_idx": 3
370
+ },
371
+ {
372
+ "type": "text",
373
+ "text": "The graphical representations of the shallow and deep models under the Classifier architecture are displayed in Figure 1 with their full set of dependencies. ",
374
+ "bbox": [
375
+ 174,
376
+ 246,
377
+ 821,
378
+ 275
379
+ ],
380
+ "page_idx": 3
381
+ },
382
+ {
383
+ "type": "text",
384
+ "text": "2.2 SELECTOR ARCHITECTURE ",
385
+ "text_level": 1,
386
+ "bbox": [
387
+ 176,
388
+ 291,
389
+ 403,
390
+ 306
391
+ ],
392
+ "page_idx": 3
393
+ },
394
+ {
395
+ "type": "text",
396
+ "text": "In this architecture, the models do not make decisions in the sequence of sentence ordering; instead, they pick one sentence at a time in an order that they deem fit. The act of picking a sentence is cast as a sequential generative model in which one sentence-index is emitted at each time step that maximizes the score in Eq. 1. Accordingly, the probability of picking a sentence with index $I ( j ) = k \\in \\{ 1 , \\dots , N _ { d } \\}$ at time-step $j$ is given by the softmax over the scoring function: ",
397
+ "bbox": [
398
+ 173,
399
+ 318,
400
+ 825,
401
+ 388
402
+ ],
403
+ "page_idx": 3
404
+ },
405
+ {
406
+ "type": "equation",
407
+ "img_path": "images/2b0d9c4387598c9b9954720e0905f8350b985fb7868d46178e2cd3d6f11e80d6.jpg",
408
+ "text": "$$\nP ( I ( j ) = k | \\mathbf { s } _ { j } , \\mathbf { h } _ { k } , \\mathbf { d } ) = \\frac { \\exp ( \\operatorname { s c o r e } ( \\mathbf { h } _ { k } , \\mathbf { s } _ { j } , \\mathbf { d } , \\mathbf { p } _ { k } ) ) } { \\sum _ { l \\in \\{ 1 , \\dots , N _ { d } \\} } \\exp ( \\operatorname { s c o r e } ( \\mathbf { h } _ { l } , \\mathbf { s } _ { j } , \\mathbf { d } , \\mathbf { p } _ { l } ) ) }\n$$",
409
+ "text_format": "latex",
410
+ "bbox": [
411
+ 276,
412
+ 395,
413
+ 720,
414
+ 433
415
+ ],
416
+ "page_idx": 3
417
+ },
418
+ {
419
+ "type": "text",
420
+ "text": "The loss function in this case is the negative log-likelihood of the selected sentences in the ground truth data as shown below. ",
421
+ "bbox": [
422
+ 173,
423
+ 439,
424
+ 823,
425
+ 468
426
+ ],
427
+ "page_idx": 3
428
+ },
429
+ {
430
+ "type": "equation",
431
+ "img_path": "images/9ec3bd4e94b4860a9d6ce678e780a77416d6387435a913826ed5ac00cd0a7f00.jpg",
432
+ "text": "$$\n\\begin{array} { r l r } { \\ell ( { \\mathbf W } , { \\mathbf w } , { \\mathbf b } ) } & { = } & { - \\displaystyle \\sum _ { d = 1 } ^ { N } \\sum _ { j = 1 } ^ { M _ { d } } \\log P ( I ( j ) ^ { ( d ) } | { \\mathbf h } _ { I ( j ) ^ { ( d ) } } , { \\mathbf s } _ { j } ^ { d } , { \\mathbf d } _ { d } ) } \\end{array}\n$$",
433
+ "text_format": "latex",
434
+ "bbox": [
435
+ 302,
436
+ 472,
437
+ 696,
438
+ 518
439
+ ],
440
+ "page_idx": 3
441
+ },
442
+ {
443
+ "type": "text",
444
+ "text": "where $M _ { d }$ is the number of sentences selected in the ground truth of document $d$ , $\\{ I ( 1 ) ^ { ( d ) } , \\dots , I ( M _ { d } ) ^ { ( d ) } \\}$ is the ordered list of selected sentence indices in the ground truth of document $d$ . The dependence of the loss function on the order of the selected sentences can be gauged by the fact that the probability of selecting a sentence at time step $j$ depends on the dynamic summary representation ${ \\bf s } _ { j }$ , which is estimated based on the all sentences selected up to time step $j - 1$ . ",
445
+ "bbox": [
446
+ 174,
447
+ 523,
448
+ 825,
449
+ 595
450
+ ],
451
+ "page_idx": 3
452
+ },
453
+ {
454
+ "type": "text",
455
+ "text": "At test time, at each time-step, the model emits the index of the sentence that has the best score given the current summary representation as shown below. ",
456
+ "bbox": [
457
+ 173,
458
+ 602,
459
+ 821,
460
+ 631
461
+ ],
462
+ "page_idx": 3
463
+ },
464
+ {
465
+ "type": "equation",
466
+ "img_path": "images/96fc557beda6ad47d02757ae82abe22e1a34bc6c9492e1b395b85e8593cd4af4.jpg",
467
+ "text": "$$\nI ( j ) = \\arg \\operatorname* { m a x } _ { k \\in \\{ 1 , \\dots , N _ { d } \\} } \\mathtt { s c o r e } ( \\mathbf { h } _ { k } , \\mathbf { s } _ { j } , \\mathbf { d } , \\mathbf { p } _ { k } )\n$$",
468
+ "text_format": "latex",
469
+ "bbox": [
470
+ 348,
471
+ 637,
472
+ 648,
473
+ 664
474
+ ],
475
+ "page_idx": 3
476
+ },
477
+ {
478
+ "type": "text",
479
+ "text": "The estimation of dynamic summary representation is done differently for the shallow and deep selector models as described below. ",
480
+ "bbox": [
481
+ 173,
482
+ 678,
483
+ 823,
484
+ 707
485
+ ],
486
+ "page_idx": 3
487
+ },
488
+ {
489
+ "type": "text",
490
+ "text": "Shallow Model: In this model, we sum the representations of the selected sentences until the time step $j$ as the dynamic summary representation. This is true for both training time and test time. ",
491
+ "bbox": [
492
+ 171,
493
+ 713,
494
+ 823,
495
+ 742
496
+ ],
497
+ "page_idx": 3
498
+ },
499
+ {
500
+ "type": "equation",
501
+ "img_path": "images/404ea9edf7be6c6e8a616daac75b8348b88549298d776ea286b85355b31becf9.jpg",
502
+ "text": "$$\n\\mathbf { s } _ { j } = \\sum _ { i = 1 } ^ { j - 1 } \\mathbf { h } _ { I ( i ) } .\n$$",
503
+ "text_format": "latex",
504
+ "bbox": [
505
+ 446,
506
+ 748,
507
+ 550,
508
+ 792
509
+ ],
510
+ "page_idx": 3
511
+ },
512
+ {
513
+ "type": "text",
514
+ "text": "Deep Model: In the deep model, we introduce an additional GRU-RNN whose time steps correspond to the sentence index emission events. At each time-step, it takes as input the representation of the previously selected sentence $\\mathbf { h } _ { I ( j - 1 ) }$ , and computes a new hidden state $\\hat { \\mathbf { h } } _ { j } = G R U ( \\mathbf { h } _ { I ( j - 1 ) } )$ . Unlike the shallow model that maintains a separate vector for summary representation ${ \\bf s } _ { j }$ , we use $\\hat { \\mathbf { h } } _ { j }$ as the summary representation ${ \\bf s } _ { j }$ at time step $j$ . This makes sense for the case of the Selector architecture since both at training and test time we make hard decisions of sentence selection, with the effect that the hidden state of the new GRU can capture a non-linear aggregation of the sentences selected until time step $j - 1$ . ",
515
+ "bbox": [
516
+ 173,
517
+ 806,
518
+ 825,
519
+ 925
520
+ ],
521
+ "page_idx": 3
522
+ },
523
+ {
524
+ "type": "image",
525
+ "img_path": "images/eb9e93e233925f834a6b17c74e15ea081d07fe5886a372e0868ee6806320d105.jpg",
526
+ "image_caption": [
527
+ "Figure 2: Selector architecture for extractive summarization. The shallow and deep versions are identical except for the fact that the simple vector representation for summary representation in the shallow version is replaced with a gated recurrent unit in the deep version. "
528
+ ],
529
+ "image_footnote": [],
530
+ "bbox": [
531
+ 246,
532
+ 111,
533
+ 750,
534
+ 362
535
+ ],
536
+ "page_idx": 4
537
+ },
538
+ {
539
+ "type": "text",
540
+ "text": "Fig. 2 shows the graphical representation of the Selector architecture with all the dependencies between the nodes. The architecture is the same for both shallow and deep models with the only difference being that the simple summary representation in the former is replaced with a gated recurrent unit in the latter. ",
541
+ "bbox": [
542
+ 173,
543
+ 448,
544
+ 825,
545
+ 505
546
+ ],
547
+ "page_idx": 4
548
+ },
549
+ {
550
+ "type": "text",
551
+ "text": "3 RELATED WORK ",
552
+ "text_level": 1,
553
+ "bbox": [
554
+ 176,
555
+ 536,
556
+ 343,
557
+ 553
558
+ ],
559
+ "page_idx": 4
560
+ },
561
+ {
562
+ "type": "text",
563
+ "text": "Previous researcher such as Shen et al. (2007) have proposed modeling extractive document summarization as a sequence classification problem using Conditional Random Fields. Our approach is different from theirs in the sense that we use RNNs in our model that do not require any handcrafted features for representing sentences and documents. ",
564
+ "bbox": [
565
+ 174,
566
+ 575,
567
+ 825,
568
+ 631
569
+ ],
570
+ "page_idx": 4
571
+ },
572
+ {
573
+ "type": "text",
574
+ "text": "The Selector architecture broadly involves ranking of sentences by some criterion, therefore does correspond to traditional methods for extractive summarization such as TextRank (Mihalcea & Tarau (2004)) that also involve ranking of sentences by salience and novelty. However, to the best of our knowledge, our Selector framework is a novel deep learning framework for extractive summarization. Broader efforts are being made in the deep learning community to build more sophisticated sequence to sequence models towards the objective of automatically learning complex tasks such as sorting sequences (Oriol Vinyals (2015); Graves et al. (2014)), but their utility for extractive summarization remains to be explored. ",
575
+ "bbox": [
576
+ 174,
577
+ 638,
578
+ 825,
579
+ 750
580
+ ],
581
+ "page_idx": 4
582
+ },
583
+ {
584
+ "type": "text",
585
+ "text": "In the deep learning framework, the extractive summarization work of Cheng & Lapata (2016) is the closest to our work. Their model is based on an encoder-decoder approach where the encoder learns the representation of sentences and documents while the decoder classifies each sentence using an attention mechanism. Broadly, their model is also in the Classifier framework, but architecturally, our approaches are different. While their approach can be termed as a multi-pass approach where both the encoder and decoder consume the same sentence representations, our approach is a deep one where the representations learned by the bidirectional GRU encoder are in turn consumed by the Classifier or Selector models. Another key difference between our work and theirs is that unlike our unsupervised greedy approach to convert abstractive summaries to extractive labels, Cheng & Lapata (2016) chose to train a separate supervised classifier using manually created labels on a subset of the data. This may yield more accurate gold extractive labels which may help boost the performance of their models, but incurs additional annotation costs. ",
586
+ "bbox": [
587
+ 173,
588
+ 757,
589
+ 825,
590
+ 922
591
+ ],
592
+ "page_idx": 4
593
+ },
594
+ {
595
+ "type": "text",
596
+ "text": "4 EXPERIMENTS AND RESULTS ",
597
+ "text_level": 1,
598
+ "bbox": [
599
+ 176,
600
+ 102,
601
+ 447,
602
+ 117
603
+ ],
604
+ "page_idx": 5
605
+ },
606
+ {
607
+ "type": "text",
608
+ "text": "Pseudo ground-truth generation: In order to train our extractive Classifier and Selector models, for each document we need ground truth in the form of sentence-level binary labels and ordered list of selected sentences respectively. However, most summarization corpora only contain human written abstractive summaries as ground truth. To solve this problem, we use an unsupervised approach to convert the abstractive summaries to extractive labels. Our approach is based on the idea that the selected sentences from the document should be the ones that maximize the Rouge score with respect to gold abstractive summaries. Since it is computationally expensive to find a globally optimal subset of sentences that maximizes the Rouge score, we employ a greedy approach, where we add one sentence at a time incrementally to the summary, such that the Rouge score of the current set of selected sentences is maximized with respect to the entire gold summary. We stop adding sentences when either none of the remaining candidate sentences improves the Rouge score upon addition to the current summary set or when the maximum summary length is reached. We return this ordered list of sentences as the ground-truth for the Selector architecture. The ordered list is converted into binary summary-membership labels that are consumed by the Classifier architecture for training. ",
609
+ "bbox": [
610
+ 174,
611
+ 141,
612
+ 825,
613
+ 334
614
+ ],
615
+ "page_idx": 5
616
+ },
617
+ {
618
+ "type": "text",
619
+ "text": "We note that similar approaches have been employed by other researchers such as Svore et al. (2007) to handle the problem of converting abstractive summaries to extractive ground truth. We would also like to point readers to a recent work by Cao et al. (2015) that proposes an ILP based approach to solve this problem optimally. Since this is not the focus of this work, we chose a simple greedy algorithm. ",
620
+ "bbox": [
621
+ 174,
622
+ 342,
623
+ 823,
624
+ 411
625
+ ],
626
+ "page_idx": 5
627
+ },
628
+ {
629
+ "type": "text",
630
+ "text": "Corpora: For our experiments, we used the Daily Mail corpus originally constructed by Hermann et al. (2015) for the task of passage-based question answering, and re-purposed for the task of document summarization as proposed in Cheng & Lapata (2016) for extractive summarization and Nallapati et al. (2016a) for abstractive summarization. Overall, we have 196,557 training documents, 12,147 validation documents and 10,396 test documents from the Daily Mail corpus. On average, there are about 28 sentences per document in the training set, and an average of 3-4 sentences in the reference summaries. The average word count per document in the training set is 802. ",
631
+ "bbox": [
632
+ 174,
633
+ 419,
634
+ 825,
635
+ 516
636
+ ],
637
+ "page_idx": 5
638
+ },
639
+ {
640
+ "type": "text",
641
+ "text": "We also used the DUC 2002 single-document summarization dataset1 consisting of 567 documents as an additional out-of-domain test set to evaluate our models. ",
642
+ "bbox": [
643
+ 174,
644
+ 523,
645
+ 821,
646
+ 551
647
+ ],
648
+ "page_idx": 5
649
+ },
650
+ {
651
+ "type": "text",
652
+ "text": "Evaluation: In our experiments below, we evaluate the performance of our models using different variants of the Rouge metric2 computed with respect to the gold abstractive summaries. Following Cheng & Lapata (2016), we use limited length Rouge recall at 75 bytes of summary as well as 275 bytes on the Daily Mail corpus. On DUC 2002 corpus, following the official guidelines, we use limited length Rouge recall at 75 words. We report the scores from Rouge-1, Rouge-2 and RougeL, which are computed using matches of unigrams, bigrams and longest common subsequences respectively, with the ground truth summaries. ",
653
+ "bbox": [
654
+ 174,
655
+ 558,
656
+ 825,
657
+ 655
658
+ ],
659
+ "page_idx": 5
660
+ },
661
+ {
662
+ "type": "text",
663
+ "text": "Baselines: On all datasets, we use Lead-3 model, which simply produces the leading three sentences of the document as the summary, as a baseline. On the Daily Mail and DUC 2002 corpora, we also report performance of $L R e g$ , a feature-rich logistic classifier used as a baseline by Cheng & Lapata (2016). On DUC 2002 corpus, we report several baselines such as Integer Linear Programming based approach (Woodsend & Lapata (2010)), and graph based approaches such as TGRAPH (Parveen et al. (2015)) and URANK (Wan (2010)) which achieve very high performance on this corpus. In addition, we also compare with the state-of-the art deep learning supervised extractive model from Cheng & Lapata (2016). ",
664
+ "bbox": [
665
+ 174,
666
+ 662,
667
+ 825,
668
+ 773
669
+ ],
670
+ "page_idx": 5
671
+ },
672
+ {
673
+ "type": "text",
674
+ "text": "Experimental Settings: We used 100-dimensional word2vec (Mikolov et al. (2013)) embeddings trained on the Daily Mail corpus as our embedding initialization. We limited the vocabulary size to 150K and the maximum sentence length to 50 words, to speed up computation. We fixed the model hidden state size at 200. We used a batch size of 32 at training time, and employed adadelta (Zeiler (2012)) to train our model. We employed gradient clipping and L-2 regularization to prevent overfitting and an early stopping criterion based on validation cost. ",
675
+ "bbox": [
676
+ 174,
677
+ 781,
678
+ 825,
679
+ 864
680
+ ],
681
+ "page_idx": 5
682
+ },
683
+ {
684
+ "type": "text",
685
+ "text": "At test time, for the Classifier models we pick sentences sorted by the predicted probabilities until we exceed the length limit as determined by the Rouge metric. Likewise, we allow the Selector models to emit sentence indices until the desired summary length is reached. For the Selector model, we also make sure the emitted sentence ids are not repeated across time steps by traversing down the sorted predicted probabilities of the softmax layer at each time step until we reach a sentence-id that was not emitted before. ",
686
+ "bbox": [
687
+ 174,
688
+ 103,
689
+ 825,
690
+ 186
691
+ ],
692
+ "page_idx": 6
693
+ },
694
+ {
695
+ "type": "text",
696
+ "text": "We note that it is possible to optimize the Classifier performance at test time using the Viterbi algorithm to compute the best sequence of labels, subject to the Markovian assumptions of the architecture and model. Similarly, it is also possible to further boost the Selector’s performance by using beam search at test time. However, in this work we used greedy classification/selection for inference since our primary interest is in comparing the two architectures, and our choice allows us to make a fair apples-to-apples comparison. ",
697
+ "bbox": [
698
+ 174,
699
+ 194,
700
+ 825,
701
+ 279
702
+ ],
703
+ "page_idx": 6
704
+ },
705
+ {
706
+ "type": "text",
707
+ "text": "Results on Daily Mail corpus: Table 1 shows the performance comparison of our models with state-of-the-art model of Cheng & Lapata (2016) and other baselines on the DailyMail corpus using Rouge recall at two different summary lengths. ",
708
+ "bbox": [
709
+ 174,
710
+ 285,
711
+ 825,
712
+ 327
713
+ ],
714
+ "page_idx": 6
715
+ },
716
+ {
717
+ "type": "table",
718
+ "img_path": "images/c674ff98fa115f3adc20cf2f0c05d137bc81b9262da7e86af0e1c9942f9d4caa.jpg",
719
+ "table_caption": [
720
+ "Table 1: Performance of various models on the entire Daily Mail test set using the limited length recall variants of Rouge with respect to the abstractive ground truth at 75 bytes and 275 bytes. Entries with asterisk are statistically significant using $9 5 \\%$ confidence interval with respect to the nearest state-of-the-art model, as estimated by the Rouge script. "
721
+ ],
722
+ "table_footnote": [],
723
+ "table_body": "<table><tr><td rowspan=\"2\">Model</td><td colspan=\"3\">Recall at 75 bytes</td><td colspan=\"3\">Recall at 275 bytes</td></tr><tr><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td></tr><tr><td>Lead-3</td><td>21.9</td><td>7.2</td><td>11.6</td><td>40.5</td><td>14.9</td><td>32.6</td></tr><tr><td>LReg(500)</td><td>18.5</td><td>6.9</td><td>10.2</td><td>N/A</td><td>N/A</td><td>N/A</td></tr><tr><td>Cheng &#x27;16</td><td>22.7</td><td>8.5</td><td>12.5</td><td>42.2</td><td>17.3*</td><td>34.8</td></tr><tr><td>Shal.-Select</td><td>25.6</td><td>10.3</td><td>14.0</td><td>41.3</td><td>16.8</td><td>34.9</td></tr><tr><td>Deep-Select</td><td>26.1</td><td>10.7</td><td>14.4</td><td>41.3</td><td>15.3</td><td>33.5</td></tr><tr><td>Shal.-Cls.</td><td>26.0</td><td>10.5</td><td>14.23</td><td>42.1</td><td>16.8</td><td>34.8</td></tr><tr><td>Deep-Cls.</td><td>26.2* ±0.4</td><td>10.7* ±0.4</td><td>14.4* ±0.4</td><td>42.2 ±0.2</td><td>16.8 ±0.2</td><td>35.0 ±0.2</td></tr></table>",
724
+ "bbox": [
725
+ 178,
726
+ 342,
727
+ 818,
728
+ 470
729
+ ],
730
+ "page_idx": 6
731
+ },
732
+ {
733
+ "type": "text",
734
+ "text": "The results show that contrary to our initial expectation, the Classifier architecture is superior to the Selector architecture. Within each architecture, the deeper models are better performing than the shallower ones. Our deep classifier model outperforms Cheng & Lapata (2016) with a statistically significant margin at 75 bytes, while matching their model at 275 bytes. One potential reason our models do not consistently outperform the extractive model of Cheng & Lapata (2016) is the additional supervised training they used to create sentence-level extractive labels to train their model. Our models instead use an unsupervised greedy approximation to create extractive labels from abstractive summaries, and as a result, may generate noisier ground truth than theirs. ",
735
+ "bbox": [
736
+ 174,
737
+ 554,
738
+ 825,
739
+ 666
740
+ ],
741
+ "page_idx": 6
742
+ },
743
+ {
744
+ "type": "text",
745
+ "text": "Results on the Out-of-Domain DUC 2002 corpus: We also evaluated the models trained on the DailyMail corpus on the out-of-domain DUC 2002 set as shown in Table 2. The performance trend is similar to that on Daily Mail. Our best model, Deep Classifier is again statistically on par with the model of Cheng & Lapata (2016). However, both models perform worse than graph-based TGRAPH (Parveen et al. (2015)) and URANK (Wan (2010)) algorithms, which are the state-of-the-art models on this corpus. Deep learning based supervised models such as ours and that of Cheng & Lapata (2016) perform very well on the domain they are trained on, but may suffer from domain adaptation issues when tested on a different corpus such as DUC 2002. ",
746
+ "bbox": [
747
+ 174,
748
+ 672,
749
+ 825,
750
+ 785
751
+ ],
752
+ "page_idx": 6
753
+ },
754
+ {
755
+ "type": "text",
756
+ "text": "5 DISCUSSION ",
757
+ "text_level": 1,
758
+ "bbox": [
759
+ 176,
760
+ 806,
761
+ 310,
762
+ 823
763
+ ],
764
+ "page_idx": 6
765
+ },
766
+ {
767
+ "type": "text",
768
+ "text": "Impact of Document Structure: In all our experiments thus far, the classifier architecture has proven superior to the selector architecture. We conjecture that decision making in the same sequence as the original sentence ordering is perhaps advantageous in document summarization since there is a smooth sequential discourse structure in news stories starting with the main highlights of the story in the beginning, more elaborate description in the middle and ending with conclusive remarks. If this is true, then in scenarios where sentence ordering is less structured, the selector architecture should be superior since it has freedom to select salient sentences in any arbitrary order. Such scenarios actually do occur in practice, e.g., summarization of a cluster of tweets on a topic where there is no specific discourse structure between individual tweets, or in multi-document summarization where a pair of sentences across document boundaries have no specific ordering. In order to test this hypothesis, we simulated such data in the Daily Mail corpus by randomly shuffling the sentences in each document in the training set and retraining models under both the architectures, and evaluating them on the original test sets. The results, summarized in Table 3, show that the Classifier architecture suffers bigger losses than the Selector architecture when the document structure is destroyed. In fact, the Selector architecture performs slightly better than the Classifier architecture when trained on the shuffled data, indicating that our hypothesis may indeed be true. ",
769
+ "bbox": [
770
+ 174,
771
+ 840,
772
+ 825,
773
+ 922
774
+ ],
775
+ "page_idx": 6
776
+ },
777
+ {
778
+ "type": "table",
779
+ "img_path": "images/da1efe1b550f6b75950576215403f8c42ab702ad038ed7167d510f3e4b2a22ff.jpg",
780
+ "table_caption": [
781
+ "Table 2: Performance of various models on the DUC 2002 set using the limited length recall variants of Rouge at 75 words. Our Deep Classifier is statistically within the margin of error at $9 5 \\%$ C.I. with respect to the model of Cheng & Lapata (2016), but both are lower than state-of-the-art results due to out-of-domain training. "
782
+ ],
783
+ "table_footnote": [],
784
+ "table_body": "<table><tr><td></td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td></tr><tr><td>Lead-3</td><td>43.6</td><td>21.0</td><td>40.2</td></tr><tr><td>LReg</td><td>43.8</td><td>20.7</td><td>40.3</td></tr><tr><td>ILP</td><td>45.4</td><td>21.3</td><td>42.8</td></tr><tr><td>TGRAPH</td><td>48.1</td><td>24.3*</td><td></td></tr><tr><td>URANK</td><td>48.5*</td><td>21.5</td><td>=</td></tr><tr><td>Cheng et al &#x27;16</td><td>47.4</td><td>23.0</td><td>43.5</td></tr><tr><td>Shallow-Selector</td><td>44.6</td><td>20.0</td><td>41.1</td></tr><tr><td>Deep-Selector</td><td>45.9</td><td>21.5</td><td>42.4</td></tr><tr><td>Shallow-Classifier</td><td>45.9</td><td>21.5</td><td>42.3</td></tr><tr><td>Deep-Classifier</td><td>46.8 ±0.9</td><td>22.6 ±0.9</td><td>43.1 ±0.9</td></tr></table>",
785
+ "bbox": [
786
+ 299,
787
+ 101,
788
+ 697,
789
+ 256
790
+ ],
791
+ "page_idx": 7
792
+ },
793
+ {
794
+ "type": "text",
795
+ "text": "",
796
+ "bbox": [
797
+ 174,
798
+ 348,
799
+ 825,
800
+ 488
801
+ ],
802
+ "page_idx": 7
803
+ },
804
+ {
805
+ "type": "table",
806
+ "img_path": "images/ad4ede34543583c50ab82344e5946fad61694ea338b6414a34d5bee74ee96656.jpg",
807
+ "table_caption": [],
808
+ "table_footnote": [],
809
+ "table_body": "<table><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=3>Trained on original data</td><td rowspan=1 colspan=3>Trained on shuffled sentences</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1>Rouge-1</td><td rowspan=1 colspan=1>Rouge-2</td><td rowspan=1 colspan=1>Rouge-L</td><td rowspan=1 colspan=1>Rouge-1</td><td rowspan=1 colspan=1>Rouge-2</td><td rowspan=1 colspan=1>Rouge-L</td></tr><tr><td rowspan=2 colspan=1>Shallow-SelectorShallow-Classifier</td><td rowspan=2 colspan=1>41.342.1</td><td rowspan=2 colspan=1>16.816.8</td><td rowspan=1 colspan=1>34.9</td><td rowspan=1 colspan=1>40.6</td><td rowspan=2 colspan=1>15.615.3</td><td rowspan=2 colspan=1>33.032.9</td></tr><tr><td rowspan=1 colspan=1>35.0</td><td rowspan=1 colspan=1>40.1</td></tr><tr><td rowspan=1 colspan=1>Deep-SelectorDeep-Classifier</td><td rowspan=1 colspan=1>41.342.2</td><td rowspan=1 colspan=1>15.316.8</td><td rowspan=1 colspan=1>33.535.0</td><td rowspan=1 colspan=1>40.540.1</td><td rowspan=1 colspan=1>15.315.1</td><td rowspan=1 colspan=1>32.532.9</td></tr></table>",
810
+ "bbox": [
811
+ 197,
812
+ 501,
813
+ 799,
814
+ 589
815
+ ],
816
+ "page_idx": 7
817
+ },
818
+ {
819
+ "type": "text",
820
+ "text": "Table 3: Simulated experiment to demonstrate the impact of document discourse structure on model performance. Evaluation is done using Rouge limited length recall at 275 bytes. The Selector architecture exhibits superior performance when the discourse structure of the document is destroyed. ",
821
+ "bbox": [
822
+ 176,
823
+ 599,
824
+ 823,
825
+ 641
826
+ ],
827
+ "page_idx": 7
828
+ },
829
+ {
830
+ "type": "text",
831
+ "text": "Qualitative Analysis: One of the advantages of our model design is teasing out various abstract features for the sake of interpretability of system predictions. In the appendix, we present a visualization (see Fig. 3 in the Appendix) of the system predictions based on the scores for various abstract features listed in Eq. (1). We also present the learned importance weights of these features in Table 4. A few representative documents are also presented in the appendix highlighting the sentences chosen by our models for summarization. ",
832
+ "bbox": [
833
+ 173,
834
+ 655,
835
+ 825,
836
+ 739
837
+ ],
838
+ "page_idx": 7
839
+ },
840
+ {
841
+ "type": "text",
842
+ "text": "6 CONCLUSION AND FUTURE WORK ",
843
+ "text_level": 1,
844
+ "bbox": [
845
+ 174,
846
+ 758,
847
+ 495,
848
+ 776
849
+ ],
850
+ "page_idx": 7
851
+ },
852
+ {
853
+ "type": "text",
854
+ "text": "In this work, we propose two neural architectures for extractive summarization. Our proposed models under these architectures are not only very interpretable, but also achieve state-of-the-art performance on two different data sets. We also empirically compare our two frameworks and suggest conditions under which each of them can deliver optimal performance. ",
855
+ "bbox": [
856
+ 174,
857
+ 791,
858
+ 825,
859
+ 847
860
+ ],
861
+ "page_idx": 7
862
+ },
863
+ {
864
+ "type": "text",
865
+ "text": "As part of our future work, we plan to further investigate the applicability of the novel Selector architecture to relatively less structured summarization problems such as summarization of multiple documents or topical clusters of tweets. In addition, we also intend to perform additional experiments on the Daily Mail dataset such as incorporating beam search in both model inference as well in pseudo ground truth generation that may result in further performance improvements. ",
866
+ "bbox": [
867
+ 174,
868
+ 853,
869
+ 823,
870
+ 924
871
+ ],
872
+ "page_idx": 7
873
+ },
874
+ {
875
+ "type": "text",
876
+ "text": "REFERENCES ",
877
+ "text_level": 1,
878
+ "bbox": [
879
+ 174,
880
+ 102,
881
+ 287,
882
+ 118
883
+ ],
884
+ "page_idx": 8
885
+ },
886
+ {
887
+ "type": "text",
888
+ "text": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473, 2014. ",
889
+ "bbox": [
890
+ 174,
891
+ 126,
892
+ 823,
893
+ 155
894
+ ],
895
+ "page_idx": 8
896
+ },
897
+ {
898
+ "type": "text",
899
+ "text": "Ziqiang Cao, Chengyao Chen, Wenjie Li, Sujian Li, Furu Wei, and Ming Zhou. Tgsum: Build tweet guided multi-document summarization dataset. CoRR, abs/1511.08417, 2015. URL http: //arxiv.org/abs/1511.08417. ",
900
+ "bbox": [
901
+ 174,
902
+ 161,
903
+ 821,
904
+ 205
905
+ ],
906
+ "page_idx": 8
907
+ },
908
+ {
909
+ "type": "text",
910
+ "text": "Ziqiang Cao, Wenjie Li, Sujian Li, and Furu Wei. Attsum: Joint learning of focusing and summarization with neural attention. arXiv preprint arXiv:1604.00125, 2016. ",
911
+ "bbox": [
912
+ 171,
913
+ 213,
914
+ 823,
915
+ 242
916
+ ],
917
+ "page_idx": 8
918
+ },
919
+ {
920
+ "type": "text",
921
+ "text": "Jaime Carbonell and Jade Goldstein. The use of mmr, diversity-based reranking for reordering documents and producing summaries. In Proceedings of the 21st annual international ACM SIGIR conference on Research and development in information retrieval, pp. 335–336. ACM, 1998. ",
922
+ "bbox": [
923
+ 173,
924
+ 251,
925
+ 825,
926
+ 308
927
+ ],
928
+ "page_idx": 8
929
+ },
930
+ {
931
+ "type": "text",
932
+ "text": "Jianpeng Cheng and Mirella Lapata. Neural summarization by extracting sentences and words. 54th Annual Meeting of the Association for Computational Linguistics, 2016. URL http://arxiv. org/abs/1603.07252. ",
933
+ "bbox": [
934
+ 171,
935
+ 315,
936
+ 823,
937
+ 358
938
+ ],
939
+ "page_idx": 8
940
+ },
941
+ {
942
+ "type": "text",
943
+ "text": "Junyoung Chung, C¸ aglar Gulc¸ehre, KyungHyun Cho, and Yoshua Bengio. Empirical evaluation ¨ of gated recurrent neural networks on sequence modeling. CoRR, abs/1412.3555, 2014. URL http://arxiv.org/abs/1412.3555. ",
944
+ "bbox": [
945
+ 173,
946
+ 366,
947
+ 823,
948
+ 410
949
+ ],
950
+ "page_idx": 8
951
+ },
952
+ {
953
+ "type": "text",
954
+ "text": "Kavita Ganesan, ChengXiang Zhai, and Jiawei Han. Opinosis: a graph-based approach to abstractive summarization of highly redundant opinions. In Proceedings of the 23rd international conference on computational linguistics, pp. 340–348. Association for Computational Linguistics, 2010. ",
955
+ "bbox": [
956
+ 174,
957
+ 416,
958
+ 823,
959
+ 460
960
+ ],
961
+ "page_idx": 8
962
+ },
963
+ {
964
+ "type": "text",
965
+ "text": "Alex Graves, Greg Wayne, and Ivo Danihelka. Neural turing machines. CoRR, abs/1410.5401, 2014. URL http://arxiv.org/abs/1410.5401. ",
966
+ "bbox": [
967
+ 169,
968
+ 468,
969
+ 823,
970
+ 497
971
+ ],
972
+ "page_idx": 8
973
+ },
974
+ {
975
+ "type": "text",
976
+ "text": "Karl Moritz Hermann, Tomas Kocisk ´ y, Edward Grefenstette, Lasse Espeholt, Will Kay, Mustafa Su-´ leyman, and Phil Blunsom. Teaching machines to read and comprehend. CoRR, abs/1506.03340, 2015. URL http://arxiv.org/abs/1506.03340. ",
977
+ "bbox": [
978
+ 174,
979
+ 505,
980
+ 825,
981
+ 549
982
+ ],
983
+ "page_idx": 8
984
+ },
985
+ {
986
+ "type": "text",
987
+ "text": "Mikael Kageback, Olof Mogren, Nina Tahmasebi, and Devdatt Dubhashi. Extractive summarization using continuous vector space models. pp. 31–39. 2014. ",
988
+ "bbox": [
989
+ 173,
990
+ 556,
991
+ 823,
992
+ 585
993
+ ],
994
+ "page_idx": 8
995
+ },
996
+ {
997
+ "type": "text",
998
+ "text": "Ryan McDonald. A study of global inference algorithms in multi-document summarization. pp. 557–564. 2007. ",
999
+ "bbox": [
1000
+ 173,
1001
+ 593,
1002
+ 823,
1003
+ 622
1004
+ ],
1005
+ "page_idx": 8
1006
+ },
1007
+ {
1008
+ "type": "text",
1009
+ "text": "Rada Mihalcea and Paul Tarau. Textrank: Bringing order into texts. Empirical Methods in Natural Language Processing, 2004. ",
1010
+ "bbox": [
1011
+ 171,
1012
+ 631,
1013
+ 823,
1014
+ 660
1015
+ ],
1016
+ "page_idx": 8
1017
+ },
1018
+ {
1019
+ "type": "text",
1020
+ "text": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations of words and phrases and their compositionality. In Advances in neural information processing systems, pp. 3111–3119, 2013. ",
1021
+ "bbox": [
1022
+ 173,
1023
+ 667,
1024
+ 825,
1025
+ 710
1026
+ ],
1027
+ "page_idx": 8
1028
+ },
1029
+ {
1030
+ "type": "text",
1031
+ "text": "Ramesh Nallapati, Bowen Zhou, Cicero dos Santos, Caglar Gulcehre, and Bing Xiang. Abstractive text summarization using sequence-to-sequence rnns and beyond. The SIGNLL Conference on Computational Natural Language Learning, 2016a. ",
1032
+ "bbox": [
1033
+ 173,
1034
+ 718,
1035
+ 825,
1036
+ 762
1037
+ ],
1038
+ "page_idx": 8
1039
+ },
1040
+ {
1041
+ "type": "text",
1042
+ "text": "Ramesh Nallapati, Bowen Zhou, and Bing Xiang. Sequence-to-sequence rnns for text summarization. International Conference on Learning Representations, Workshop track, 2016b. ",
1043
+ "bbox": [
1044
+ 173,
1045
+ 768,
1046
+ 823,
1047
+ 799
1048
+ ],
1049
+ "page_idx": 8
1050
+ },
1051
+ {
1052
+ "type": "text",
1053
+ "text": "Manjunath Kudlur Oriol Vinyals, Samy Bengio. Order matters: Sequence to sequence for sets. International Conference on Learning Representations, 2015. ",
1054
+ "bbox": [
1055
+ 173,
1056
+ 806,
1057
+ 821,
1058
+ 837
1059
+ ],
1060
+ "page_idx": 8
1061
+ },
1062
+ {
1063
+ "type": "text",
1064
+ "text": "Daraksha Parveen, Hans-Martin Ramsl, and Michael Strube. Topical coherence for graph-based extractive summarization. In Proceedings of the Conference on Empirical Methods in Natural Language Processing, pp. 19491954, 2015. ",
1065
+ "bbox": [
1066
+ 173,
1067
+ 843,
1068
+ 823,
1069
+ 887
1070
+ ],
1071
+ "page_idx": 8
1072
+ },
1073
+ {
1074
+ "type": "text",
1075
+ "text": "Dragomir Radev and Gunes Erkan. Lexrank: Graph-based lexical centrality as salience in text ¨ summarization. Journal of Artificial Intelligence Research, pp. 457–479, 2004. ",
1076
+ "bbox": [
1077
+ 173,
1078
+ 895,
1079
+ 820,
1080
+ 924
1081
+ ],
1082
+ "page_idx": 8
1083
+ },
1084
+ {
1085
+ "type": "text",
1086
+ "text": "Alexander M Rush, Sumit Chopra, and Jason Weston. A neural attention model for abstractive sentence summarization. arXiv preprint arXiv:1509.00685, 2015. \nDou Shen, Jian-Tao Sun, Hua Li, Qiang Yang, and Zheng Chen. Document summarization using conditional random fields. In Proceedings of IJCAI, 2007. \nRichard Socher, Eric H. Huang, Jeffrey Pennin, Christopher D. Manning, and Andrew Y. Ng. Dynamic pooling and unfolding recursive autoencoders for paraphrase detection. pp. 801–809. 2011. \nKrysta M. Svore, Lucy Vanderwende, and Christopher J.C. Burges. Enhancing single-document summarization by combining ranknet and third-party sources. In Proceedings of the Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning, pp. 448–457, 2007. \nXiaojun Wan. Towards a unified approach to simultaneous single-document and multidocument summarizations. In In Proceedings of the 23rd COLING, pp. 11371145, 2010. \nKristian Woodsend and Mirella Lapata. Automatic generation of story highlights. In In Proceedings of the 48th ACL, pp. 565574, 2010. \nWenpeng Yin and Yulong Pei. Optimizing sentence modeling and selection for document summarization. In Proceedings of the 24th International Conference on Artificial Intelligence, pp. 1383–1389. AAAI Press, 2015. \nMatthew D. Zeiler. ADADELTA: an adaptive learning rate method. CoRR, abs/1212.5701, 2012. URL http://arxiv.org/abs/1212.5701. ",
1087
+ "bbox": [
1088
+ 171,
1089
+ 102,
1090
+ 826,
1091
+ 440
1092
+ ],
1093
+ "page_idx": 9
1094
+ },
1095
+ {
1096
+ "type": "text",
1097
+ "text": "7 APPENDIX ",
1098
+ "text_level": 1,
1099
+ "bbox": [
1100
+ 174,
1101
+ 465,
1102
+ 294,
1103
+ 482
1104
+ ],
1105
+ "page_idx": 9
1106
+ },
1107
+ {
1108
+ "type": "text",
1109
+ "text": "In this section, we will present some additional qualitative and quantitative analysis of our models that we hope will shed some light on their behavior. ",
1110
+ "bbox": [
1111
+ 173,
1112
+ 497,
1113
+ 825,
1114
+ 526
1115
+ ],
1116
+ "page_idx": 9
1117
+ },
1118
+ {
1119
+ "type": "text",
1120
+ "text": "7.1 VISUALIZATION OF MODEL OUTPUT ",
1121
+ "text_level": 1,
1122
+ "bbox": [
1123
+ 176,
1124
+ 542,
1125
+ 472,
1126
+ 558
1127
+ ],
1128
+ "page_idx": 9
1129
+ },
1130
+ {
1131
+ "type": "text",
1132
+ "text": "In addition to being state-of-the-art performers, our models have the additional advantage of being very interpretable. The clearly separated terms in the scoring function (see Eqn. 1) allow us to tease out various factors responsible for the classification/selection of each sentence. This is illustrated in Figure 3, where we display a representative document from our validation set along with normalized scores from each abstract feature from the deep classifier model. Such visualization is especially useful in explaining to the end-user the decisions made by the system. ",
1133
+ "bbox": [
1134
+ 174,
1135
+ 569,
1136
+ 825,
1137
+ 652
1138
+ ],
1139
+ "page_idx": 9
1140
+ },
1141
+ {
1142
+ "type": "text",
1143
+ "text": "7.2 LEARNED IMPORTANCE WEIGHTS",
1144
+ "text_level": 1,
1145
+ "bbox": [
1146
+ 178,
1147
+ 670,
1148
+ 454,
1149
+ 684
1150
+ ],
1151
+ "page_idx": 9
1152
+ },
1153
+ {
1154
+ "type": "text",
1155
+ "text": "We display in Table 4 the learned importance weights corresponding to various abstract features for deep sentence selector. Confirming our intuition, the model learns that salience and redundancy are the most important predictive features for summary membership of a sentence, followed by positional feature and content based feature. Further, when the same model is trained on documents with randomly shuffled sentences, it learns very small weight for the positional features, which is exactly what one expects. ",
1156
+ "bbox": [
1157
+ 173,
1158
+ 695,
1159
+ 825,
1160
+ 780
1161
+ ],
1162
+ "page_idx": 9
1163
+ },
1164
+ {
1165
+ "type": "table",
1166
+ "img_path": "images/e85a3606233ca3d28c839bfe465c4bd7505ccec1ff2fd0e5e9413c9161db2268.jpg",
1167
+ "table_caption": [],
1168
+ "table_footnote": [],
1169
+ "table_body": "<table><tr><td rowspan=1 colspan=1>Trainingcondition</td><td rowspan=1 colspan=1>Salience</td><td rowspan=1 colspan=1>Content</td><td rowspan=1 colspan=1>Position</td><td rowspan=1 colspan=1>Redundancy</td></tr><tr><td rowspan=1 colspan=1>Original dataShuffled data</td><td rowspan=1 colspan=1>42.759.69</td><td rowspan=1 colspan=1>14.832.85</td><td rowspan=1 colspan=1>-31.090.20</td><td rowspan=1 colspan=1>40.9916.08</td></tr></table>",
1170
+ "bbox": [
1171
+ 264,
1172
+ 792,
1173
+ 730,
1174
+ 838
1175
+ ],
1176
+ "page_idx": 9
1177
+ },
1178
+ {
1179
+ "type": "text",
1180
+ "text": "Table 4: Learned weights of various abstract features from the deep sentence selector model. Salience and redundancy are the most important features as learned by the model, followed by position and content. The negative sign for position weights has no particular significance. The positional feature gets very low weight when the document structure is destroyed by randomly shuffling sentences in each document the training data. ",
1181
+ "bbox": [
1182
+ 173,
1183
+ 849,
1184
+ 826,
1185
+ 905
1186
+ ],
1187
+ "page_idx": 9
1188
+ },
1189
+ {
1190
+ "type": "table",
1191
+ "img_path": "images/244190df16aecc023b9ca11dcff4d50d95b5a2c0d6ba85f9fb8f6245c7aeb136.jpg",
1192
+ "table_caption": [],
1193
+ "table_footnote": [],
1194
+ "table_body": "<table><tr><td rowspan=1 colspan=1>Gold Summary:Redpath has ended his eight-year association with SaleSharks. Redpath spent five years as a player and three as acoach at sale. He has thanked the owners, coaches and players for their support.</td><td rowspan=1 colspan=1>Salience</td><td rowspan=1 colspan=1>Content</td><td rowspan=1 colspan=1>Novelty</td><td rowspan=1 colspan=1>Position Prob.</td><td rowspan=1 colspan=1>Position Prob.</td></tr><tr><td rowspan=1 colspan=1>Bryan Redpath has left his coaching role at Sale Sharks withimmediate effect.</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.3</td></tr><tr><td rowspan=1 colspan=1>The 43- year- old Scot ends an eight-year association withthe Aviva Premiership side, having spent five years with them as a player and three as a coach.</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.6</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.7</td></tr><tr><td rowspan=1 colspan=1> Redpath returned to Sale in June 2012 as director of rugbyafter starting a coaching career at Gloucester and progressing to the top job at Kingsholm .</td><td rowspan=1 colspan=1>0.8</td><td rowspan=1 colspan=1>0.5</td><td rowspan=1 colspan=1>0.5</td><td rowspan=1 colspan=1>0.9</td><td rowspan=1 colspan=1>0.6</td></tr><tr><td rowspan=2 colspan=1>Redpath spent five years with Sale Sharks as a player and afurther three as a coach but with Sale Sharks struggling fourmonths into Redpath&#x27;s tenure, he was removed from thedirector of rugby role at the Salford-based side and has sincebeen operating as head coach .</td><td rowspan=1 colspan=1>0.8</td><td rowspan=1 colspan=1>0.9</td><td rowspan=2 colspan=1>0.7</td><td rowspan=2 colspan=1>0.8</td><td rowspan=2 colspan=1>0.9</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td></tr><tr><td rowspan=2 colspan=1>‘I would like to thank the owners,coaches,players and stafffor all their helpand support since I returned to the club in2012.</td><td rowspan=1 colspan=1>0.4</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.1</td><td rowspan=1 colspan=1>0.7</td><td rowspan=2 colspan=1>0.2</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td></tr><tr><td rowspan=2 colspan=1> Also to the supporters who have been great with me both asa player and as a coach,&#x27; Redpath said.</td><td rowspan=1 colspan=1>0.6</td><td rowspan=1 colspan=1>0.0</td><td rowspan=1 colspan=1>0.2</td><td rowspan=1 colspan=1>0.3</td><td rowspan=1 colspan=1>0.2</td></tr><tr><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td><td rowspan=1 colspan=1></td></tr></table>",
1195
+ "bbox": [
1196
+ 214,
1197
+ 300,
1198
+ 784,
1199
+ 598
1200
+ ],
1201
+ "page_idx": 10
1202
+ },
1203
+ {
1204
+ "type": "text",
1205
+ "text": "7.3 ABLATION EXPERIMENTS ",
1206
+ "text_level": 1,
1207
+ "bbox": [
1208
+ 176,
1209
+ 103,
1210
+ 393,
1211
+ 117
1212
+ ],
1213
+ "page_idx": 11
1214
+ },
1215
+ {
1216
+ "type": "text",
1217
+ "text": "We evaluated the performance of the deep selector and deep classifier models on the validation set by deleting one abstract feature at a time from the model, with replacement. The performance numbers, displayed in Table 5, show that removing any of the features results in a small loss in performance. Note that the priority of features in the ablation experiments need not correspond to their priority in terms of learned weights in Table 4, since feature correlations may affect the two metrics differently. For the deep classifier, content and redundancy seem to matter the most while for the deep selector, dropping positional features hurts the most. Based on this analysis, we plan to investigate more thoroughly the reasons behind the poor ablation performance of salience and redundancy in the classifier and selector models respectively. ",
1218
+ "bbox": [
1219
+ 173,
1220
+ 128,
1221
+ 825,
1222
+ 256
1223
+ ],
1224
+ "page_idx": 11
1225
+ },
1226
+ {
1227
+ "type": "table",
1228
+ "img_path": "images/f81d97cdf9cc32027fac174a7a130fd80d78bbd4fe82de4fccf1182628f2d274.jpg",
1229
+ "table_caption": [],
1230
+ "table_footnote": [],
1231
+ "table_body": "<table><tr><td></td><td colspan=\"3\">Deep Classifier</td><td colspan=\"3\">Deep Selector</td></tr><tr><td>Features</td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td><td>Rouge-1</td><td>Rouge-2</td><td>Rouge-L</td></tr><tr><td>All</td><td>42.43</td><td>17.32</td><td>34.07</td><td>41.55</td><td>16.52</td><td>32.41</td></tr><tr><td>-Salience</td><td>42.40</td><td>17.27</td><td>34.09</td><td>40.82</td><td>15.99</td><td>31.45</td></tr><tr><td>-Position</td><td>41.78</td><td>16.76</td><td>33.58</td><td>39.06</td><td>14.32</td><td>29.85</td></tr><tr><td>-Content</td><td>41.12</td><td>15.78</td><td>33.23</td><td>40.68</td><td>15.83</td><td>31.13</td></tr><tr><td>-Redundancy</td><td>41.67</td><td>16.86</td><td>32.93</td><td>41.46</td><td>16.50</td><td>32.31</td></tr></table>",
1232
+ "bbox": [
1233
+ 215,
1234
+ 267,
1235
+ 782,
1236
+ 369
1237
+ ],
1238
+ "page_idx": 11
1239
+ },
1240
+ {
1241
+ "type": "text",
1242
+ "text": "Table 5: Ablation experiments on the validation set to gauge the relative importance of each abstract feature. The top row is where all four abstract features are present. The following rows corresponding to removal of one feature at a time with replacement. Evaluation is done using Rouge limited length recall at 275 bytes. Bold faced entries correspond to largest reduction in performance when the corresponding features are dropped. ",
1243
+ "bbox": [
1244
+ 173,
1245
+ 380,
1246
+ 825,
1247
+ 435
1248
+ ],
1249
+ "page_idx": 11
1250
+ },
1251
+ {
1252
+ "type": "text",
1253
+ "text": "7.4 REPRESENTATIVE DOCUMENTS AND EXTRACTIVE SUMMARIES ",
1254
+ "text_level": 1,
1255
+ "bbox": [
1256
+ 176,
1257
+ 460,
1258
+ 653,
1259
+ 476
1260
+ ],
1261
+ "page_idx": 11
1262
+ },
1263
+ {
1264
+ "type": "text",
1265
+ "text": "We display a couple of representative documents, one each from the Daily Mail and DUC corpora, highlighting the sentences chosen by deep classifier and comparing them with the gold summaries in Table 6. The examples demonstrate qualitatively that the model performs a reasonably good job in identifying the key messages of a document. ",
1266
+ "bbox": [
1267
+ 174,
1268
+ 487,
1269
+ 825,
1270
+ 542
1271
+ ],
1272
+ "page_idx": 11
1273
+ },
1274
+ {
1275
+ "type": "table",
1276
+ "img_path": "images/ee63e3b22c5dfda7cd16fe7bbf12cbd235e06179061d481426db0d9ce4fae6e1.jpg",
1277
+ "table_caption": [],
1278
+ "table_footnote": [],
1279
+ "table_body": "<table><tr><td>Document:@entityO have an interest in @entity3 defender @entity2 but are unlikely to make a move until january . the 00 - year - old @entity6 captain has yet to open talks over a new contract at @entity3 and his current deal runs out in 0000 .@entity3 defender @entity2 could be targeted by @entityO in the january transfer window @entityO like @entity2 but do n&#x27;t expect @ entity3 to sell yet they know he will be free to talk to foreign clubs from january.@entity12 will make a Omillion offer for @entity3 goalkeeper @entity14 this summer.the OO - year - old is poised to leave @entityl6 and wants to play for a @entity18 contender . @entity12 are set to make a Omillion bid for @entity2’s @en-</td></tr><tr><td>tity3 team - mate @entity14 in the summer Gold Summary:@entity2&#x27;s contract at @entity3 expires at the end of next season .OO - year-old has yet to open talks over a new deal at @entityl6 .@entity14 is poised to leave @entity3 at the end of</td></tr><tr><td>the season Document: today, the foreign ministry said that control opera- tions carried out by the corvette spiro against a korean-flagged asreceived ship fishing illegally in argentine waters were car- ried out “ in accordance with international law and in coordi- nation with the foreign ministry ”.the foreign ministry thus ap- proved the intervention by the argentine corvette when it discovered the korean ship chin yuan hsing violating argentine jurisdictional waters on OO may.... the korean ship,which had been fishing illegally in argentine waters,was sunk by its own crew after failing to answer to the argentine ship &#x27;s warnings .the crew was transferred to the chin chuan hsing,which was sailing nearby and</td></tr><tr><td>approached to rescue the crew of the sinking ship... Gold Summary:the korean-flagged fishing vessel chin yuan hs- ing was scuttled in waters off argentina on OO may OOoO .adverse weather conditions prevailed when the argentine corvette spiro spot- ted the korean ship fishing illegally in restricted argentine waters . the korean vessel did not respond to the corvette &#x27;s warning .instead ,the korean crew sank their ship,and transferred to another korean ship sailing nearby.in accordance with a uk-argentine agreement, the argentine navy turned the surveillance of the second korean ves- sel over to the british when it approached within OO nautical miles of the malvinas(falkland)islands .</td></tr></table>",
1280
+ "bbox": [
1281
+ 289,
1282
+ 248,
1283
+ 707,
1284
+ 733
1285
+ ],
1286
+ "page_idx": 12
1287
+ }
1288
+ ]
parse/train/Hk6a8N5xe/Hk6a8N5xe_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/Hk6a8N5xe/Hk6a8N5xe_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/SJg4Y3VFPS/SJg4Y3VFPS_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/_IY3_4psXuf/_IY3_4psXuf.md ADDED
@@ -0,0 +1,307 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Decoupling the Depth and Scope of Graph Neural Networks
2
+
3
+ Hanqing Zeng USC zengh@usc.edu
4
+
5
+ Muhan Zhang Peking University, BIGAI muhan@pku.edu.cn
6
+
7
+ Yinglong Xia Facebook AI yxia@fb.com
8
+
9
+ Ajitesh Srivastava USC ajiteshs@usc.edu
10
+
11
+ # Rajgopal Kannan
12
+
13
+ Andrey Malevich Facebook AI amalevich@fb.com
14
+
15
+ US ARL
16
+
17
+ Viktor Prasanna USC prasanna@usc.edu
18
+
19
+ rajgopal.kannan.civ@mail.mil
20
+
21
+ Long Jin
22
+ Facebook AI
23
+ longjin@fb.com
24
+ Ren Chen
25
+ Facebook AI
26
+ renchen@fb.com
27
+
28
+ # Abstract
29
+
30
+ State-of-the-art Graph Neural Networks (GNNs) have limited scalability with respect to the graph and model sizes. On large graphs, increasing the model depth often means exponential expansion of the scope (i.e., receptive field). Beyond just a few layers, two fundamental challenges emerge: 1. degraded expressivity due to oversmoothing, and 2. expensive computation due to neighborhood explosion. We propose a design principle to decouple the depth and scope of GNNs – to generate representation of a target entity (i.e., a node or an edge), we first extract a localized subgraph as the bounded-size scope, and then apply a GNN of arbitrary depth on top of the subgraph. A properly extracted subgraph consists of a small number of critical neighbors, while excluding irrelevant ones. The GNN, no matter how deep it is, smooths the local neighborhood into informative representation rather than oversmoothing the global graph into “white noise”. Theoretically, decoupling improves the GNN expressive power from the perspectives of graph signal processing (GCN), function approximation (GraphSAGE) and topological learning (GIN). Empirically, on seven graphs (with up to 110M nodes) and six backbone GNN architectures, our design achieves significant accuracy improvement with orders of magnitude reduction in computation and hardware cost.
31
+
32
+ # 1 Introduction
33
+
34
+ Graph Neural Networks (GNNs) have now become the state-of-the-art models for graph mining [48, 13, 58], facilitating applications such as social recommendation [35, 52, 37], knowledge understanding [40, 38, 59] and drug discovery [43, 32]. With the numerous architectures proposed [22, 12, 44, 49], it still remains an open question how to effectively scale up GNNs with respect to both the model size and graph size. There are two fundamental obstacles when we increase the number of GNN layers:
35
+
36
+ • Expressivity challenge (i.e., oversmoothing [30, 36, 39, 17]): iterative mixing of neighbor features collapses embedding vectors of different nodes into a fixed, low-dimensional subspace.
37
+
38
+ • Scalability challenge (i.e., neighbor explosion [7, 8, 9, 55]): recursive expansion of multi-hop neighborhood results in exponentially growing receptive field size (and thus computation cost).
39
+
40
+ To address the expressivity challenge, most remedies focus on neural architecture exploration: [44, 12, 49, 29] propose more expressive aggregation functions when propagating neighbor features. [50, 28, 18, 34, 1, 33, 31] use residue-style design components to construct flexible and dynamic receptive fields. Among them, [50, 28, 18] use skip-connection across multiple GNN layers, and [34, 1, 33, 31] encourage multi-hop message passing within each single layer. As for the scalability challenge, sampling methods have been explored to improve the training speed and efficiency. Importance based layer-wise sampling [8, 7, 61] and subgraph-based sampling [54, 9, 55] alleviate neighbor explosion, while preserving training accuracy. Unfortunately, such sampling methods cannot be naturally generalized to inference without accuracy loss (see also Section 4).
41
+
42
+ The above lines of research have only guided us to partial solutions. Yet what is the root cause of both the expressivity and scalability challenges? Setting aside the design of GNN architectures or sampling schemes, we provide an alternative perspective by interpretting the data in a different way.
43
+
44
+ Two views on the graph. Given an input graph $\mathcal { G }$ with node set $\nu$ , the most straightforward way to understand $\mathcal { G }$ is by viewing it as a single global graph. So any two nodes $u$ and $v$ belong to the same $\mathcal { G }$ , and if $u$ and $v$ lie in the same connected component, they will ultimately see each other in their own neighborhood no matter how far away $u$ and $v$ are. Alternative to the above global view, we can take a local view on $\mathcal { G }$ . For each node $v$ , there is a latent $\mathcal { G } _ { [ v ] }$ surrounding it which captures the characteristics of just $v$ itself. The full $\mathcal { G }$ is observed (by the data collection process) as the union of all such $\mathcal { G } _ { [ v ] }$ . Consequently, $\nu _ { [ v ] }$ rather than $\nu$ defines $v$ ’s neighborhood: if $u \notin \mathcal { V } _ { [ v ] }$ , $v$ will never consider $u$ as a neighbor. Our “decoupling” design is based on the local view.
45
+
46
+ Scope of GNNs. Both the expressivity and scalability challenges are closely related to the enlargement of the GNN’s scope (i.e., receptive field). More importantly, how we define the scope is determined by how we view $\mathcal { G }$ . With the global view above, an $L$ -layer GNN has the scope of the full $L$ -hop neighborhood. With the local view, the GNN scope is simply $\nu _ { [ v ] }$ regardless of the GNN depth. The two existing lines of research, one on architectural exploration and the other on sampling, both take the global view. Consequently, the depth (i.e., number of layers) and scope of such GNNs are tightly coupled. Such coupling significantly limits the design space exploration of GNNs with various depths [53]. Consider the example of ogbn-products, a medium-scale graph in Open Graph Benchmark [16]. The average number of 4-hop neighbors is around $0 . 6 \mathbf { M }$ , corresponding to $2 5 \%$ of the full graph size. To generate representation of a single target node, a 4-layer coupled GNN needs to propagate features from the $0 . 6 \mathbf { M }$ neighbors. Such propagation can be inefficient or even harmful since most nodes in the huge neighborhood would be barely relevant to the target node.
47
+
48
+ Decoupling the GNN depth and scope. Taking the local view on $\mathcal { G }$ , we propose a general design principle to decouple the GNN depth and scope. To generate the representation of the target node $v$ , we first extract from $\mathcal { G }$ a small subgraph $\mathcal { G } _ { [ v ] }$ surrounding $v$ . On top of $\mathcal { G } _ { [ v ] }$ , we apply a GNN whose number of layers and message passing functions can be flexibly chosen. “Decoupling” means we treat the scope extraction function and GNN depth as two independently tuned parameters – effectively we introduce a new dimension in the GNN design space. We intuitively illustrate the benefits of decoupling by an example GNN construction, where the scope is the $L$ -hop neighborhood and depth is $L ^ { \prime }$ $L ^ { \prime } > L )$ ). When we use more layers $( L ^ { \prime } )$ than hops $( L )$ , each pair of subgraph nodes may exchange messages multiple times. The extra message passing helps the GNN better absorb and embed the information within scope, and thus leads to higher expressivity. We further justify the above intuition with multifaceted theoretical analysis. From the graph signal processing perspective, we prove that decoupled-GCN performs local-smoothing rather than oversmoothing, as long as the scopes of different target nodes are different. From the function approximation perspective, we construct a linear target function on neighbor features and show that decoupling the GraphSAGE model reduces the function approximation error. From the topological learning perspective, we apply deep GIN-style message passing to differentiate non-regular subgraphs of a regular graph. As a result, our model is more powerful than the 1-dimensional Weisfeiler-Lehman test [41].
49
+
50
+ Practical implementation: SHADOW-GNN. The decoupling principle leads to a practical implementation, SHADOW-GNN: Decoupled GNN on a shallow subgraph. In SHADOW-GNN, the scope is a shallow yet informative subgraph, only containing a fraction of the 2- or 3-hop neighbors of $\mathcal { G }$ (see Section 5). On the other hand, the model of SHADOW-GNN is deeper (e.g., $L ^ { \prime } = 5$ ). To efficiently construct the shallow scope on commodity hardware, we propose various subgraph extraction functions. To better utilize the subgraph node embeddings after deep message passing, we propose neural architecture extensions such as pooling and ensemble. Empirically, our “decoupling” design improves both the accuracy and scalability. On seven benchmarks (including the largest ogbn-papers100M graph with 111M nodes) and across two graph learning tasks, SHADOW-GNNs achieve significant accuracy gains compared to the original models. Meanwhile, the computation and hardware costs are reduced by orders of magnitude. Our code is available at https://github.com/facebookresearch/shaDow_GNN
51
+
52
+ # 2 Preliminaries
53
+
54
+ Let $\mathcal { G } \left( \mathcal { V } , \mathcal { E } , \boldsymbol { X } \right)$ be an undirected graph, with node set $\nu$ , edge set $\mathcal { E } \subseteq \mathcal { V } \times \mathcal { V }$ and node feature matrix $\pmb { X } \in \mathbb { R } ^ { | \mathcal { V } | \times d }$ . Let $\mathcal { N } _ { v }$ denote the set of $v$ ’s direct neighbors in $\mathcal { G }$ . The $u ^ { \mathrm { t h } }$ row of $\boldsymbol { X }$ corresponds to the length- $d$ feature of node $u$ . Let $\pmb { A }$ be the adjacency matrix of $\mathcal { G }$ where $A _ { u , v } = 1$ if edge $( u , v ) \in \mathcal { E }$ and $A _ { u , v } = 0$ otherwise. Let $_ { D }$ be the diagonal degree matrix of $\pmb { A }$ . Denote $\widetilde { A } = D _ { * } ^ { - \frac 1 2 } A _ { * } D _ { * } ^ { - \frac 1 2 }$ as the adjacency matrix after symmetric normalization ( $\cdot _ { * } , *$ means augmented with self-edges), and $\stackrel { \frown } { A } = D ^ { \stackrel { - 1 } { - } } A$ (or $D _ { * } ^ { - 1 } A _ { * , }$ ) as the one after random walk normalization. Let subscript “ $[ u ] ^ { \dag }$ mark the quantities corresponding to a subgraph surrounding node $u$ . For example, the subgraph itself is $\mathcal { G } _ { [ u ] }$ . Subgraph matrices $X _ { [ v ] }$ and $\boldsymbol { A } _ { [ v ] }$ have the same dimension as the original $\boldsymbol { X }$ and $\pmb { A }$ . Yet, row vector $\left[ \boldsymbol { X } _ { [ v ] } \right] _ { u } = \mathbf { 0 }$ for $u \notin \mathcal { V } _ { [ v ] }$ . Element $\left[ { \pmb A } _ { [ v ] } \right] _ { u , w } = 0$ if either $u \notin \mathcal { V } _ { [ v ] }$ or $w \notin \mathcal { V } _ { [ v ] }$ For an $L$ -layer GNN, let superscript “ $( \ell ) ^ { \dag }$ denote the layer- $\ell$ quantities. Let $d ^ { ( \ell ) }$ be the number of channels for layer $\ell$ ; $\pmb { H } ^ { ( \ell - 1 ) } \in \mathbb { R } ^ { | \mathcal { V } | \times d ^ { ( \ell - 1 ) } }$ and $H ^ { ( \ell ) } \in \mathbb { R } ^ { | \mathcal { V } | \times d ^ { ( \ell ) } }$ be the input and output features. So $H ^ { ( 0 ) } = X$ and $d ^ { ( 0 ) } = d$ . Further, let $\sigma$ be the activation and $\mathbf { \boldsymbol { W } } ^ { ( \ell ) }$ be the learnable weight. For example, a GCN layer performs $\pmb { H } ^ { ( \ell ) } = \sigma \left( \widetilde { A } \pmb { H } ^ { ( \ell - 1 ) } \pmb { W } ^ { ( \ell ) } \right)$ . A GraphSAGE layer performs $\begin{array} { r } { \pmb { H } ^ { ( \ell ) } = \sigma \left( \pmb { H } ^ { ( \ell - 1 ) } \pmb { W } _ { 1 } ^ { ( \ell ) } + \widehat { \pmb { A } } \pmb { H } ^ { ( \ell - 1 ) } \pmb { W } _ { 2 } ^ { ( \ell ) } \right) . } \end{array}$
55
+
56
+ Our analysis in Section 3 mostly focuses on the node classification task. Yet our design can be generalized to the link prediction task, as demonstrated by our experiments in Section 5.
57
+
58
+ Definition 2.1. (Depth of subgraph) Assume the subgraph $\mathcal { G } _ { [ v ] }$ is connected. The depth of $\mathcal { G } _ { [ v ] }$ is defined as $\mathrm { m a x } _ { u \in \mathcal { V } _ { [ v ] } } d ( u , v ) ;$ , where $d ( u , v )$ denotes the shortest path distance from u to v.
59
+
60
+ The above definition enables us to make comparison such as “the GNN is deeper than the subgraph”.
61
+ For “decoupling the depth and scope”, we refer to the model depth rather than the subgraph depth.
62
+
63
+ # 3 Decoupling the Depth and Scope of GNNs
64
+
65
+ “Decoupling the depth and scope of GNNs” is a design principle to improve the expressivity and scalability of GNNs without modifying the layer architecture. We name a GNN after decoupling a SHADOW-GNN (see Section 3.6 for explanation of the name). Compared with a normal GNN, SHADOW-GNN contains an additional component: the subgraph extractor EXTRACT. To generate embedding of a target node $v$ , SHADOW-GNN proceeds as follows: 1. We use EXTRACT $( v , { \mathcal { G } } )$ to return a connected $\mathcal { G } _ { [ v ] }$ , where $\mathcal { G } _ { [ v ] }$ is a subgraph containing $v$ , and the depth of $\mathcal { G } _ { [ v ] }$ is $L$ . 2. We build an $L ^ { \prime }$ -layer GNN on $\mathcal { G } _ { [ v ] }$ by treating $\mathcal { G } _ { [ v ] }$ as the new full graph and by ignoring all nodes / edges not in $\mathcal { G } _ { [ v ] }$ . So $\mathcal { G } _ { [ v ] }$ is the scope of SHADOW-GNN. The key point reflecting “decoupling” is that $L ^ { \prime } > L$
66
+
67
+ A normal GNN is closely related to a SHADOW-GNN. Under the normal setup, an $L$ -layer GNN operates on the full $\mathcal { G }$ and propagates the influence from all the neighbors up to $L$ hops away from $v$ Such a GNN is equivalent to a model where EXTRACT returns the full $L$ -hop subgraph and $L ^ { \prime } = L$ .
68
+
69
+ We theoretical demonstrate how SHADOW-GNN improves expressivity from three different angles. On SHADOW-GCN (Section 3.1), we come from the graph signal processing perspective. The GCN propagation can be interpreted as applying filtering on the node signals [47]. Deep models correspond to high-pass filters. Filtering the local graph $\mathcal { G } _ { [ v ] }$ preserves richer information than the global $\mathcal { G }$ . On SHADOW-SAGE (Section 3.2), we view the GNN as a function approximator. We construct a target function and study how decoupling reduces the approximation error. On SHADOW-GIN (Section 3.3), we focus on learning topological information. We show that decoupling helps capture local graph structure which the 1D Weisfeiler-Lehman test fails to capture.
70
+
71
+ # 3.1 Expressivity Analysis on SHADOW-GCN: Graph Signal Processing Perspective
72
+
73
+ GCNs [22] suffer from “oversmoothing” [30] – Each GCN layer smooths the features of the direct (i.e., 1-hop) neighbors, and many GCN layers smooths the features of the full graph. Eventually, such repeated smoothing process propagates to any target node just the averaged feature of all $\nu$ . “Oversmoothing” thus incurs significant information loss by wiping out all local information.
74
+
75
+ Formally, suppose the original features $\boldsymbol { X }$ reside in a high-dimensional space $\mathbb { R } ^ { | \nu | \times d }$ . Oversmoothing pushes $\boldsymbol { X }$ towards a low-dimensional subspace $\mathbb { R } ^ { | \nu | \times d ^ { \prime } }$ , where $d ^ { \prime } < d$ . Corresponding analysis comes from two perspectives: oversmoothing by a deep $G C N$ , and oversmoothing by repeated GCNstyle propagation. The former considers the full neural network with non-linear activation, weight and bias. The later characterizes the aggregation matrix $M = \operatorname* { l i m } _ { L \to \infty } \widetilde { A } ^ { L } X$ . It is shown that even with the vanilla architecture, a deep GCN with bias parameters does not oversmooth [17]. In addition, various tricks [60, 39, 34] can prevent oversmoothing from the neural network perspective. However, a deep GCN still suffers from accuracy drop, indicating that the GCN-style propagation (rather than other GCN components like activation and bias) may be the fundamental reason causing difficulty in learning. Therefore, we study the asymptotic behavior of the aggregation matrix $M$ under the normal and SHADOW design. In other words, here in Section 3.1, we ignore the non-linear activation and bias parameters. Such setup is consistent with many existing literature such as [30, 33, 34, 60].
76
+
77
+ Proposition 3.1. $\infty$ number of feature propagation by SHADOW-GCN leads to
78
+
79
+ $$
80
+ \pmb { m } _ { [ v ] } = \left[ e _ { [ v ] } \right] _ { v } \cdot \left( e _ { [ v ] } ^ { \top } \pmb { X } _ { [ v ] } \right)
81
+ $$
82
+
83
+ where $e _ { [ v ] }$ is defined by $\begin{array} { r } { \left[ e _ { [ v ] } \right] _ { u } = \sqrt { \frac { \delta _ { [ v ] } ( u ) } { \sum _ { w \in \mathcal { V } _ { [ v ] } } \delta _ { [ v ] } ( w ) } } } \end{array}$ ; $\delta _ { [ v ] } \left( u \right)$ returns the degree of u in $\mathcal { G } _ { [ v ] } p l u s ~ l$
84
+
85
+ Oversmoothing by normal GCN propagation. With a large enough $L$ , the full $L$ -hop neighborhood becomes $\nu$ (assuming connected $\mathcal { G }$ ). So $\forall ~ u , v$ , we have $\mathcal { G } _ { [ u ] } = \mathcal { G } _ { [ v ] } = \mathcal { G }$ , implying $e _ { [ u ] } = e _ { [ v ] }$ and $X _ { [ u ] } = X _ { [ v ] } = X$ . From Proposition 3.1, the aggregation converges to a point where $n o$ feature and little structural information of the target is preserved. The only information in $m _ { [ v ] }$ is $v$ ’s degree.
86
+
87
+ Local-smoothing by SHADOW-GCN propagation. With a fixed subgraph, no matter how many times we aggregate using $\widetilde { A } _ { [ v ] }$ , the layers will not include the faraway irrelevant nodes. From Proposition 3.1, $m _ { [ v ] }$ is a linear combination of the neighbor features $X _ { [ v ] }$ . Increasing the number of layers only pushes the coefficients of each neighbor features to the stationary values. The domain $X _ { [ v ] }$ of such linear transformation is solely determined by EXTRACT and is independent of the model depth. Intuitively, if EXTRACT picks non-identical subgraphs for two nodes $u$ and $v$ , the aggregations should be different due to the different domains of the linear transformation. Therefore, SHADOW-GCN preserves local feature information whereas normal GCN preserves none. For structural information in $m _ { [ v ] }$ , note that $e _ { [ v ] }$ is a normalized degree distribution of the subgraph around $v$ , and -e[v]v indicates the role of the target node in the subgraph. By simply letting EXTRACT return the 1-hop subgraph, $\left[ e _ { [ v ] } \right] _ { v }$ alone already contains all the information preserved by a normal GCN, which is $v$ ’s degree in $\bar { \mathcal { G } }$ . For the general EXTRACT, $e _ { [ v ] }$ additionally reflects $v$ ’s ego-net structure. Thus, a deep SHADOW-GCN preserves more structural information than a deep GCN.
88
+
89
+ Theorem 3.2. Let $\overline { { \pmb { m } } } _ { [ v ] } = \phi _ { \mathcal { G } } \left( v \right) \cdot \pmb { m } _ { [ v ] }$ where $\phi _ { \mathcal { G } }$ is any non-zero function only depending on the structural property of $v$ . Let $\mathcal { M } = \mathrm { \large ~ \left\{ ~ \overline { { ~ } } m _ { [ v ] } ~ \lvert ~ v ~ \in ~ \mathcal { V } \right\} ~ }$ . Given $\mathcal { G }$ , EXTRACT and some continuous probability distribution in $\mathbb { R } ^ { | \nu | \times d }$ to generate $\boldsymbol { X }$ , then $\overline { { \pmb { m } } } _ { [ v ] } \neq \overline { { \pmb { m } } } _ { [ u ] }$ if $\mathcal { V } _ { [ u ] } \neq \mathcal { V } _ { [ v ] }$ , almost surely.
90
+
91
+ Corollary 3.2.1. Consider EXTRA $C T _ { 1 }$ , where $\forall v \in \mathcal { V }$ , $| \nu _ { [ v ] } | \leq n$ . Then $\begin{array} { r } { | \mathcal { M } | \geq \left\lceil \frac { | \mathcal { V } | } { n } \right\rceil } \end{array}$ a.s.
92
+
93
+ Corollary 3.2.2. Consider EXTRA $C T _ { 2 }$ , where $\forall u , v \in \mathcal { V }$ , $\mathcal { V } _ { [ v ] } \neq \mathcal { V } _ { [ u ] }$ . Then $| \mathcal { M } | = | \mathcal { V } | a . s$
94
+
95
+ Theorem 3.2 proves SHADOW-GCN does not oversmooth: 1. A normal GCN pushes the aggregation of same-degree nodes to the same point, while SHADOW-GCN with $\mathtt { E X T R A C T } _ { 2 }$ ensures any two nodes (even with the same degree) have different aggregation. 2. A normal GCN wipes out all information in $\boldsymbol { X }$ after many times of aggregation, while SHADOW-GCN always preserves feature information. Particularly, with φG (v) = δ[v](v)−1/2, a normal GCN generates only one unique value of for all $v$ . By contrast, SHADOW-GNN generates $| \nu |$ different values for any $\phi _ { \mathcal { G } }$ function.
96
+
97
+ We compare the expressivity by showing 1. SHADOW-SAGE can express all functions GraphSAGE can, and 2. SHADOW-SAGE can express some function GraphSAGE cannot. Recall, a GraphSAGE layer performs the following: $\begin{array} { r } { \dot { \overline { { h _ { v } ^ { ( \ell ) } } } } = \sigma \left( \left( W _ { 1 } ^ { ( \ell ) } \right) ^ { \top } h _ { v } ^ { ( \ell - 1 ) } + \left( W _ { 2 } ^ { ( \ell ) } \right) ^ { \top } \left( \frac { 1 } { | \mathcal { N } _ { v } | } \sum _ { u \in \mathcal { N } _ { v } } \dot { h _ { u } ^ { ( \ell - 1 ) } } \right) \right) . } \end{array}$ We can prove Point 1 by making an $L ^ { \prime }$ -layer SHADOW-SAGE identical to an $L$ -layer GraphSAGE with the following steps: 1. let EXTRACT return the full $L$ -hop neighborhood, and 2. set $\bar { \boldsymbol { W } } _ { 1 } ^ { ( \ell ) } = \boldsymbol { I }$ , $W _ { 2 } ^ { ( \ell ) } = { \bf 0 }$ for $L + 1 \leq \ell \leq L ^ { \prime }$ . For point 2, we consider a target function: $\tau \left( \boldsymbol { X } , \boldsymbol { \mathcal { G } } _ { [ v ] } \right) =$ $\begin{array} { r } { C \cdot \sum _ { u \in \mathcal { V } _ { [ v ] } } \delta _ { [ v ] } \left( u \right) \cdot \pmb { x } _ { u } } \end{array}$ for some neighborhood $\mathcal { G } _ { [ v ] }$ , scaling constant $C$ and $\delta _ { [ v ] } \left( u \right)$ as defined in Proposition 3.1. An expressive model should be able to learn well this simple linear function $\tau$ .
98
+
99
+ GraphSAGE cannot learn $\tau$ accurately, while SHADOW-SAGE can. We first show the GraphSAGE case. Let the depth of $\mathcal { G } _ { [ v ] }$ be $L$ . Firstly, we need GraphSAGE to perform message passing for exactly $L$ times (where such a model can be implemented by, e.g., $L$ layers or $L ^ { \prime }$ layers with $W _ { 2 } = \mathbf { 0 }$ for $L ^ { \prime } - L$ layers). Otherwise, the extra $L ^ { \prime } - L$ message passings will propagate influence from nodes $v ^ { \prime } \notin \mathcal { V } _ { [ v ] }$ , violating the condition that $\tau$ is independent of $v ^ { \prime }$ . Next, suppose GraphSAGE can learn a function $\zeta$ such that on some $\mathcal { G } _ { [ v ] } ^ { \prime }$ , we have $\zeta \left( \mathcal { G } _ { [ v ] } ^ { \prime } \right) = \tau \left( \mathcal { G } _ { [ v ] } ^ { \prime } \right)$ . We construct another $\mathcal { G } _ { [ v ] } ^ { \prime \prime }$ by adding an extra edge $e$ connecting two depth- $L$ nodes in $\mathcal { G } _ { [ v ] } ^ { \prime }$ . Edge $e$ changes the degree distribution $\delta _ { [ v ] } \left( \cdot \right)$ , and thus $\tau \left( \mathcal { G } _ { [ v ] } ^ { \prime } \right) \neq \tau \left( \mathcal { G } _ { [ v ] } ^ { \prime \prime } \right)$ . On the other hand, there is no way for GraphSAGE to propagate the influence of edge $e$ to the target $v$ , unless the model performs at least $L + 1$ message passings. So $\zeta \left( \mathcal { G } _ { [ v ] } ^ { \prime } \right) = \zeta \left( \bar { \mathcal { G } } _ { [ v ] } ^ { \prime \prime } \right)$ regardless of the activation function and weight parameters. Therefore, $\zeta \neq \tau$ . For SHADOW-SAGE, let EXTRACT return $\mathcal { G } _ { [ v ] }$ . Then the model can output $\zeta ^ { \prime } = \left[ \widehat { \cal A } _ { [ v ] } ^ { L ^ { \prime } } { \cal X } \right] _ { v , }$ after we 1. set $W _ { 1 } ^ { ( \ell ) } = \mathbf { 0 }$ and $W _ { 2 } ^ { ( \ell ) } = I$ for all layers, and 2. either remove the non-linear activation or bypass ReLU by shifting $\boldsymbol { X }$ with bias. With known results in Markov chain convergence theorem [27], we derive the following theorem by analyzing the convergence of $\widehat { A } _ { [ v ] } ^ { L ^ { \prime } }$ when $L ^ { \prime } \to \infty$ .
100
+
101
+ Theorem 3.3. SHADOW-SAGE can approximate $\tau$ with error decaying exponentially with depth.
102
+
103
+ We have the following conclusions from above: 1. SHADOW-SAGE is more expressive than GraphSAGE. 2. appropriate EXTRACT function improves SHADOW-GNN expressivity, 3. There exists cases where it may be desirable to set the SHADOW-GNN depth much larger than the subgraph depth.
104
+
105
+ # 3.3 Expressivity Analysis on SHADOW-GIN: Topological Learning Perspective
106
+
107
+ While GCN and GraphSAGE are popular architectures in practice, they are not the theoretically most discriminative ones. The work in [49] establishes the relation in discriminativeness between GNNs and 1-dimensional Weisfeiler-Lehman test (i.e., 1-WL). And GIN [49] is an example architecture achieving the same discriminativeness as 1-WL. We show that applying the decoupling principle can further improve the discriminativeness of such GNNs, making them more powerful than 1-WL.
108
+
109
+ 1-WL is a graph isomorphism test aiming at distinguishing graphs of different structures. A GNN as expressive as 1-WL thus well captures the topological property of the target node. While 1-WL is already very powerful, it may still fail in some cases. e.g., it cannot distinguish certain non-isomorphic, regular graphs. To understand why SHADOW-GNN works, we first need to un
110
+
111
+ ![](images/0fd819a2beeeba3fca87a30aa3012f69f2b800a51d7754d5d403f4ebe7ed94bb.jpg)
112
+ Figure 1: Example 3-regular graph and the 1-hop subgraphs of the target nodes $u$ and $v$ .
113
+
114
+ derstand why 1-WL fails. In a regular graph, all nodes have the same degree, and thus the “regular” property describes a global topological symmetry among nodes. Unfortunately, 1-WL (and the corresponding normal GNN) also operates globally on $\mathcal { G }$ . Intuitively, on two different regular graphs, there is no way for 1-WL (and the normal GNN) to assign different labels by breaking such symmetry.
115
+
116
+ On the other hand, SHADOW-GNN can break such symmetry by applying decoupling. In Section 1, we have discussed how SHADOW-GNN is built from the local perspective on the full graph. The key property benefiting SHADOW-GNN is that a subgraph of a regular graph may not be regular. Thus, SHADOW-GNN can distinguish nodes in a regular graph with the non-regular subgraphs as the scope. We illustrate the intuition with the example in Figure 1. The graph $\mathcal { G }$ is 3-regular and we assume all nodes have identical features. Our goal is to discriminate nodes $u$ and $v$ since their neighborhood structures are different. No matter how many iterations 1-WL runs, or how many layers the normal GNN has, they cannot distinguish $u$ and $v$ . On the other hand, a SHADOW-GNN with 1-hop EXTRACT and at least 2 layers can discriminate $u$ and $v$ .
117
+
118
+ Theorem 3.4. Consider GNNs whose layer function is defined by
119
+
120
+ $$
121
+ \pmb { h } _ { v } ^ { ( \ell ) } = f _ { 1 } ^ { ( \ell ) } \left( \pmb { h } _ { v } ^ { ( \ell - 1 ) } , \ \sum _ { u \in \mathcal { N } _ { v } } f _ { 2 } ^ { ( \ell ) } \left( \pmb { h } _ { v } ^ { ( \ell - 1 ) } , \pmb { h } _ { u } ^ { ( \ell - 1 ) } \right) \right) ,
122
+ $$
123
+
124
+ where $f _ { 1 } ^ { ( \ell ) }$ and $f _ { 2 } ^ { ( \ell ) }$ are the update and message functions of layer- $\ell ,$ , implemented as MLPs. Then, such SHADOW-GNN is more discriminative than the -dimensional Weisfeiler-Lehman test.
125
+
126
+ The theorem also implies that SHADOW-GIN is more discriminative than a normal GIN due to the correspondence between GIN and 1-WL. See Appendix A for the proof of all theorems in Section 3.
127
+
128
+ # 3.4 Subgraph Extraction Algorithms
129
+
130
+ Our decoupling principle does not rely on specific subgraph extraction algorithms. Appropriate EXTRACT can be customized given the characteristic of $\mathcal { G }$ , and different EXTRACT leads to different implementation of our decoupling principle. In general, we summarize three approaches to design EXTRACT: 1. heuristic based, where we pick graph metrics that reflect neighbor importance and then design EXTRACT by such metrics; 2. model based, where we assume a generation process on $\mathcal { G }$ and set EXTRACT as the reverse process, and 3. learning based, where we integrate the design of EXTRACT as part of the GNN training. In the following, we present several examples on heuristic based EXTRACT, which we also empirically evaluate in Section 5. We leave detailed evaluation on the model based and learning based EXTRACT as future work. See also Appendix C for details.
131
+
132
+ Example heuristic based EXTRACT. The algorithm is derived from the selected graph metrics. For example, with the metric being shortest path distance, we design a $L$ -hop extractor. i.e., EXTRACT returns the full set or randomly selected subset of the target node’s $L$ -hop neighbors in $\mathcal { G }$ . Picking the random walk landing probability as the metric, we can design a PPR-based extractor. i.e., we first run the Personalized PageRank (PPR) algorithm on $\mathcal { G }$ to derive the PPR score of other nodes relative to the target node. Then EXTRACT define $\nu _ { [ v ] }$ by picking the top- $K$ nodes with the highest PPR scores. The subgraph $\mathcal { G } _ { [ v ] }$ is the node-induced subgraph1 of $\mathcal { G }$ from $\nu _ { [ v ] }$ . One can easily extend this approach by using other metrics such as Katz index [20], SimRank [19] and feature similarity.
133
+
134
+ # 3.5 Architecture
135
+
136
+ Subgraph pooling. For a normal GNN performing node classification, the multi-layer message passing follows a “tree structure”. The nodes at level $L$ of the tree correspond to the $L$ -hop neighborhood. And the tree root outputs the final embedding of the target node. Thus, there is no way to apply subgraph pooling or READOUT on the final layer output, since the “pool” only contains a single vector. For a SHADOW-GNN, since we decouple the $\bar { L } ^ { \mathrm { t h } }$ layer from the $L$ -hop neighborhood, it is natural to let each layer (including the final layer) output embeddings for all subgraph nodes. This leads to the design to READOUT all the subgraph node embeddings as the target node embedding.
137
+
138
+ We can understand the pooling for SHADOW-GNN from another perspective. In a normal GNN, the target node at the final layer receives messages from all neighbors, but two neighbor nodes may not have a chance to exchange any message to each other (e.g., two nodes $L$ -hop away from the target may be $2 L$ -hop away from each other). In our design, a SHADOW-GNN can pass messages between any pair of neighbors when the model depth is large enough. Therefore, all the subgraph node embeddings at the final layer capture meaningful information of the neighborhood.
139
+
140
+ In summary, the power of the decoupling principle lies in that it establishes the connection between the node- / link-level task and the graph-level task. e.g., to classify a node is seen as to classify the subgraph surrounding the node. From the neural architecture perspective, we can apply any subgraph pooling / READOUT operation originally designed for graph classification (e.g., [57, 24, 4]) to enhance the node classification / link prediction of SHADOW-GNN. In particular, in the vanilla SHADOW-GNN, we can implement a trivial READOUT as “discarding all neighbor embeddings”, corresponding to performing center pooling. See Appendix D and F.3 for algorithm and experiments.
141
+
142
+ Subgraph ensemble. It may be challenging in practice to design a single EXTRACT capturing all meaningful characteristics of the neighborhood. We can use multiple EXTRACT to jointly define the receptive field, and then ensemble multiple SHADOW-GNN at the subgraph level. Consider $R$ candidates $\{ \mathtt { E X T R A C T } _ { i } \}$ , each returning $\mathcal { G } _ { [ v ] } ^ { i }$ . To generate $v$ ’s embedding, we first use $R$ branches of $L ^ { \prime }$ -layer GNN to obtain intermediate embeddings for each $\mathcal { G } _ { v } ^ { i }$ , and then aggregate the $R$ embeddings by some learnable function $g$ . In practice, we design $g$ as an attention based aggregation function (see Appendix D.2). Subgraph ensemble is useful both when $\{ \mathtt { E X T R A C T } _ { i } \}$ consists of different algorithms and when each EXTRA $\Omega { \mathrm { T } } _ { i }$ performs the same algorithm under different parameters.
143
+
144
+ CASE STUDY Consider PPR-based $\mathtt { E X T R A C T } _ { i }$ with different threshold $\theta _ { i }$ on the neighbor PPR score. A SHADOW-GNN-ensemble can approximate PPRGo [6]. PPRGo generates embedding as: ${ \pmb { \xi } } _ { v } =$ $\sum _ { u \in \mathcal { V } _ { [ v ] } } \pi _ { u } h _ { v }$ , where $\pi _ { u }$ is $u$ ’s PPR score and $\begin{array} { r } { h _ { v } = \mathtt { M L P } \left( \pmb { x } _ { v } \right) } \end{array}$ . We can partition $\begin{array} { r } { \mathcal { V } _ { [ v ] } = \bigcup _ { i = 1 } ^ { R } \mathcal { V } _ { [ v ] } ^ { i } } \end{array}$ s.t. nodes in $\mathcal { V } _ { [ v ] } ^ { i }$ have similar PPR scores denoted by $\widetilde { \pi } _ { i }$ , and $\widetilde { \pi } _ { i } \leq \widetilde { \pi } _ { i + 1 }$ . $\begin{array} { r } { \mathrm { S o } \xi _ { v } = \sum _ { i = 1 } ^ { R } \rho _ { i } \left( \sum _ { u \in \mathcal { V } _ { i } ^ { ' } } \pmb { h } _ { u } \right) } \end{array}$ , where $\begin{array} { r } { \rho _ { i } = \widetilde { \pi } _ { i } - \sum _ { j < i } \widetilde { \pi } _ { j } } \end{array}$ and $\begin{array} { r } { \mathcal { V } _ { i } ^ { \prime } = \bigcup _ { k = i } ^ { R } \mathcal { V } _ { [ v ] } ^ { k } } \end{array}$ . Now for each branch of SHADOW-GNN-ensemble, elet parameter $\theta _ { i } = \widetilde { \pi } _ { i }$ eso that $\mathtt { E X T R A C T } _ { i }$ returns $\mathcal { V } _ { i } ^ { \prime }$ . The GNN on $\mathcal { V } _ { i } ^ { \prime }$ can then learn $\sum _ { u \in \mathcal { V } _ { i } ^ { \prime } } \boldsymbol { h } _ { u }$ (e.g., by a simple “mean” READOUT). Finally, set the ensemble weight as $\rho _ { i }$ . SHADOW-GNN-ensemble learns $\xi _ { v }$ . As EXTRACT also preserves graph topology, our model can be more expressive than PPRGo.
145
+
146
+ # 3.6 Practical Design: SHADOW-GNN
147
+
148
+ We now discuss the practical implementation of decoupled GNN – SHADOW-GNN. As the name suggests, in SHADOW-GNN, the scope is a shallow subgraph (i.e., with depth often set to 2 or 3).
149
+
150
+ In many realistic scenarios (e.g., citation networks, social networks, product recommendation graphs), a shallow neighborhood is both necessary and sufficient for the GNN to learn well. On “sufficiency”, we consider the social network example: the friend of a friend of a friend may share little commonality with you, and close friends may be at most 2 hops away. Formally, by the $\gamma$ -decaying theorem [56], a shallow neighborhood is sufficient to accurately estimate various graph metrics. On “necessity”, since the neighborhood size may grow exponentially with hops, a deep neighborhood would be dominated by nodes irrelevant to the target. The corresponding GNN would first need to differentiate the many useless nodes from the very few useful ones, before it can extract meaningful features from the useful nodes. Finally, a shallow subgraph ensures scalability by avoiding ���neighborhood explosion”.
151
+
152
+ Remark on decoupling. So far we have defined a decoupled model as having the model depth $L ^ { \prime }$ larger than the subgraph depth $L$ . Strictly speaking, a decoupled model also admits $L ^ { \prime } = \bar { L }$ . For example, suppose in the full $L$ -hop neighborhood, there are $70 \%$ nodes $L$ hops away. Applying decoupling, the EXTRACT excludes most of the $L$ -hop neighbors, and the resulting subgraph $\mathcal { G } _ { [ v ] }$ contains only $20 \%$ nodes $L$ hops away. Then it is reasonable to consider an $L$ -layer model on such a depth- $L$ subgraph as also a decouple model. Compared with an $L$ -layer model on the full $L$ -hop neighborhood, an $L$ -layer model on such a depth- $L$ $\mathcal { G } _ { [ v ] }$ propagates much less information from nodes $L$ hops away. So the $L$ message passings are indeed decoupled from the full $L$ -hop neighborhood.
153
+
154
+ Remark on neighborhood. The “sufficiency” and “necessity” in shallow neighborhood are not universal. In many other applications, long-range dependencies can be critical, as studied in [2]. In such cases, our practical implementation of SHADOW-GNN would incur accuracy loss. However, our decoupling principle in general may still be beneficial – “shallow subgraph” is a practical guideline rather than a theoretical requirement. We leave the study on such applications as future work.
155
+
156
+ # 4 Related Work
157
+
158
+ Deep GNNs. To improve the GNN performance while increasing the model depth, various layer architectures have been proposed. AS-GCN [18], DeepGCN [28], JK-net [50], MixHop [1], Snowball [33], DAGNN [31] and GCNII [34] all include some variants of residue connection, either across multiple layers or within a single layer. In principle, such architectures can also benefit the feature propagation of a deep SHADOW-GNN, since their design does not rely on a specific neighborhood (e.g., $L$ -hop). In addition to architectures, DropEdge [39] and Bayesian-GDC [14] propose regularization techniques by adapting dropout [42] to graphs. Such techniques are only applied during training, and inference may still suffer from issues such as oversmoothing.
159
+
160
+ Sampling based methods. Neighbor or subgraph sampling techniques have been proposed to improve training efficiency. FastGCN [8], VR-GCN [7], AS-GCN [18], LADIES [61] and MVSGNN [10] sample neighbor nodes per GNN layer. Cluster-GCN [9] and GraphSAINT [55] sample a subgraph as the training minibatch. While sampling also changes the receptive field, all the above methods are fundamentally different from ours. The training samplers aim at estimating the quantities related to the full graph (e.g., the aggregation of the full $L$ -hop neighborhood), and so the inference model still operates on the full neighborhood to avoid accuracy loss. For SHADOW-GNN, since the decoupling principle is derived from a local view on $\mathcal { G }$ , our EXTRACT does not estimate any full neighborhood quantities. Consequently, the sampling based methods only improve the training efficiency, while SHADOW-GNN addresses the computation challenge for both training and inference.
161
+
162
+ Re-defining the neighborhood. Various works reconstruct the original graph and apply the GNN on the re-defined neighborhood. GDC [23] views the reconstructed adjacency matrix as the diffusion matrix. SIGN [11] applies reconstruction for customized graph operators. AM-GCN [46] utilizes the reconstruction to separate feature and structure information. The above work re-define the neighborhood. However, they still have tightly coupled depth and scope. SHADOW-GNN can also work with the reconstructed graph $\mathcal { G } ^ { \prime }$ by simply applying EXTRACT on $\mathcal { G } ^ { \prime }$ .
163
+
164
+ # 5 Experiments
165
+
166
+ Setup. We evaluate SHADOW-GNN on seven graphs. Six of them are for the node classification task: Flickr [55], Reddit [12], Yelp [55], ogbn-arxiv, ogbn-products and ogbn-papers100M [16]. The remaining is for the link prediction task: ogbl-collab [16]. The sizes of the seven graphs range from 9K nodes (Flickr) to 110M nodes (ogbn-papers100M). Flickr, Reddit and Yelp are under the inductive setting. ogbn-arxiv, ogbn-products and ogbn-papers100M are transductive. Consistent with the original papers, for the graphs on node classification, we measure “F1-micro” score for Yelp and “accuracy” for the remaining five graphs. For the link prediction task, we use “Hits $@ 5 0 ^ { \circ }$ as the metric. See Appendix E.1 for details. We use W&B [5] for experiment tracking.
167
+
168
+ We construct SHADOW with six backbone models: GCN [22], GraphSAGE [12], GAT [44], JK-Net [50], GIN [49], SGC [47]. The first five are representatives of the state-of-the-art GNN architectures, jointly covering various message aggregation functions as well as the skip connection design. SGC simplifies normal GCN by moving all the neighbor propagation to the pre-processing step. Therefore, SGC is suitable for evaluating oversmoothing. The non-SHADOW models are trained with both full-batch and GraphSAINT-minibatch [55]. Due to the massive size of the full $L$ -hop neighborhood, we need to perform sampling when training normal GNNs in order to make the computation time tractable. GraphSAINT is suitable for our purpose since 1. it is the state-of-the-art minibatch method which achieves high accuracy, and 2. it supports various GNN architectures and scales well to large graphs. On the other hand, for SHADOW-GNN, both training and inference are always executed in minibatches. One advantage of SHADOW-GNN is that the decoupling enables straightforward minibatch construction: each target just independently extracts the small subgraph on its own.
169
+
170
+ We implement two EXTRACT described in Section 3.4: 1. “PPR”, where we set the node budget $K$ as $\{ 2 0 0 , 4 0 0 \}$ for the largest ogbn-papers100M and $K \leq 2 0 0$ for all other graphs; 2. “ $L$ -hop”, where we set the depth as $\{ 1 , 2 \}$ . We implement various subgraph pooling functions: “mean” and “max” evaluated in this section and others evaluated in Appendix F.3. For the model depth, since $L ^ { \prime } = 3$ is the standard setting in the literature (e.g., see the benchmarking in OGB [16]), we start from $L ^ { \prime } = 3$ and further evaluate a deeper model of $L ^ { \prime } = 5$ . All accuracy are measured by 5 runs without fixing random seeds. Hyperparameter tuning and architecture configurations are in Appendix E.4.
171
+
172
+ SHADOW-GNN neighborhood. For both normal and SHADOW GNNs, Figure 2 shows on average how many neighbors are $L$ hops away from the target. For a normal GNN, the size of the neighborhood grows rapidly with respect to $L$ , and the nodes 4 hops away dominate the neighborhood. For SHADOW-GNN using the Table 1 EXTRACT, most neighbors concentrate within 2 hops. A small number of nodes are 3 hops away. Almost no nodes are 4 or more hops away. Importantly, not only does the composition of the two kinds of neighborhood differ significantly, but also the size of SHADOW-GNN scope is much smaller (see also Table 1). Such small subgraphs are essential to high computation efficiency. Finally, we can ignore the very few distant neighbors $ { \left( L \geq 4 \right) }$ , and regard the (effective) depth of SHADOW-GNN subgraph as $L = 2$ (or at most 3). Under such practical value of $L$ , a model with $L ^ { \prime } \geq 3$ is indeed a SHADOW-GNN (see “Remark on decoupling” in Section 3.6).
173
+
174
+ ![](images/3ff0d72768a180365177f62556e21fbfcee94cfc5f872b8f2a83346e32c2987c.jpg)
175
+ Figure 2: Neighborhood composition
176
+
177
+ ![](images/0d3040806271ed912e8436ec3211d9ba63a3ac476cee9100cccc0c4712716703.jpg)
178
+ Figure 3: SGC oversmoothing
179
+
180
+ Table 1: Comparison on test accuracy / F1-micro score and inference cost (tuned with DropEdge)
181
+
182
+ <table><tr><td rowspan="2">Method</td><td rowspan="2">Layers</td><td colspan="2">Flickr</td><td colspan="2">Reddit</td><td colspan="2">Yelp</td><td colspan="2">ogbn-arxiv</td><td colspan="2">ogbn-products</td></tr><tr><td>Accuracy</td><td>Cost</td><td>Accuracy</td><td>Cost</td><td>F1-micro</td><td>Cost</td><td>Accuracy</td><td>Cost</td><td>Accuracy</td><td>Cost</td></tr><tr><td rowspan="3">GCN</td><td>3 5</td><td>0.5159±0.0017</td><td>2E0</td><td>0.9532±0.0003</td><td>6E1</td><td>0.4028±0.0019</td><td>2E1</td><td>0.7170±0.0026</td><td>1E1</td><td>0.7567±0.0018</td><td>5E0</td></tr><tr><td></td><td>0.5217±0.0016</td><td>2E2</td><td>0.9495±0.0012</td><td>1E3</td><td>OOM</td><td>1E3</td><td>0.7186±0.0017</td><td>1E3</td><td>OOM</td><td>9E2</td></tr><tr><td>3</td><td>0.5155±0.0027</td><td>2E0</td><td>0.9523±0.0003</td><td>6E1</td><td>0.5110±0.0012</td><td>2E1</td><td>0.7093±0.0003</td><td>1E1</td><td>0.8003±0.0024</td><td>5E0</td></tr><tr><td>GCN-SAINT</td><td>5</td><td>0.5165±0.0026</td><td>2E2</td><td>0.9523±0.0012</td><td>1E3</td><td>0.5012±0.0021</td><td>1E3</td><td>0.7039±0.0020</td><td>1E3</td><td>0.7992±0.0021</td><td>9E2</td></tr><tr><td>SHADOW-GCN</td><td>3</td><td>0.5234±0.0009</td><td>(1</td><td>0.9576±0.0005</td><td>1</td><td>0.5291±0.0020</td><td>(1</td><td>0.7180±0.0024</td><td>1</td><td>0.7742±0.0037</td><td>1)</td></tr><tr><td>(PPR)</td><td>5</td><td>0.5268±0.0008</td><td>1E0</td><td>0.9564±0.0004</td><td>1E0</td><td>0.5323±0.0020</td><td>2E0</td><td>0.7206±0.0025</td><td>2E0</td><td>0.7821±0.0043</td><td>2E0</td></tr><tr><td>+Pooling</td><td>3/5</td><td>0.5286±0.0013</td><td>1E0</td><td>0.9624±0.0002</td><td>1E0</td><td>0.5393±0.0036</td><td>2E0</td><td>0.7223±0.0018</td><td>2E0</td><td>0.7914±0.0044</td><td>2E0</td></tr><tr><td rowspan="3">GraphSAGE</td><td>3</td><td>0.5140±0.0014</td><td>3E0</td><td>0.9653±0.0002</td><td>5E1</td><td>0.6178±0.0033</td><td>2E1</td><td>0.7192±0.0027</td><td>1E1</td><td>0.7858±0.0013</td><td>4E0</td></tr><tr><td>5</td><td>0.5154±0.0052</td><td>2E2</td><td>0.9626±0.0004</td><td>1E3</td><td>0OM</td><td>2E3</td><td>0.7193±0.0037</td><td>1E3</td><td>0OM</td><td>1E3</td></tr><tr><td>3</td><td>0.5176±0.0032</td><td>3E0</td><td>0.9671±0.0003</td><td>5E1</td><td>0.6453±0.0011</td><td>2E1</td><td>0.7107±0.0003</td><td>1E1</td><td>0.7923±0.0023</td><td>4E0</td></tr><tr><td>SAGE-SAINT</td><td>5</td><td>0.5201±0.0032</td><td>2E2</td><td>0.9670±0.0010</td><td>1E3</td><td>0.6394±0.0003</td><td>2E3</td><td>0.7013±0.0021</td><td>1E3</td><td>0.7964±0.0022</td><td>1E3</td></tr><tr><td>SHADOW-SAGE</td><td>3</td><td>0.5312±0.0019</td><td>1E0</td><td>0.9672±0.0003</td><td>1E0</td><td>0.6542±0.0002</td><td>1E0</td><td>0.7163±0.0028</td><td>1E0</td><td>0.7935±0.0031</td><td>1E0</td></tr><tr><td>(2-hop)</td><td>5</td><td>0.5335±0.0015</td><td>2E0</td><td>0.9675±0.0005</td><td>2E0</td><td>0.6525±0.0003</td><td>2E0</td><td>0.7180±0.0030</td><td>2E0</td><td>0.7995±0.0022</td><td>2E0</td></tr><tr><td> SHADOW-SAGE</td><td>3</td><td>0.5356±0.0013</td><td>(1)</td><td>0.9688±0.0002</td><td>(1)</td><td>0.6538±0.0003</td><td>(1)</td><td>0.7227±0.0012</td><td>(1)</td><td>0.7905±0.0026</td><td>(1)</td></tr><tr><td>(PPR)</td><td>5</td><td>0.5417±0.0006</td><td>2E0</td><td>0.9692±0.0007</td><td>2E0</td><td>0.6518±0.0002</td><td>2E0</td><td>0.7238±0.0007</td><td>2E0</td><td>0.8005±0.0040</td><td>2E0</td></tr><tr><td>+Pooling</td><td>3/5</td><td>0.5395±0.0013</td><td>2E0</td><td>0.9703±0.0003</td><td>2E0</td><td>0.6564±0.0004</td><td>1E0</td><td>0.7258±0.0017</td><td>2E0</td><td>0.8067±0.0037</td><td>1E0</td></tr><tr><td rowspan="3">GAT</td><td>3</td><td>0.5070±0.0032</td><td>2E1</td><td>0OM</td><td>3E2</td><td>0OM</td><td>2E2</td><td>0.7201±0.0011</td><td>1E2</td><td>0OM</td><td>3E1</td></tr><tr><td>5</td><td>0.5164±0.0033</td><td>2E2</td><td>OOM</td><td>2E3</td><td>OOM</td><td>2E3</td><td>OOM</td><td>3E3</td><td>OOM</td><td>2E3</td></tr><tr><td>3</td><td>0.5225±0.0053</td><td>2E1</td><td>0.9671±0.0003</td><td>3E2</td><td>0.6459±0.0002</td><td>2E2</td><td>0.6977±0.0003</td><td>1E2</td><td>0.8027±0.0028</td><td>3E1</td></tr><tr><td>GAT-SAINT</td><td>5</td><td>0.5153±0.0034</td><td>2E2</td><td>0.9651±0.0024</td><td>2E3</td><td>0.6478±0.0012</td><td>2E3</td><td>0.6954±0.0013</td><td>3E3</td><td>0.7990±0.0072</td><td>2E3</td></tr><tr><td>SHADOW-GAT</td><td></td><td>0.5349±0.0023</td><td>(1)</td><td>0.9707±0.0004</td><td>(1)</td><td>0.6575±0.0004</td><td>(1)</td><td>0.7235±0.0020</td><td>(1)</td><td>0.8006±0.0014</td><td>(1)</td></tr><tr><td>(PPR)</td><td>3</td><td>0.5352±0.0028</td><td>2E0</td><td>0.9713±0.0004</td><td>2E0</td><td>0.6559±0.0002</td><td>2E0</td><td>0.7274±0.0022</td><td>2E0</td><td>0.8071±0.0004</td><td>2E0</td></tr><tr><td>+Pooling</td><td>3/5</td><td>0.5364±0.0026</td><td>1E0</td><td>0.9710±0.0004</td><td>2E0</td><td>0.6566±0.0005</td><td>1E0</td><td>0.7265±0.0028</td><td>2E0</td><td>0.8142±0.0031</td><td>1E0</td></tr></table>
183
+
184
+ Comparison with baselines. Table 1 shows the performance comparison of SHADOW-GNN with the normal GNNs. All models on all datasets have uniform hidden dimension of 256. We define the metric “inference cost” as the average amount of computation to generate prediction for one test node. Inference cost is a measure of computation complexity (see Appendix B for the calculation) and is independent of hardware / implementation factors such as parallelization strategy, batch processing, etc. For cost of SHADOW-GNN, we do not include the overhead on computing EXTRACT, since it is hard to calculate such cost analytically. Empirically, subgraph extraction is much cheaper than model computation (see Figure 8, 9 for time evaluation on CPU and GPU). During training, we apply DropEdge [39] to both the baseline and SHADOW models. DropEdge helps improve the baseline accuracy by alleviating oversmoothing, and benefits SHADOW-GNN due to its regularization effects. See Appendix F.2 for results on other architectures including GIN and JK-Net.
185
+
186
+ ACCURACY We aim at answering the following questions: 1. Can we improve accuracy by decoupling a baseline model? 2. What architecture components can we tune to improve accuracy of a decoupled model? 3. What EXTRACT can we tune to improve the accuracy of a decoupled model? To answer Q1, we fix the backbone architecture and remove pooling. Then we inspect “3-layer normal GNN vs. 3-layer SHADOW-GNN” and “5-layer normal GNN vs. 5-layer SHADOW-GNN”. Clearly, SHADOW-GNNs (with scope size no more than 200) in general achieve significantly higher accuracy than the normal GNNs. This indicates that a shallow neighborhood contains sufficient information, and customizing the scope can benefit accuracy even without architecture changes (from Figure 2, a depth-3 $\mathcal { G } _ { [ v ] }$ differs significantly from the 3-hop neighborhood). To answer Q1, we focus on the PPR EXTRACT and thus compare the rows in blue background. We use the 3-layer SHADOW-GNN without pooling as the baseline and analyze the effects of 1. increasing the GNN depth without expanding scope, and 2. adding subgraph pooling. Comparing among the rows in light blue background, we observe that in many cases, simply increasing the depth from 3 to 5 leads to significant accuracy gain. Comparing the ligh blue rows with the dark blue rows, we observe that sometimes pooling can further improve the accuracy of a SHADOW-GNN. In conclusion, both types of architecture tuning are effective ways of optimizing a SHADOW-GNN. Finally, to answer Q3, we compare the light blue rows with the light yellow rows. In general, PPR EXTRACT leads to higher accuracy than 2-hop EXTRACT, demonstrating the importance of designing a good EXTRACT.
187
+
188
+ INFERENCE COST Inference cost of SHADOW-GNN is orders of magnitude lower than the normal GNNs (a 5-layer SHADOW-GNN is still much cheaper than a 3-layer normal GNN). The high cost of the baselines is due to the “neighborhood explosion” with respect to more layers. SHADOW-GNN is efficient and scalable as the cost only grows linearly with the model depth. Note that GraphSAINT only improves efficiency during training since its inference operates on the full $L$ -hop neighborhood.
189
+
190
+ Table 2: Leaderboard comparison on papers100M
191
+
192
+ <table><tr><td>Method</td><td>Test accuracy</td><td>Val accuracy</td><td>Neigh size</td></tr><tr><td>GraphSAGE+incep</td><td>0.6706±0.0017</td><td>0.7032±0.0011</td><td>4E5</td></tr><tr><td>SIGN-XL</td><td>0.6606±0.0019</td><td>0.6984±0.0006</td><td>&gt;4E5</td></tr><tr><td>SGC</td><td>0.6329±0.0019</td><td>0.6648±0.0020</td><td>&gt;4E5</td></tr><tr><td>SHADOW-GAT200</td><td>0.6681±0.0016</td><td>0.7019±0.0011</td><td>2E2</td></tr><tr><td>SHADOW-GAT400</td><td>0.6708±0.0017</td><td>0.7073±0.0011</td><td>3E2</td></tr></table>
193
+
194
+ Scaling to 100 million nodes. We further scale SHADOW-GNN to ogbn-papers100M, one of the largest public dataset. Even through the full graph size is at least two orders of magnitude larger than the graphs in Table 1, the localized scope of SHADOW-GNN barely needs to increase. Since SHADOW-GNN performs
195
+
196
+ minibatch computation, a low-end GPU with limited memory capacity can compute SHADOW-GNN on ogbn-papers100M efficiently. We show in Appendix F.1 that we can train and inference our model with as little as 4GB GPU memory consumption. This is infeasible using normal GNNs. Table 2 summarizes our comparison with the top leaderboard methods [45, 11, 47]. We only include those methods that do not use node labels as the model input (i.e., the most standard setup). We achieve at least 3 orders of magnitude reduction in neighborhood size without sacrificing accuracy. For SIGN-XL and SGC, their neighborhood is too large to count the exact size. Also, their preprocessing consumes $5 \times$ more CPU memory than SHADOW-GNN (Appendix F.1).
197
+
198
+ Table 3: Leaderboard comparison on collab
199
+
200
+ <table><tr><td>Method</td><td>Test Hits @50</td><td>Val Hits @50</td></tr><tr><td>SEAL</td><td>0.5371±0.0047</td><td>0.6389±0.0049</td></tr><tr><td>DeeperGCN</td><td>0.5273±0.0047</td><td>0.6187±0.0045</td></tr><tr><td>LRGA+GCN</td><td>0.5221±0.0072</td><td>0.6088±0.0059</td></tr><tr><td>SHADOW-SAGE</td><td>0.5492±0.0022</td><td>0.6524±0.0017</td></tr></table>
201
+
202
+ Extending to link-level task. We further show that SHADOW-GNN is general and can be extended to the link prediction task. There are two settings of ogbl-collab. We follow the one where validation edges cannot be used in training updates. This is the setting which most leaderboard methods follow. Table 3 shows the comparison with the top GNN models under the same setting. SHADOW-SAGE outperforms the rank-1 model with significant margin.
203
+
204
+ Oversmoothing. To validate Theorem 3.2, we pick SGC as the backbone architecture. SGC with power $L$ is equivalent to $L$ -layer GCN without activation. Performance comparison between SGC and SHADOW-SGC thus reveals the effect of oversmoothing without introducing other factors due to optimizing deep neural networks (e.g., vanishing gradients). In Figure 3, we vary the power of SGC and SHADOW-SGC from 1 to 40 (see Appendix E.5 for details). While SGC gradually collapses local information into global “white noise”, accuracy of SHADOW-SGC does not degrade. This validates our theory that extracting local subgraphs prevents oversmoothing.
205
+
206
+ # 6 Conclusion
207
+
208
+ We have presented a design principle to decouple the depth and scope of GNNs. Applying such a principle on various GNN architectures simultaneously improves expressivity and computation scalability of the corresponding models. We have presented thorough theoretical analysis on expressivity from three different perspectives, and also rich design components (e.g., subgraph extraction functions, architecture extensions) to implement such design principle. Experiments show significant performance improvement over a wide range of graphs, GNN architectures and learning tasks.
209
+
210
+ References
211
+ [1] Sami Abu-El-Haija, Bryan Perozzi, Amol Kapoor, Nazanin Alipourfard, Kristina Lerman, Hrayr Harutyunyan, Greg Ver Steeg, and Aram Galstyan. Mixhop: Higher-order graph convolutional architectures via sparsified neighborhood mixing. arXiv preprint arXiv:1905.00067, 2019.
212
+ [2] Uri Alon and Eran Yahav. On the bottleneck of graph neural networks and its practical implications. In International Conference on Learning Representations, 2021.
213
+ [3] Reid Andersen, Fan Chung, and Kevin Lang. Local graph partitioning using pagerank vectors. In 2006 47th Annual IEEE Symposium on Foundations of Computer Science (FOCS’06), pages 475–486. IEEE, 2006.
214
+ [4] Filippo Maria Bianchi, Daniele Grattarola, and Cesare Alippi. Spectral clustering with graph neural networks for graph pooling. In International Conference on Machine Learning, pages 874–883. PMLR, 2020.
215
+ [5] Lukas Biewald. Experiment tracking with weights and biases, 2020. Software available from wandb.com.
216
+ [6] Aleksandar Bojchevski, Johannes Klicpera, Bryan Perozzi, Amol Kapoor, Martin Blais, Benedek Rózemberczki, Michal Lukasik, and Stephan Günnemann. Scaling graph neural networks with approximate pagerank. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’20, page 2464–2473, New York, NY, USA, 2020. Association for Computing Machinery.
217
+ [7] Jianfei Chen, Jun Zhu, and Le Song. Stochastic training of graph convolutional networks with variance reduction, 2017.
218
+ [8] Jie Chen, Tengfei Ma, and Cao Xiao. FastGCN: Fast learning with graph convolutional networks via importance sampling. In International Conference on Learning Representations, 2018.
219
+ [9] Wei-Lin Chiang, Xuanqing Liu, Si Si, Yang Li, Samy Bengio, and Cho-Jui Hsieh. Cluster-gcn: An efficient algorithm for training deep and large graph convolutional networks. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’19, page 257–266, New York, NY, USA, 2019. Association for Computing Machinery.
220
+ [10] Weilin Cong, Rana Forsati, Mahmut Kandemir, and Mehrdad Mahdavi. Minimal variance sampling with provable guarantees for fast training of graph neural networks. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’20, page 1393–1403, New York, NY, USA, 2020. Association for Computing Machinery.
221
+ [11] Fabrizio Frasca, Emanuele Rossi, Davide Eynard, Ben Chamberlain, Michael Bronstein, and Federico Monti. SIGN: Scalable inception graph neural networks, 2020.
222
+ [12] Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in neural information processing systems, pages 1024–1034, 2017.
223
+ [13] William L Hamilton, Rex Ying, and Jure Leskovec. Representation learning on graphs: Methods and applications. arXiv preprint arXiv:1709.05584, 2017.
224
+ [14] Arman Hasanzadeh, Ehsan Hajiramezanali, Shahin Boluki, Mingyuan Zhou, Nick Duffield, Krishna Narayanan, and Xiaoning Qian. Bayesian graph neural networks with adaptive connection sampling, 2020.
225
+ [15] Kurt Hornik, Maxwell Stinchcombe, Halbert White, et al. Multilayer feedforward networks are universal approximators. Neural networks, 2(5):359–366, 1989.
226
+ [16] Weihua Hu, Matthias Fey, Marinka Zitnik, Yuxiao Dong, Hongyu Ren, Bowen Liu, Michele Catasta, and Jure Leskovec. Open graph benchmark: Datasets for machine learning on graphs, 2020.
227
+ [17] Wenbing Huang, Yu Rong, Tingyang Xu, Fuchun Sun, and Junzhou Huang. Tackling oversmoothing for general Graph Convolutional Networks, 2020.
228
+ [18] Wenbing Huang, Tong Zhang, Yu Rong, and Junzhou Huang. Adaptive sampling towards fast graph representation learning. In Advances in neural information processing systems, pages 4558–4567, 2018.
229
+ [19] Glen Jeh and Jennifer Widom. Simrank: a measure of structural-context similarity. In Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining, pages 538–543, 2002.
230
+ [20] Leo Katz. A new status index derived from sociometric analysis. Psychometrika, 18(1):39–43, 1953.
231
+ [21] Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014.
232
+ [22] Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907, 2016.
233
+ [23] Johannes Klicpera, Stefan Weißenberger, and Stephan Günnemann. Diffusion improves graph learning, 2019.
234
+ [24] Junhyun Lee, Inyeop Lee, and Jaewoo Kang. Self-attention graph pooling. In International Conference on Machine Learning, pages 3734–3743. PMLR, 2019.
235
+ [25] Jure Leskovec and Christos Faloutsos. Sampling from large graphs. In Proceedings of the 12th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, KDD ’06, page 631–636, New York, NY, USA, 2006. Association for Computing Machinery.
236
+ [26] Jure Leskovec, Jon Kleinberg, and Christos Faloutsos. Graph evolution: Densification and shrinking diameters. ACM Trans. Knowl. Discov. Data, 1(1):2–es, March 2007.
237
+ [27] David A Levin and Yuval Peres. Markov chains and mixing times, volume 107. American Mathematical Soc., 2017.
238
+ [28] Guohao Li, Matthias Müller, Ali Thabet, and Bernard Ghanem. DeepGCNs: Can GCNs go as deep as CNNs? In The IEEE International Conference on Computer Vision (ICCV), 2019.
239
+ [29] Guohao Li, Chenxin Xiong, Ali Thabet, and Bernard Ghanem. DeeperGCN: All you need to train deeper gcns, 2020.
240
+ [30] Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into Graph Convolutional Networks for semi-supervised learning. arXiv preprint arXiv:1801.07606, 2018.
241
+ [31] Meng Liu, Hongyang Gao, and Shuiwang Ji. Towards deeper graph neural networks. Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, Aug 2020.
242
+ [32] Yu-Chen Lo, Stefano E Rensi, Wen Torng, and Russ B Altman. Machine learning in chemoinformatics and drug discovery. Drug discovery today, 23(8):1538–1546, 2018.
243
+ [33] Sitao Luan, Mingde Zhao, Xiao-Wen Chang, and Doina Precup. Break the ceiling: Stronger multi-scale deep graph convolutional networks. In Advances in Neural Information Processing Systems 32, pages 10945–10955. Curran Associates, Inc., 2019.
244
+ [34] Zhewei Wei Ming Chen, Bolin Ding Zengfeng Huang, and Yaliang Li. Simple and deep graph convolutional networks. 2020.
245
+ [35] Federico Monti, Michael Bronstein, and Xavier Bresson. Geometric matrix completion with recurrent multi-graph neural networks. In Advances in Neural Information Processing Systems, pages 3697–3707, 2017.
246
+ [36] Kenta Oono and Taiji Suzuki. Graph Neural Networks exponentially lose expressive power for node classification. In International Conference on Learning Representations, 2020.
247
+
248
+ [37] Aditya Pal, Chantat Eksombatchai, Yitong Zhou, Bo Zhao, Charles Rosenberg, and Jure Leskovec. PinnerSage: Multi-modal user embedding framework for recommendations at Pinterest. Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, Aug 2020.
249
+
250
+ [38] Namyong Park, Andrey Kan, Xin Luna Dong, Tong Zhao, and Christos Faloutsos. Estimating node importance in knowledge graphs using graph neural networks. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, pages 596–606, 2019.
251
+ [39] Yu Rong, Wenbing Huang, Tingyang Xu, and Junzhou Huang. DropEdge: Towards deep Graph Convolutional Networks on node classification. In International Conference on Learning Representations, 2020.
252
+ [40] Michael Schlichtkrull, Thomas N Kipf, Peter Bloem, Rianne Van Den Berg, Ivan Titov, and Max Welling. Modeling relational data with graph convolutional networks. In European Semantic Web Conference, pages 593–607. Springer, 2018.
253
+ [41] Nino Shervashidze, Pascal Schweitzer, Erik Jan Van Leeuwen, Kurt Mehlhorn, and Karsten M Borgwardt. Weisfeiler-lehman graph kernels. Journal of Machine Learning Research, 12(9), 2011.
254
+ [42] 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.
255
+ [43] Jonathan M Stokes, Kevin Yang, Kyle Swanson, Wengong Jin, Andres Cubillos-Ruiz, Nina M Donghia, Craig R MacNair, Shawn French, Lindsey A Carfrae, Zohar Bloom-Ackerman, et al. A deep learning approach to antibiotic discovery. Cell, 180(4):688–702, 2020.
256
+ [44] Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua ´ Bengio. Graph Attention Networks. In International Conference on Learning Representations, 2018.
257
+ [45] Minjie Wang, Da Zheng, Zihao Ye, Quan Gan, Mufei Li, Xiang Song, Jinjing Zhou, Chao Ma, Lingfan Yu, Yu Gai, Tianjun Xiao, Tong He, George Karypis, Jinyang Li, and Zheng Zhang. Deep graph library: A graph-centric, highly-performant package for graph neural networks, 2020.
258
+ [46] Xiao Wang, Meiqi Zhu, Deyu Bo, Peng Cui, Chuan Shi, and Jian Pei. AM-GCN: Adaptive multichannel graph convolutional networks. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’20, page 1243–1253, New York, NY, USA, 2020. Association for Computing Machinery.
259
+ [47] Felix Wu, Tianyi Zhang, Amauri Holanda de Souza Jr, Christopher Fifty, Tao Yu, and Kilian Q Weinberger. Simplifying graph convolutional networks. arXiv preprint arXiv:1902.07153, 2019.
260
+ [48] Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S. Yu. A comprehensive survey on graph neural networks. IEEE Transactions on Neural Networks and Learning Systems, 2020.
261
+ [49] Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? arXiv preprint arXiv:1810.00826, 2018.
262
+ [50] Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken ichi Kawarabayashi, and Stefanie Jegelka. Representation learning on graphs with jumping knowledge networks, 2018.
263
+ [51] Rex Ying, Dylan Bourgeois, Jiaxuan You, Marinka Zitnik, and Jure Leskovec. GNNExplainer: Generating explanations for graph neural networks, 2019.
264
+ [52] Rex Ying, Ruining He, Kaifeng Chen, Pong Eksombatchai, William L Hamilton, and Jure Leskovec. Graph convolutional neural networks for web-scale recommender systems. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, pages 974–983, 2018.
265
+ [53] Jiaxuan You, Zhitao Ying, and Jure Leskovec. Design space for graph neural networks. In H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan, and H. Lin, editors, Advances in Neural Information Processing Systems, volume 33, pages 17009–17021. Curran Associates, Inc., 2020.
266
+ [54] Hanqing Zeng, Hongkuan Zhou, Ajitesh Srivastava, Rajgopal Kannan, and Viktor Prasanna. Accurate, efficient and scalable graph embedding. In 2019 IEEE International Parallel and Distributed Processing Symposium (IPDPS), pages 462–471, 2019.
267
+ [55] Hanqing Zeng, Hongkuan Zhou, Ajitesh Srivastava, Rajgopal Kannan, and Viktor Prasanna. GraphSAINT: Graph sampling based inductive learning method. In International Conference on Learning Representations, 2020.
268
+ [56] Muhan Zhang and Yixin Chen. Link prediction based on graph neural networks. In Advances in Neural Information Processing Systems, pages 5165–5175, 2018.
269
+ [57] Muhan Zhang, Zhicheng Cui, Marion Neumann, and Yixin Chen. An end-to-end deep learning architecture for graph classification. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 32, 2018.
270
+ [58] Shuai Zhang, Lina Yao, Aixin Sun, and Yi Tay. Deep learning based recommender system: A survey and new perspectives. ACM Computing Surveys (CSUR), 52(1):1–38, 2019.
271
+ [59] Yuyu Zhang, Xinshi Chen, Yuan Yang, Arun Ramamurthy, Bo Li, Yuan Qi, and Le Song. Efficient probabilistic logic reasoning with graph neural networks, 2020.
272
+ [60] Lingxiao Zhao and Leman Akoglu. PairNorm: Tackling oversmoothing in gnns. In International Conference on Learning Representations, 2020.
273
+ [61] Difan Zou, Ziniu Hu, Yewen Wang, Song Jiang, Yizhou Sun, and Quanquan Gu. Layerdependent importance sampling for training deep and large graph convolutional networks. In H. Wallach, H. Larochelle, A. Beygelzimer, F. d'Alché-Buc, E. Fox, and R. Garnett, editors, Advances in Neural Information Processing Systems, volume 32. Curran Associates, Inc., 2019.
274
+
275
+ # Checklist
276
+
277
+ 1. For all authors...
278
+
279
+ (a) Do the main claims made in the abstract and introduction accurately reflect the paper’s contributions and scope? [Yes]
280
+ (b) Did you describe the limitations of your work? [Yes]
281
+ (c) Did you discuss any potential negative societal impacts of your work? [N/A]
282
+ (d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes]
283
+
284
+ 2. If you are including theoretical results...
285
+
286
+ (a) Did you state the full set of assumptions of all theoretical results? [Yes] (b) Did you include complete proofs of all theoretical results? [Yes] See append
287
+
288
+ 3. If you ran experiments...
289
+
290
+ (a) Did you include the code, data, and instructions needed to reproduce the main experimental results (either in the supplemental material or as a URL)? [Yes] See the released code.
291
+ (b) Did you specify all the training details (e.g., data splits, hyperparameters, how they were chosen)? [Yes] See the released code. It contains all configurations.
292
+ (c) Did you report error bars (e.g., with respect to the random seed after running experiments multiple times)? [Yes]
293
+ (d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs, internal cluster, or cloud provider)? [No]
294
+
295
+ 4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets...
296
+
297
+ (a) If your work uses existing assets, did you cite the creators? [Yes] See citation after each dataset.
298
+ (b) Did you mention the license of the assets? [N/A]
299
+ (c) Did you include any new assets either in the supplemental material or as a URL? [No]
300
+ (d) Did you discuss whether and how consent was obtained from people whose data you’re using/curating? [No]
301
+ (e) Did you discuss whether the data you are using/curating contains personally identifiable information or offensive content? [No]
302
+
303
+ 5. If you used crowdsourcing or conducted research with human subjects...
304
+
305
+ (a) Did you include the full text of instructions given to participants and screenshots, if applicable? [N/A]
306
+ (b) Did you describe any potential participant risks, with links to Institutional Review Board (IRB) approvals, if applicable? [N/A]
307
+ (c) Did you include the estimated hourly wage paid to participants and the total amount spent on participant compensation? [N/A]
parse/train/_IY3_4psXuf/_IY3_4psXuf_content_list.json ADDED
@@ -0,0 +1,1357 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "Decoupling the Depth and Scope of Graph Neural Networks ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 285,
8
+ 122,
9
+ 712,
10
+ 172
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Hanqing Zeng USC zengh@usc.edu ",
17
+ "bbox": [
18
+ 196,
19
+ 227,
20
+ 308,
21
+ 268
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "Muhan Zhang Peking University, BIGAI muhan@pku.edu.cn ",
28
+ "bbox": [
29
+ 336,
30
+ 226,
31
+ 509,
32
+ 267
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "Yinglong Xia Facebook AI yxia@fb.com ",
39
+ "bbox": [
40
+ 539,
41
+ 227,
42
+ 635,
43
+ 267
44
+ ],
45
+ "page_idx": 0
46
+ },
47
+ {
48
+ "type": "text",
49
+ "text": "Ajitesh Srivastava USC ajiteshs@usc.edu ",
50
+ "bbox": [
51
+ 665,
52
+ 227,
53
+ 800,
54
+ 268
55
+ ],
56
+ "page_idx": 0
57
+ },
58
+ {
59
+ "type": "text",
60
+ "text": "Rajgopal Kannan ",
61
+ "text_level": 1,
62
+ "bbox": [
63
+ 436,
64
+ 290,
65
+ 560,
66
+ 303
67
+ ],
68
+ "page_idx": 0
69
+ },
70
+ {
71
+ "type": "text",
72
+ "text": "Andrey Malevich Facebook AI amalevich@fb.com ",
73
+ "bbox": [
74
+ 202,
75
+ 289,
76
+ 343,
77
+ 330
78
+ ],
79
+ "page_idx": 0
80
+ },
81
+ {
82
+ "type": "text",
83
+ "text": "US ARL ",
84
+ "bbox": [
85
+ 470,
86
+ 304,
87
+ 526,
88
+ 315
89
+ ],
90
+ "page_idx": 0
91
+ },
92
+ {
93
+ "type": "text",
94
+ "text": "Viktor Prasanna USC prasanna@usc.edu ",
95
+ "bbox": [
96
+ 656,
97
+ 290,
98
+ 794,
99
+ 330
100
+ ],
101
+ "page_idx": 0
102
+ },
103
+ {
104
+ "type": "text",
105
+ "text": "rajgopal.kannan.civ@mail.mil ",
106
+ "bbox": [
107
+ 379,
108
+ 318,
109
+ 617,
110
+ 330
111
+ ],
112
+ "page_idx": 0
113
+ },
114
+ {
115
+ "type": "text",
116
+ "text": "Long Jin \nFacebook AI \nlongjin@fb.com \nRen Chen \nFacebook AI \nrenchen@fb.com ",
117
+ "bbox": [
118
+ 307,
119
+ 353,
120
+ 429,
121
+ 395
122
+ ],
123
+ "page_idx": 0
124
+ },
125
+ {
126
+ "type": "text",
127
+ "text": "",
128
+ "bbox": [
129
+ 568,
130
+ 352,
131
+ 691,
132
+ 393
133
+ ],
134
+ "page_idx": 0
135
+ },
136
+ {
137
+ "type": "text",
138
+ "text": "Abstract ",
139
+ "text_level": 1,
140
+ "bbox": [
141
+ 462,
142
+ 430,
143
+ 535,
144
+ 446
145
+ ],
146
+ "page_idx": 0
147
+ },
148
+ {
149
+ "type": "text",
150
+ "text": "State-of-the-art Graph Neural Networks (GNNs) have limited scalability with respect to the graph and model sizes. On large graphs, increasing the model depth often means exponential expansion of the scope (i.e., receptive field). Beyond just a few layers, two fundamental challenges emerge: 1. degraded expressivity due to oversmoothing, and 2. expensive computation due to neighborhood explosion. We propose a design principle to decouple the depth and scope of GNNs – to generate representation of a target entity (i.e., a node or an edge), we first extract a localized subgraph as the bounded-size scope, and then apply a GNN of arbitrary depth on top of the subgraph. A properly extracted subgraph consists of a small number of critical neighbors, while excluding irrelevant ones. The GNN, no matter how deep it is, smooths the local neighborhood into informative representation rather than oversmoothing the global graph into “white noise”. Theoretically, decoupling improves the GNN expressive power from the perspectives of graph signal processing (GCN), function approximation (GraphSAGE) and topological learning (GIN). Empirically, on seven graphs (with up to 110M nodes) and six backbone GNN architectures, our design achieves significant accuracy improvement with orders of magnitude reduction in computation and hardware cost. ",
151
+ "bbox": [
152
+ 232,
153
+ 463,
154
+ 766,
155
+ 698
156
+ ],
157
+ "page_idx": 0
158
+ },
159
+ {
160
+ "type": "text",
161
+ "text": "1 Introduction ",
162
+ "text_level": 1,
163
+ "bbox": [
164
+ 174,
165
+ 727,
166
+ 310,
167
+ 744
168
+ ],
169
+ "page_idx": 0
170
+ },
171
+ {
172
+ "type": "text",
173
+ "text": "Graph Neural Networks (GNNs) have now become the state-of-the-art models for graph mining [48, 13, 58], facilitating applications such as social recommendation [35, 52, 37], knowledge understanding [40, 38, 59] and drug discovery [43, 32]. With the numerous architectures proposed [22, 12, 44, 49], it still remains an open question how to effectively scale up GNNs with respect to both the model size and graph size. There are two fundamental obstacles when we increase the number of GNN layers: ",
174
+ "bbox": [
175
+ 174,
176
+ 760,
177
+ 825,
178
+ 829
179
+ ],
180
+ "page_idx": 0
181
+ },
182
+ {
183
+ "type": "text",
184
+ "text": "• Expressivity challenge (i.e., oversmoothing [30, 36, 39, 17]): iterative mixing of neighbor features collapses embedding vectors of different nodes into a fixed, low-dimensional subspace. ",
185
+ "bbox": [
186
+ 178,
187
+ 843,
188
+ 823,
189
+ 872
190
+ ],
191
+ "page_idx": 0
192
+ },
193
+ {
194
+ "type": "text",
195
+ "text": "• Scalability challenge (i.e., neighbor explosion [7, 8, 9, 55]): recursive expansion of multi-hop neighborhood results in exponentially growing receptive field size (and thus computation cost). ",
196
+ "bbox": [
197
+ 181,
198
+ 90,
199
+ 823,
200
+ 119
201
+ ],
202
+ "page_idx": 1
203
+ },
204
+ {
205
+ "type": "text",
206
+ "text": "To address the expressivity challenge, most remedies focus on neural architecture exploration: [44, 12, 49, 29] propose more expressive aggregation functions when propagating neighbor features. [50, 28, 18, 34, 1, 33, 31] use residue-style design components to construct flexible and dynamic receptive fields. Among them, [50, 28, 18] use skip-connection across multiple GNN layers, and [34, 1, 33, 31] encourage multi-hop message passing within each single layer. As for the scalability challenge, sampling methods have been explored to improve the training speed and efficiency. Importance based layer-wise sampling [8, 7, 61] and subgraph-based sampling [54, 9, 55] alleviate neighbor explosion, while preserving training accuracy. Unfortunately, such sampling methods cannot be naturally generalized to inference without accuracy loss (see also Section 4). ",
207
+ "bbox": [
208
+ 174,
209
+ 132,
210
+ 825,
211
+ 257
212
+ ],
213
+ "page_idx": 1
214
+ },
215
+ {
216
+ "type": "text",
217
+ "text": "The above lines of research have only guided us to partial solutions. Yet what is the root cause of both the expressivity and scalability challenges? Setting aside the design of GNN architectures or sampling schemes, we provide an alternative perspective by interpretting the data in a different way. ",
218
+ "bbox": [
219
+ 176,
220
+ 263,
221
+ 823,
222
+ 305
223
+ ],
224
+ "page_idx": 1
225
+ },
226
+ {
227
+ "type": "text",
228
+ "text": "Two views on the graph. Given an input graph $\\mathcal { G }$ with node set $\\nu$ , the most straightforward way to understand $\\mathcal { G }$ is by viewing it as a single global graph. So any two nodes $u$ and $v$ belong to the same $\\mathcal { G }$ , and if $u$ and $v$ lie in the same connected component, they will ultimately see each other in their own neighborhood no matter how far away $u$ and $v$ are. Alternative to the above global view, we can take a local view on $\\mathcal { G }$ . For each node $v$ , there is a latent $\\mathcal { G } _ { [ v ] }$ surrounding it which captures the characteristics of just $v$ itself. The full $\\mathcal { G }$ is observed (by the data collection process) as the union of all such $\\mathcal { G } _ { [ v ] }$ . Consequently, $\\nu _ { [ v ] }$ rather than $\\nu$ defines $v$ ’s neighborhood: if $u \\notin \\mathcal { V } _ { [ v ] }$ , $v$ will never consider $u$ as a neighbor. Our “decoupling” design is based on the local view. ",
229
+ "bbox": [
230
+ 174,
231
+ 310,
232
+ 825,
233
+ 422
234
+ ],
235
+ "page_idx": 1
236
+ },
237
+ {
238
+ "type": "text",
239
+ "text": "Scope of GNNs. Both the expressivity and scalability challenges are closely related to the enlargement of the GNN’s scope (i.e., receptive field). More importantly, how we define the scope is determined by how we view $\\mathcal { G }$ . With the global view above, an $L$ -layer GNN has the scope of the full $L$ -hop neighborhood. With the local view, the GNN scope is simply $\\nu _ { [ v ] }$ regardless of the GNN depth. The two existing lines of research, one on architectural exploration and the other on sampling, both take the global view. Consequently, the depth (i.e., number of layers) and scope of such GNNs are tightly coupled. Such coupling significantly limits the design space exploration of GNNs with various depths [53]. Consider the example of ogbn-products, a medium-scale graph in Open Graph Benchmark [16]. The average number of 4-hop neighbors is around $0 . 6 \\mathbf { M }$ , corresponding to $2 5 \\%$ of the full graph size. To generate representation of a single target node, a 4-layer coupled GNN needs to propagate features from the $0 . 6 \\mathbf { M }$ neighbors. Such propagation can be inefficient or even harmful since most nodes in the huge neighborhood would be barely relevant to the target node. ",
240
+ "bbox": [
241
+ 173,
242
+ 429,
243
+ 825,
244
+ 594
245
+ ],
246
+ "page_idx": 1
247
+ },
248
+ {
249
+ "type": "text",
250
+ "text": "Decoupling the GNN depth and scope. Taking the local view on $\\mathcal { G }$ , we propose a general design principle to decouple the GNN depth and scope. To generate the representation of the target node $v$ , we first extract from $\\mathcal { G }$ a small subgraph $\\mathcal { G } _ { [ v ] }$ surrounding $v$ . On top of $\\mathcal { G } _ { [ v ] }$ , we apply a GNN whose number of layers and message passing functions can be flexibly chosen. “Decoupling” means we treat the scope extraction function and GNN depth as two independently tuned parameters – effectively we introduce a new dimension in the GNN design space. We intuitively illustrate the benefits of decoupling by an example GNN construction, where the scope is the $L$ -hop neighborhood and depth is $L ^ { \\prime }$ $L ^ { \\prime } > L )$ ). When we use more layers $( L ^ { \\prime } )$ than hops $( L )$ , each pair of subgraph nodes may exchange messages multiple times. The extra message passing helps the GNN better absorb and embed the information within scope, and thus leads to higher expressivity. We further justify the above intuition with multifaceted theoretical analysis. From the graph signal processing perspective, we prove that decoupled-GCN performs local-smoothing rather than oversmoothing, as long as the scopes of different target nodes are different. From the function approximation perspective, we construct a linear target function on neighbor features and show that decoupling the GraphSAGE model reduces the function approximation error. From the topological learning perspective, we apply deep GIN-style message passing to differentiate non-regular subgraphs of a regular graph. As a result, our model is more powerful than the 1-dimensional Weisfeiler-Lehman test [41]. ",
251
+ "bbox": [
252
+ 174,
253
+ 601,
254
+ 825,
255
+ 835
256
+ ],
257
+ "page_idx": 1
258
+ },
259
+ {
260
+ "type": "text",
261
+ "text": "Practical implementation: SHADOW-GNN. The decoupling principle leads to a practical implementation, SHADOW-GNN: Decoupled GNN on a shallow subgraph. In SHADOW-GNN, the scope is a shallow yet informative subgraph, only containing a fraction of the 2- or 3-hop neighbors of $\\mathcal { G }$ (see Section 5). On the other hand, the model of SHADOW-GNN is deeper (e.g., $L ^ { \\prime } = 5$ ). To efficiently construct the shallow scope on commodity hardware, we propose various subgraph extraction functions. To better utilize the subgraph node embeddings after deep message passing, we propose neural architecture extensions such as pooling and ensemble. Empirically, our “decoupling” design improves both the accuracy and scalability. On seven benchmarks (including the largest ogbn-papers100M graph with 111M nodes) and across two graph learning tasks, SHADOW-GNNs achieve significant accuracy gains compared to the original models. Meanwhile, the computation and hardware costs are reduced by orders of magnitude. Our code is available at https://github.com/facebookresearch/shaDow_GNN ",
262
+ "bbox": [
263
+ 174,
264
+ 842,
265
+ 825,
266
+ 911
267
+ ],
268
+ "page_idx": 1
269
+ },
270
+ {
271
+ "type": "text",
272
+ "text": "",
273
+ "bbox": [
274
+ 173,
275
+ 90,
276
+ 826,
277
+ 188
278
+ ],
279
+ "page_idx": 2
280
+ },
281
+ {
282
+ "type": "text",
283
+ "text": "2 Preliminaries ",
284
+ "text_level": 1,
285
+ "bbox": [
286
+ 174,
287
+ 207,
288
+ 318,
289
+ 224
290
+ ],
291
+ "page_idx": 2
292
+ },
293
+ {
294
+ "type": "text",
295
+ "text": "Let $\\mathcal { G } \\left( \\mathcal { V } , \\mathcal { E } , \\boldsymbol { X } \\right)$ be an undirected graph, with node set $\\nu$ , edge set $\\mathcal { E } \\subseteq \\mathcal { V } \\times \\mathcal { V }$ and node feature matrix $\\pmb { X } \\in \\mathbb { R } ^ { | \\mathcal { V } | \\times d }$ . Let $\\mathcal { N } _ { v }$ denote the set of $v$ ’s direct neighbors in $\\mathcal { G }$ . The $u ^ { \\mathrm { t h } }$ row of $\\boldsymbol { X }$ corresponds to the length- $d$ feature of node $u$ . Let $\\pmb { A }$ be the adjacency matrix of $\\mathcal { G }$ where $A _ { u , v } = 1$ if edge $( u , v ) \\in \\mathcal { E }$ and $A _ { u , v } = 0$ otherwise. Let $_ { D }$ be the diagonal degree matrix of $\\pmb { A }$ . Denote $\\widetilde { A } = D _ { * } ^ { - \\frac 1 2 } A _ { * } D _ { * } ^ { - \\frac 1 2 }$ as the adjacency matrix after symmetric normalization ( $\\cdot _ { * } , *$ means augmented with self-edges), and $\\stackrel { \\frown } { A } = D ^ { \\stackrel { - 1 } { - } } A$ (or $D _ { * } ^ { - 1 } A _ { * , }$ ) as the one after random walk normalization. Let subscript “ $[ u ] ^ { \\dag }$ mark the quantities corresponding to a subgraph surrounding node $u$ . For example, the subgraph itself is $\\mathcal { G } _ { [ u ] }$ . Subgraph matrices $X _ { [ v ] }$ and $\\boldsymbol { A } _ { [ v ] }$ have the same dimension as the original $\\boldsymbol { X }$ and $\\pmb { A }$ . Yet, row vector $\\left[ \\boldsymbol { X } _ { [ v ] } \\right] _ { u } = \\mathbf { 0 }$ for $u \\notin \\mathcal { V } _ { [ v ] }$ . Element $\\left[ { \\pmb A } _ { [ v ] } \\right] _ { u , w } = 0$ if either $u \\notin \\mathcal { V } _ { [ v ] }$ or $w \\notin \\mathcal { V } _ { [ v ] }$ For an $L$ -layer GNN, let superscript “ $( \\ell ) ^ { \\dag }$ denote the layer- $\\ell$ quantities. Let $d ^ { ( \\ell ) }$ be the number of channels for layer $\\ell$ ; $\\pmb { H } ^ { ( \\ell - 1 ) } \\in \\mathbb { R } ^ { | \\mathcal { V } | \\times d ^ { ( \\ell - 1 ) } }$ and $H ^ { ( \\ell ) } \\in \\mathbb { R } ^ { | \\mathcal { V } | \\times d ^ { ( \\ell ) } }$ be the input and output features. So $H ^ { ( 0 ) } = X$ and $d ^ { ( 0 ) } = d$ . Further, let $\\sigma$ be the activation and $\\mathbf { \\boldsymbol { W } } ^ { ( \\ell ) }$ be the learnable weight. For example, a GCN layer performs $\\pmb { H } ^ { ( \\ell ) } = \\sigma \\left( \\widetilde { A } \\pmb { H } ^ { ( \\ell - 1 ) } \\pmb { W } ^ { ( \\ell ) } \\right)$ . A GraphSAGE layer performs $\\begin{array} { r } { \\pmb { H } ^ { ( \\ell ) } = \\sigma \\left( \\pmb { H } ^ { ( \\ell - 1 ) } \\pmb { W } _ { 1 } ^ { ( \\ell ) } + \\widehat { \\pmb { A } } \\pmb { H } ^ { ( \\ell - 1 ) } \\pmb { W } _ { 2 } ^ { ( \\ell ) } \\right) . } \\end{array}$ ",
296
+ "bbox": [
297
+ 173,
298
+ 238,
299
+ 826,
300
+ 477
301
+ ],
302
+ "page_idx": 2
303
+ },
304
+ {
305
+ "type": "text",
306
+ "text": "Our analysis in Section 3 mostly focuses on the node classification task. Yet our design can be generalized to the link prediction task, as demonstrated by our experiments in Section 5. ",
307
+ "bbox": [
308
+ 173,
309
+ 481,
310
+ 823,
311
+ 508
312
+ ],
313
+ "page_idx": 2
314
+ },
315
+ {
316
+ "type": "text",
317
+ "text": "Definition 2.1. (Depth of subgraph) Assume the subgraph $\\mathcal { G } _ { [ v ] }$ is connected. The depth of $\\mathcal { G } _ { [ v ] }$ is defined as $\\mathrm { m a x } _ { u \\in \\mathcal { V } _ { [ v ] } } d ( u , v ) ;$ , where $d ( u , v )$ denotes the shortest path distance from u to v. ",
318
+ "bbox": [
319
+ 173,
320
+ 512,
321
+ 823,
322
+ 544
323
+ ],
324
+ "page_idx": 2
325
+ },
326
+ {
327
+ "type": "text",
328
+ "text": "The above definition enables us to make comparison such as “the GNN is deeper than the subgraph”. \nFor “decoupling the depth and scope”, we refer to the model depth rather than the subgraph depth. ",
329
+ "bbox": [
330
+ 173,
331
+ 553,
332
+ 823,
333
+ 582
334
+ ],
335
+ "page_idx": 2
336
+ },
337
+ {
338
+ "type": "text",
339
+ "text": "3 Decoupling the Depth and Scope of GNNs ",
340
+ "text_level": 1,
341
+ "bbox": [
342
+ 173,
343
+ 601,
344
+ 555,
345
+ 619
346
+ ],
347
+ "page_idx": 2
348
+ },
349
+ {
350
+ "type": "text",
351
+ "text": "“Decoupling the depth and scope of GNNs” is a design principle to improve the expressivity and scalability of GNNs without modifying the layer architecture. We name a GNN after decoupling a SHADOW-GNN (see Section 3.6 for explanation of the name). Compared with a normal GNN, SHADOW-GNN contains an additional component: the subgraph extractor EXTRACT. To generate embedding of a target node $v$ , SHADOW-GNN proceeds as follows: 1. We use EXTRACT $( v , { \\mathcal { G } } )$ to return a connected $\\mathcal { G } _ { [ v ] }$ , where $\\mathcal { G } _ { [ v ] }$ is a subgraph containing $v$ , and the depth of $\\mathcal { G } _ { [ v ] }$ is $L$ . 2. We build an $L ^ { \\prime }$ -layer GNN on $\\mathcal { G } _ { [ v ] }$ by treating $\\mathcal { G } _ { [ v ] }$ as the new full graph and by ignoring all nodes / edges not in $\\mathcal { G } _ { [ v ] }$ . So $\\mathcal { G } _ { [ v ] }$ is the scope of SHADOW-GNN. The key point reflecting “decoupling” is that $L ^ { \\prime } > L$ ",
352
+ "bbox": [
353
+ 173,
354
+ 631,
355
+ 825,
356
+ 747
357
+ ],
358
+ "page_idx": 2
359
+ },
360
+ {
361
+ "type": "text",
362
+ "text": "A normal GNN is closely related to a SHADOW-GNN. Under the normal setup, an $L$ -layer GNN operates on the full $\\mathcal { G }$ and propagates the influence from all the neighbors up to $L$ hops away from $v$ Such a GNN is equivalent to a model where EXTRACT returns the full $L$ -hop subgraph and $L ^ { \\prime } = L$ . ",
363
+ "bbox": [
364
+ 176,
365
+ 752,
366
+ 823,
367
+ 794
368
+ ],
369
+ "page_idx": 2
370
+ },
371
+ {
372
+ "type": "text",
373
+ "text": "We theoretical demonstrate how SHADOW-GNN improves expressivity from three different angles. On SHADOW-GCN (Section 3.1), we come from the graph signal processing perspective. The GCN propagation can be interpreted as applying filtering on the node signals [47]. Deep models correspond to high-pass filters. Filtering the local graph $\\mathcal { G } _ { [ v ] }$ preserves richer information than the global $\\mathcal { G }$ . On SHADOW-SAGE (Section 3.2), we view the GNN as a function approximator. We construct a target function and study how decoupling reduces the approximation error. On SHADOW-GIN (Section 3.3), we focus on learning topological information. We show that decoupling helps capture local graph structure which the 1D Weisfeiler-Lehman test fails to capture. ",
374
+ "bbox": [
375
+ 173,
376
+ 799,
377
+ 825,
378
+ 911
379
+ ],
380
+ "page_idx": 2
381
+ },
382
+ {
383
+ "type": "text",
384
+ "text": "3.1 Expressivity Analysis on SHADOW-GCN: Graph Signal Processing Perspective ",
385
+ "text_level": 1,
386
+ "bbox": [
387
+ 171,
388
+ 90,
389
+ 761,
390
+ 107
391
+ ],
392
+ "page_idx": 3
393
+ },
394
+ {
395
+ "type": "text",
396
+ "text": "GCNs [22] suffer from “oversmoothing” [30] – Each GCN layer smooths the features of the direct (i.e., 1-hop) neighbors, and many GCN layers smooths the features of the full graph. Eventually, such repeated smoothing process propagates to any target node just the averaged feature of all $\\nu$ . “Oversmoothing” thus incurs significant information loss by wiping out all local information. ",
397
+ "bbox": [
398
+ 173,
399
+ 117,
400
+ 826,
401
+ 174
402
+ ],
403
+ "page_idx": 3
404
+ },
405
+ {
406
+ "type": "text",
407
+ "text": "Formally, suppose the original features $\\boldsymbol { X }$ reside in a high-dimensional space $\\mathbb { R } ^ { | \\nu | \\times d }$ . Oversmoothing pushes $\\boldsymbol { X }$ towards a low-dimensional subspace $\\mathbb { R } ^ { | \\nu | \\times d ^ { \\prime } }$ , where $d ^ { \\prime } < d$ . Corresponding analysis comes from two perspectives: oversmoothing by a deep $G C N$ , and oversmoothing by repeated GCNstyle propagation. The former considers the full neural network with non-linear activation, weight and bias. The later characterizes the aggregation matrix $M = \\operatorname* { l i m } _ { L \\to \\infty } \\widetilde { A } ^ { L } X$ . It is shown that even with the vanilla architecture, a deep GCN with bias parameters does not oversmooth [17]. In addition, various tricks [60, 39, 34] can prevent oversmoothing from the neural network perspective. However, a deep GCN still suffers from accuracy drop, indicating that the GCN-style propagation (rather than other GCN components like activation and bias) may be the fundamental reason causing difficulty in learning. Therefore, we study the asymptotic behavior of the aggregation matrix $M$ under the normal and SHADOW design. In other words, here in Section 3.1, we ignore the non-linear activation and bias parameters. Such setup is consistent with many existing literature such as [30, 33, 34, 60]. ",
408
+ "bbox": [
409
+ 173,
410
+ 179,
411
+ 826,
412
+ 352
413
+ ],
414
+ "page_idx": 3
415
+ },
416
+ {
417
+ "type": "text",
418
+ "text": "Proposition 3.1. $\\infty$ number of feature propagation by SHADOW-GCN leads to ",
419
+ "bbox": [
420
+ 173,
421
+ 357,
422
+ 699,
423
+ 372
424
+ ],
425
+ "page_idx": 3
426
+ },
427
+ {
428
+ "type": "equation",
429
+ "img_path": "images/1f18b14966c3feacd2a4fac99bf5459fe265f8f2def6e9ff7aa5fcbbe503511b.jpg",
430
+ "text": "$$\n\\pmb { m } _ { [ v ] } = \\left[ e _ { [ v ] } \\right] _ { v } \\cdot \\left( e _ { [ v ] } ^ { \\top } \\pmb { X } _ { [ v ] } \\right)\n$$",
431
+ "text_format": "latex",
432
+ "bbox": [
433
+ 405,
434
+ 381,
435
+ 593,
436
+ 407
437
+ ],
438
+ "page_idx": 3
439
+ },
440
+ {
441
+ "type": "text",
442
+ "text": "where $e _ { [ v ] }$ is defined by $\\begin{array} { r } { \\left[ e _ { [ v ] } \\right] _ { u } = \\sqrt { \\frac { \\delta _ { [ v ] } ( u ) } { \\sum _ { w \\in \\mathcal { V } _ { [ v ] } } \\delta _ { [ v ] } ( w ) } } } \\end{array}$ ; $\\delta _ { [ v ] } \\left( u \\right)$ returns the degree of u in $\\mathcal { G } _ { [ v ] } p l u s ~ l$ ",
443
+ "bbox": [
444
+ 176,
445
+ 417,
446
+ 812,
447
+ 449
448
+ ],
449
+ "page_idx": 3
450
+ },
451
+ {
452
+ "type": "text",
453
+ "text": "Oversmoothing by normal GCN propagation. With a large enough $L$ , the full $L$ -hop neighborhood becomes $\\nu$ (assuming connected $\\mathcal { G }$ ). So $\\forall ~ u , v$ , we have $\\mathcal { G } _ { [ u ] } = \\mathcal { G } _ { [ v ] } = \\mathcal { G }$ , implying $e _ { [ u ] } = e _ { [ v ] }$ and $X _ { [ u ] } = X _ { [ v ] } = X$ . From Proposition 3.1, the aggregation converges to a point where $n o$ feature and little structural information of the target is preserved. The only information in $m _ { [ v ] }$ is $v$ ’s degree. ",
454
+ "bbox": [
455
+ 174,
456
+ 460,
457
+ 825,
458
+ 517
459
+ ],
460
+ "page_idx": 3
461
+ },
462
+ {
463
+ "type": "text",
464
+ "text": "Local-smoothing by SHADOW-GCN propagation. With a fixed subgraph, no matter how many times we aggregate using $\\widetilde { A } _ { [ v ] }$ , the layers will not include the faraway irrelevant nodes. From Proposition 3.1, $m _ { [ v ] }$ is a linear combination of the neighbor features $X _ { [ v ] }$ . Increasing the number of layers only pushes the coefficients of each neighbor features to the stationary values. The domain $X _ { [ v ] }$ of such linear transformation is solely determined by EXTRACT and is independent of the model depth. Intuitively, if EXTRACT picks non-identical subgraphs for two nodes $u$ and $v$ , the aggregations should be different due to the different domains of the linear transformation. Therefore, SHADOW-GCN preserves local feature information whereas normal GCN preserves none. For structural information in $m _ { [ v ] }$ , note that $e _ { [ v ] }$ is a normalized degree distribution of the subgraph around $v$ , and -e[v]\u0003v indicates the role of the target node in the subgraph. By simply letting EXTRACT return the 1-hop subgraph, $\\left[ e _ { [ v ] } \\right] _ { v }$ alone already contains all the information preserved by a normal GCN, which is $v$ ’s degree in $\\bar { \\mathcal { G } }$ . For the general EXTRACT, $e _ { [ v ] }$ additionally reflects $v$ ’s ego-net structure. Thus, a deep SHADOW-GCN preserves more structural information than a deep GCN. ",
465
+ "bbox": [
466
+ 173,
467
+ 522,
468
+ 826,
469
+ 705
470
+ ],
471
+ "page_idx": 3
472
+ },
473
+ {
474
+ "type": "text",
475
+ "text": "Theorem 3.2. Let $\\overline { { \\pmb { m } } } _ { [ v ] } = \\phi _ { \\mathcal { G } } \\left( v \\right) \\cdot \\pmb { m } _ { [ v ] }$ where $\\phi _ { \\mathcal { G } }$ is any non-zero function only depending on the structural property of $v$ . Let $\\mathcal { M } = \\mathrm { \\large ~ \\left\\{ ~ \\overline { { ~ } } m _ { [ v ] } ~ \\lvert ~ v ~ \\in ~ \\mathcal { V } \\right\\} ~ }$ . Given $\\mathcal { G }$ , EXTRACT and some continuous probability distribution in $\\mathbb { R } ^ { | \\nu | \\times d }$ to generate $\\boldsymbol { X }$ , then $\\overline { { \\pmb { m } } } _ { [ v ] } \\neq \\overline { { \\pmb { m } } } _ { [ u ] }$ if $\\mathcal { V } _ { [ u ] } \\neq \\mathcal { V } _ { [ v ] }$ , almost surely. ",
476
+ "bbox": [
477
+ 174,
478
+ 710,
479
+ 825,
480
+ 760
481
+ ],
482
+ "page_idx": 3
483
+ },
484
+ {
485
+ "type": "text",
486
+ "text": "Corollary 3.2.1. Consider EXTRA $C T _ { 1 }$ , where $\\forall v \\in \\mathcal { V }$ , $| \\nu _ { [ v ] } | \\leq n$ . Then $\\begin{array} { r } { | \\mathcal { M } | \\geq \\left\\lceil \\frac { | \\mathcal { V } | } { n } \\right\\rceil } \\end{array}$ a.s. ",
487
+ "bbox": [
488
+ 171,
489
+ 765,
490
+ 763,
491
+ 787
492
+ ],
493
+ "page_idx": 3
494
+ },
495
+ {
496
+ "type": "text",
497
+ "text": "Corollary 3.2.2. Consider EXTRA $C T _ { 2 }$ , where $\\forall u , v \\in \\mathcal { V }$ , $\\mathcal { V } _ { [ v ] } \\neq \\mathcal { V } _ { [ u ] }$ . Then $| \\mathcal { M } | = | \\mathcal { V } | a . s$ ",
498
+ "bbox": [
499
+ 171,
500
+ 794,
501
+ 769,
502
+ 813
503
+ ],
504
+ "page_idx": 3
505
+ },
506
+ {
507
+ "type": "text",
508
+ "text": "Theorem 3.2 proves SHADOW-GCN does not oversmooth: 1. A normal GCN pushes the aggregation of same-degree nodes to the same point, while SHADOW-GCN with $\\mathtt { E X T R A C T } _ { 2 }$ ensures any two nodes (even with the same degree) have different aggregation. 2. A normal GCN wipes out all information in $\\boldsymbol { X }$ after many times of aggregation, while SHADOW-GCN always preserves feature information. Particularly, with φG (v) = \u0000δ[v](v)\u0001−1/2, a normal GCN generates only one unique value of for all $v$ . By contrast, SHADOW-GNN generates $| \\nu |$ different values for any $\\phi _ { \\mathcal { G } }$ function. ",
509
+ "bbox": [
510
+ 173,
511
+ 821,
512
+ 825,
513
+ 912
514
+ ],
515
+ "page_idx": 3
516
+ },
517
+ {
518
+ "type": "text",
519
+ "text": "We compare the expressivity by showing 1. SHADOW-SAGE can express all functions GraphSAGE can, and 2. SHADOW-SAGE can express some function GraphSAGE cannot. Recall, a GraphSAGE layer performs the following: $\\begin{array} { r } { \\dot { \\overline { { h _ { v } ^ { ( \\ell ) } } } } = \\sigma \\left( \\left( W _ { 1 } ^ { ( \\ell ) } \\right) ^ { \\top } h _ { v } ^ { ( \\ell - 1 ) } + \\left( W _ { 2 } ^ { ( \\ell ) } \\right) ^ { \\top } \\left( \\frac { 1 } { | \\mathcal { N } _ { v } | } \\sum _ { u \\in \\mathcal { N } _ { v } } \\dot { h _ { u } ^ { ( \\ell - 1 ) } } \\right) \\right) . } \\end{array}$ We can prove Point 1 by making an $L ^ { \\prime }$ -layer SHADOW-SAGE identical to an $L$ -layer GraphSAGE with the following steps: 1. let EXTRACT return the full $L$ -hop neighborhood, and 2. set $\\bar { \\boldsymbol { W } } _ { 1 } ^ { ( \\ell ) } = \\boldsymbol { I }$ , $W _ { 2 } ^ { ( \\ell ) } = { \\bf 0 }$ for $L + 1 \\leq \\ell \\leq L ^ { \\prime }$ . For point 2, we consider a target function: $\\tau \\left( \\boldsymbol { X } , \\boldsymbol { \\mathcal { G } } _ { [ v ] } \\right) =$ $\\begin{array} { r } { C \\cdot \\sum _ { u \\in \\mathcal { V } _ { [ v ] } } \\delta _ { [ v ] } \\left( u \\right) \\cdot \\pmb { x } _ { u } } \\end{array}$ for some neighborhood $\\mathcal { G } _ { [ v ] }$ , scaling constant $C$ and $\\delta _ { [ v ] } \\left( u \\right)$ as defined in Proposition 3.1. An expressive model should be able to learn well this simple linear function $\\tau$ . ",
520
+ "bbox": [
521
+ 173,
522
+ 116,
523
+ 826,
524
+ 257
525
+ ],
526
+ "page_idx": 4
527
+ },
528
+ {
529
+ "type": "text",
530
+ "text": "GraphSAGE cannot learn $\\tau$ accurately, while SHADOW-SAGE can. We first show the GraphSAGE case. Let the depth of $\\mathcal { G } _ { [ v ] }$ be $L$ . Firstly, we need GraphSAGE to perform message passing for exactly $L$ times (where such a model can be implemented by, e.g., $L$ layers or $L ^ { \\prime }$ layers with $W _ { 2 } = \\mathbf { 0 }$ for $L ^ { \\prime } - L$ layers). Otherwise, the extra $L ^ { \\prime } - L$ message passings will propagate influence from nodes $v ^ { \\prime } \\notin \\mathcal { V } _ { [ v ] }$ , violating the condition that $\\tau$ is independent of $v ^ { \\prime }$ . Next, suppose GraphSAGE can learn a function $\\zeta$ such that on some $\\mathcal { G } _ { [ v ] } ^ { \\prime }$ , we have $\\zeta \\left( \\mathcal { G } _ { [ v ] } ^ { \\prime } \\right) = \\tau \\left( \\mathcal { G } _ { [ v ] } ^ { \\prime } \\right)$ . We construct another $\\mathcal { G } _ { [ v ] } ^ { \\prime \\prime }$ by adding an extra edge $e$ connecting two depth- $L$ nodes in $\\mathcal { G } _ { [ v ] } ^ { \\prime }$ . Edge $e$ changes the degree distribution $\\delta _ { [ v ] } \\left( \\cdot \\right)$ , and thus $\\tau \\left( \\mathcal { G } _ { [ v ] } ^ { \\prime } \\right) \\neq \\tau \\left( \\mathcal { G } _ { [ v ] } ^ { \\prime \\prime } \\right)$ . On the other hand, there is no way for GraphSAGE to propagate the influence of edge $e$ to the target $v$ , unless the model performs at least $L + 1$ message passings. So $\\zeta \\left( \\mathcal { G } _ { [ v ] } ^ { \\prime } \\right) = \\zeta \\left( \\bar { \\mathcal { G } } _ { [ v ] } ^ { \\prime \\prime } \\right)$ regardless of the activation function and weight parameters. Therefore, $\\zeta \\neq \\tau$ . For SHADOW-SAGE, let EXTRACT return $\\mathcal { G } _ { [ v ] }$ . Then the model can output $\\zeta ^ { \\prime } = \\left[ \\widehat { \\cal A } _ { [ v ] } ^ { L ^ { \\prime } } { \\cal X } \\right] _ { v , }$ after we 1. set $W _ { 1 } ^ { ( \\ell ) } = \\mathbf { 0 }$ and $W _ { 2 } ^ { ( \\ell ) } = I$ for all layers, and 2. either remove the non-linear activation or bypass ReLU by shifting $\\boldsymbol { X }$ with bias. With known results in Markov chain convergence theorem [27], we derive the following theorem by analyzing the convergence of $\\widehat { A } _ { [ v ] } ^ { L ^ { \\prime } }$ when $L ^ { \\prime } \\to \\infty$ . ",
531
+ "bbox": [
532
+ 173,
533
+ 261,
534
+ 826,
535
+ 520
536
+ ],
537
+ "page_idx": 4
538
+ },
539
+ {
540
+ "type": "text",
541
+ "text": "Theorem 3.3. SHADOW-SAGE can approximate $\\tau$ with error decaying exponentially with depth. ",
542
+ "bbox": [
543
+ 171,
544
+ 523,
545
+ 816,
546
+ 539
547
+ ],
548
+ "page_idx": 4
549
+ },
550
+ {
551
+ "type": "text",
552
+ "text": "We have the following conclusions from above: 1. SHADOW-SAGE is more expressive than GraphSAGE. 2. appropriate EXTRACT function improves SHADOW-GNN expressivity, 3. There exists cases where it may be desirable to set the SHADOW-GNN depth much larger than the subgraph depth. ",
553
+ "bbox": [
554
+ 174,
555
+ 550,
556
+ 826,
557
+ 593
558
+ ],
559
+ "page_idx": 4
560
+ },
561
+ {
562
+ "type": "text",
563
+ "text": "3.3 Expressivity Analysis on SHADOW-GIN: Topological Learning Perspective ",
564
+ "text_level": 1,
565
+ "bbox": [
566
+ 174,
567
+ 608,
568
+ 732,
569
+ 625
570
+ ],
571
+ "page_idx": 4
572
+ },
573
+ {
574
+ "type": "text",
575
+ "text": "While GCN and GraphSAGE are popular architectures in practice, they are not the theoretically most discriminative ones. The work in [49] establishes the relation in discriminativeness between GNNs and 1-dimensional Weisfeiler-Lehman test (i.e., 1-WL). And GIN [49] is an example architecture achieving the same discriminativeness as 1-WL. We show that applying the decoupling principle can further improve the discriminativeness of such GNNs, making them more powerful than 1-WL. ",
576
+ "bbox": [
577
+ 173,
578
+ 635,
579
+ 826,
580
+ 705
581
+ ],
582
+ "page_idx": 4
583
+ },
584
+ {
585
+ "type": "text",
586
+ "text": "1-WL is a graph isomorphism test aiming at distinguishing graphs of different structures. A GNN as expressive as 1-WL thus well captures the topological property of the target node. While 1-WL is already very powerful, it may still fail in some cases. e.g., it cannot distinguish certain non-isomorphic, regular graphs. To understand why SHADOW-GNN works, we first need to un",
587
+ "bbox": [
588
+ 174,
589
+ 710,
590
+ 491,
591
+ 820
592
+ ],
593
+ "page_idx": 4
594
+ },
595
+ {
596
+ "type": "image",
597
+ "img_path": "images/0fd819a2beeeba3fca87a30aa3012f69f2b800a51d7754d5d403f4ebe7ed94bb.jpg",
598
+ "image_caption": [
599
+ "Figure 1: Example 3-regular graph and the 1-hop subgraphs of the target nodes $u$ and $v$ . "
600
+ ],
601
+ "image_footnote": [],
602
+ "bbox": [
603
+ 509,
604
+ 713,
605
+ 808,
606
+ 782
607
+ ],
608
+ "page_idx": 4
609
+ },
610
+ {
611
+ "type": "text",
612
+ "text": "derstand why 1-WL fails. In a regular graph, all nodes have the same degree, and thus the “regular” property describes a global topological symmetry among nodes. Unfortunately, 1-WL (and the corresponding normal GNN) also operates globally on $\\mathcal { G }$ . Intuitively, on two different regular graphs, there is no way for 1-WL (and the normal GNN) to assign different labels by breaking such symmetry. ",
613
+ "bbox": [
614
+ 174,
615
+ 821,
616
+ 826,
617
+ 877
618
+ ],
619
+ "page_idx": 4
620
+ },
621
+ {
622
+ "type": "text",
623
+ "text": "On the other hand, SHADOW-GNN can break such symmetry by applying decoupling. In Section 1, we have discussed how SHADOW-GNN is built from the local perspective on the full graph. The key property benefiting SHADOW-GNN is that a subgraph of a regular graph may not be regular. Thus, SHADOW-GNN can distinguish nodes in a regular graph with the non-regular subgraphs as the scope. We illustrate the intuition with the example in Figure 1. The graph $\\mathcal { G }$ is 3-regular and we assume all nodes have identical features. Our goal is to discriminate nodes $u$ and $v$ since their neighborhood structures are different. No matter how many iterations 1-WL runs, or how many layers the normal GNN has, they cannot distinguish $u$ and $v$ . On the other hand, a SHADOW-GNN with 1-hop EXTRACT and at least 2 layers can discriminate $u$ and $v$ . ",
624
+ "bbox": [
625
+ 173,
626
+ 882,
627
+ 825,
628
+ 911
629
+ ],
630
+ "page_idx": 4
631
+ },
632
+ {
633
+ "type": "text",
634
+ "text": "",
635
+ "bbox": [
636
+ 174,
637
+ 90,
638
+ 825,
639
+ 188
640
+ ],
641
+ "page_idx": 5
642
+ },
643
+ {
644
+ "type": "text",
645
+ "text": "Theorem 3.4. Consider GNNs whose layer function is defined by ",
646
+ "bbox": [
647
+ 173,
648
+ 190,
649
+ 606,
650
+ 207
651
+ ],
652
+ "page_idx": 5
653
+ },
654
+ {
655
+ "type": "equation",
656
+ "img_path": "images/78c78712f53087d85da2fdecc5a7b531a5fabe4e3fc2e2cd08324d0241da86af.jpg",
657
+ "text": "$$\n\\pmb { h } _ { v } ^ { ( \\ell ) } = f _ { 1 } ^ { ( \\ell ) } \\left( \\pmb { h } _ { v } ^ { ( \\ell - 1 ) } , \\ \\sum _ { u \\in \\mathcal { N } _ { v } } f _ { 2 } ^ { ( \\ell ) } \\left( \\pmb { h } _ { v } ^ { ( \\ell - 1 ) } , \\pmb { h } _ { u } ^ { ( \\ell - 1 ) } \\right) \\right) ,\n$$",
658
+ "text_format": "latex",
659
+ "bbox": [
660
+ 323,
661
+ 209,
662
+ 673,
663
+ 253
664
+ ],
665
+ "page_idx": 5
666
+ },
667
+ {
668
+ "type": "text",
669
+ "text": "where $f _ { 1 } ^ { ( \\ell ) }$ and $f _ { 2 } ^ { ( \\ell ) }$ are the update and message functions of layer- $\\ell ,$ , implemented as MLPs. Then, such SHADOW-GNN is more discriminative than the -dimensional Weisfeiler-Lehman test. ",
670
+ "bbox": [
671
+ 176,
672
+ 260,
673
+ 825,
674
+ 290
675
+ ],
676
+ "page_idx": 5
677
+ },
678
+ {
679
+ "type": "text",
680
+ "text": "The theorem also implies that SHADOW-GIN is more discriminative than a normal GIN due to the correspondence between GIN and 1-WL. See Appendix A for the proof of all theorems in Section 3. ",
681
+ "bbox": [
682
+ 174,
683
+ 299,
684
+ 825,
685
+ 328
686
+ ],
687
+ "page_idx": 5
688
+ },
689
+ {
690
+ "type": "text",
691
+ "text": "3.4 Subgraph Extraction Algorithms ",
692
+ "text_level": 1,
693
+ "bbox": [
694
+ 176,
695
+ 343,
696
+ 442,
697
+ 359
698
+ ],
699
+ "page_idx": 5
700
+ },
701
+ {
702
+ "type": "text",
703
+ "text": "Our decoupling principle does not rely on specific subgraph extraction algorithms. Appropriate EXTRACT can be customized given the characteristic of $\\mathcal { G }$ , and different EXTRACT leads to different implementation of our decoupling principle. In general, we summarize three approaches to design EXTRACT: 1. heuristic based, where we pick graph metrics that reflect neighbor importance and then design EXTRACT by such metrics; 2. model based, where we assume a generation process on $\\mathcal { G }$ and set EXTRACT as the reverse process, and 3. learning based, where we integrate the design of EXTRACT as part of the GNN training. In the following, we present several examples on heuristic based EXTRACT, which we also empirically evaluate in Section 5. We leave detailed evaluation on the model based and learning based EXTRACT as future work. See also Appendix C for details. ",
704
+ "bbox": [
705
+ 173,
706
+ 368,
707
+ 825,
708
+ 494
709
+ ],
710
+ "page_idx": 5
711
+ },
712
+ {
713
+ "type": "text",
714
+ "text": "Example heuristic based EXTRACT. The algorithm is derived from the selected graph metrics. For example, with the metric being shortest path distance, we design a $L$ -hop extractor. i.e., EXTRACT returns the full set or randomly selected subset of the target node’s $L$ -hop neighbors in $\\mathcal { G }$ . Picking the random walk landing probability as the metric, we can design a PPR-based extractor. i.e., we first run the Personalized PageRank (PPR) algorithm on $\\mathcal { G }$ to derive the PPR score of other nodes relative to the target node. Then EXTRACT define $\\nu _ { [ v ] }$ by picking the top- $K$ nodes with the highest PPR scores. The subgraph $\\mathcal { G } _ { [ v ] }$ is the node-induced subgraph1 of $\\mathcal { G }$ from $\\nu _ { [ v ] }$ . One can easily extend this approach by using other metrics such as Katz index [20], SimRank [19] and feature similarity. ",
715
+ "bbox": [
716
+ 173,
717
+ 500,
718
+ 825,
719
+ 614
720
+ ],
721
+ "page_idx": 5
722
+ },
723
+ {
724
+ "type": "text",
725
+ "text": "3.5 Architecture ",
726
+ "text_level": 1,
727
+ "bbox": [
728
+ 174,
729
+ 628,
730
+ 300,
731
+ 643
732
+ ],
733
+ "page_idx": 5
734
+ },
735
+ {
736
+ "type": "text",
737
+ "text": "Subgraph pooling. For a normal GNN performing node classification, the multi-layer message passing follows a “tree structure”. The nodes at level $L$ of the tree correspond to the $L$ -hop neighborhood. And the tree root outputs the final embedding of the target node. Thus, there is no way to apply subgraph pooling or READOUT on the final layer output, since the “pool” only contains a single vector. For a SHADOW-GNN, since we decouple the $\\bar { L } ^ { \\mathrm { t h } }$ layer from the $L$ -hop neighborhood, it is natural to let each layer (including the final layer) output embeddings for all subgraph nodes. This leads to the design to READOUT all the subgraph node embeddings as the target node embedding. ",
738
+ "bbox": [
739
+ 173,
740
+ 654,
741
+ 825,
742
+ 752
743
+ ],
744
+ "page_idx": 5
745
+ },
746
+ {
747
+ "type": "text",
748
+ "text": "We can understand the pooling for SHADOW-GNN from another perspective. In a normal GNN, the target node at the final layer receives messages from all neighbors, but two neighbor nodes may not have a chance to exchange any message to each other (e.g., two nodes $L$ -hop away from the target may be $2 L$ -hop away from each other). In our design, a SHADOW-GNN can pass messages between any pair of neighbors when the model depth is large enough. Therefore, all the subgraph node embeddings at the final layer capture meaningful information of the neighborhood. ",
749
+ "bbox": [
750
+ 174,
751
+ 757,
752
+ 825,
753
+ 842
754
+ ],
755
+ "page_idx": 5
756
+ },
757
+ {
758
+ "type": "text",
759
+ "text": "In summary, the power of the decoupling principle lies in that it establishes the connection between the node- / link-level task and the graph-level task. e.g., to classify a node is seen as to classify the subgraph surrounding the node. From the neural architecture perspective, we can apply any subgraph pooling / READOUT operation originally designed for graph classification (e.g., [57, 24, 4]) to enhance the node classification / link prediction of SHADOW-GNN. In particular, in the vanilla SHADOW-GNN, we can implement a trivial READOUT as “discarding all neighbor embeddings”, corresponding to performing center pooling. See Appendix D and F.3 for algorithm and experiments. ",
760
+ "bbox": [
761
+ 176,
762
+ 848,
763
+ 823,
764
+ 876
765
+ ],
766
+ "page_idx": 5
767
+ },
768
+ {
769
+ "type": "text",
770
+ "text": "",
771
+ "bbox": [
772
+ 174,
773
+ 92,
774
+ 825,
775
+ 161
776
+ ],
777
+ "page_idx": 6
778
+ },
779
+ {
780
+ "type": "text",
781
+ "text": "Subgraph ensemble. It may be challenging in practice to design a single EXTRACT capturing all meaningful characteristics of the neighborhood. We can use multiple EXTRACT to jointly define the receptive field, and then ensemble multiple SHADOW-GNN at the subgraph level. Consider $R$ candidates $\\{ \\mathtt { E X T R A C T } _ { i } \\}$ , each returning $\\mathcal { G } _ { [ v ] } ^ { i }$ . To generate $v$ ’s embedding, we first use $R$ branches of $L ^ { \\prime }$ -layer GNN to obtain intermediate embeddings for each $\\mathcal { G } _ { v } ^ { i }$ , and then aggregate the $R$ embeddings by some learnable function $g$ . In practice, we design $g$ as an attention based aggregation function (see Appendix D.2). Subgraph ensemble is useful both when $\\{ \\mathtt { E X T R A C T } _ { i } \\}$ consists of different algorithms and when each EXTRA $\\Omega { \\mathrm { T } } _ { i }$ performs the same algorithm under different parameters. ",
782
+ "bbox": [
783
+ 173,
784
+ 166,
785
+ 826,
786
+ 282
787
+ ],
788
+ "page_idx": 6
789
+ },
790
+ {
791
+ "type": "text",
792
+ "text": "CASE STUDY Consider PPR-based $\\mathtt { E X T R A C T } _ { i }$ with different threshold $\\theta _ { i }$ on the neighbor PPR score. A SHADOW-GNN-ensemble can approximate PPRGo [6]. PPRGo generates embedding as: ${ \\pmb { \\xi } } _ { v } =$ $\\sum _ { u \\in \\mathcal { V } _ { [ v ] } } \\pi _ { u } h _ { v }$ , where $\\pi _ { u }$ is $u$ ’s PPR score and $\\begin{array} { r } { h _ { v } = \\mathtt { M L P } \\left( \\pmb { x } _ { v } \\right) } \\end{array}$ . We can partition $\\begin{array} { r } { \\mathcal { V } _ { [ v ] } = \\bigcup _ { i = 1 } ^ { R } \\mathcal { V } _ { [ v ] } ^ { i } } \\end{array}$ s.t. nodes in $\\mathcal { V } _ { [ v ] } ^ { i }$ have similar PPR scores denoted by $\\widetilde { \\pi } _ { i }$ , and $\\widetilde { \\pi } _ { i } \\leq \\widetilde { \\pi } _ { i + 1 }$ . $\\begin{array} { r } { \\mathrm { S o } \\xi _ { v } = \\sum _ { i = 1 } ^ { R } \\rho _ { i } \\left( \\sum _ { u \\in \\mathcal { V } _ { i } ^ { ' } } \\pmb { h } _ { u } \\right) } \\end{array}$ , where $\\begin{array} { r } { \\rho _ { i } = \\widetilde { \\pi } _ { i } - \\sum _ { j < i } \\widetilde { \\pi } _ { j } } \\end{array}$ and $\\begin{array} { r } { \\mathcal { V } _ { i } ^ { \\prime } = \\bigcup _ { k = i } ^ { R } \\mathcal { V } _ { [ v ] } ^ { k } } \\end{array}$ . Now for each branch of SHADOW-GNN-ensemble, elet parameter $\\theta _ { i } = \\widetilde { \\pi } _ { i }$ eso that $\\mathtt { E X T R A C T } _ { i }$ returns $\\mathcal { V } _ { i } ^ { \\prime }$ . The GNN on $\\mathcal { V } _ { i } ^ { \\prime }$ can then learn $\\sum _ { u \\in \\mathcal { V } _ { i } ^ { \\prime } } \\boldsymbol { h } _ { u }$ (e.g., by a simple “mean” READOUT). Finally, set the ensemble weight as $\\rho _ { i }$ . SHADOW-GNN-ensemble learns $\\xi _ { v }$ . As EXTRACT also preserves graph topology, our model can be more expressive than PPRGo. ",
793
+ "bbox": [
794
+ 173,
795
+ 287,
796
+ 826,
797
+ 425
798
+ ],
799
+ "page_idx": 6
800
+ },
801
+ {
802
+ "type": "text",
803
+ "text": "3.6 Practical Design: SHADOW-GNN ",
804
+ "text_level": 1,
805
+ "bbox": [
806
+ 176,
807
+ 440,
808
+ 446,
809
+ 455
810
+ ],
811
+ "page_idx": 6
812
+ },
813
+ {
814
+ "type": "text",
815
+ "text": "We now discuss the practical implementation of decoupled GNN – SHADOW-GNN. As the name suggests, in SHADOW-GNN, the scope is a shallow subgraph (i.e., with depth often set to 2 or 3). ",
816
+ "bbox": [
817
+ 174,
818
+ 465,
819
+ 823,
820
+ 494
821
+ ],
822
+ "page_idx": 6
823
+ },
824
+ {
825
+ "type": "text",
826
+ "text": "In many realistic scenarios (e.g., citation networks, social networks, product recommendation graphs), a shallow neighborhood is both necessary and sufficient for the GNN to learn well. On “sufficiency”, we consider the social network example: the friend of a friend of a friend may share little commonality with you, and close friends may be at most 2 hops away. Formally, by the $\\gamma$ -decaying theorem [56], a shallow neighborhood is sufficient to accurately estimate various graph metrics. On “necessity”, since the neighborhood size may grow exponentially with hops, a deep neighborhood would be dominated by nodes irrelevant to the target. The corresponding GNN would first need to differentiate the many useless nodes from the very few useful ones, before it can extract meaningful features from the useful nodes. Finally, a shallow subgraph ensures scalability by avoiding “neighborhood explosion”. ",
827
+ "bbox": [
828
+ 174,
829
+ 501,
830
+ 825,
831
+ 626
832
+ ],
833
+ "page_idx": 6
834
+ },
835
+ {
836
+ "type": "text",
837
+ "text": "Remark on decoupling. So far we have defined a decoupled model as having the model depth $L ^ { \\prime }$ larger than the subgraph depth $L$ . Strictly speaking, a decoupled model also admits $L ^ { \\prime } = \\bar { L }$ . For example, suppose in the full $L$ -hop neighborhood, there are $70 \\%$ nodes $L$ hops away. Applying decoupling, the EXTRACT excludes most of the $L$ -hop neighbors, and the resulting subgraph $\\mathcal { G } _ { [ v ] }$ contains only $20 \\%$ nodes $L$ hops away. Then it is reasonable to consider an $L$ -layer model on such a depth- $L$ subgraph as also a decouple model. Compared with an $L$ -layer model on the full $L$ -hop neighborhood, an $L$ -layer model on such a depth- $L$ $\\mathcal { G } _ { [ v ] }$ propagates much less information from nodes $L$ hops away. So the $L$ message passings are indeed decoupled from the full $L$ -hop neighborhood. ",
838
+ "bbox": [
839
+ 174,
840
+ 631,
841
+ 825,
842
+ 742
843
+ ],
844
+ "page_idx": 6
845
+ },
846
+ {
847
+ "type": "text",
848
+ "text": "Remark on neighborhood. The “sufficiency” and “necessity” in shallow neighborhood are not universal. In many other applications, long-range dependencies can be critical, as studied in [2]. In such cases, our practical implementation of SHADOW-GNN would incur accuracy loss. However, our decoupling principle in general may still be beneficial – “shallow subgraph” is a practical guideline rather than a theoretical requirement. We leave the study on such applications as future work. ",
849
+ "bbox": [
850
+ 174,
851
+ 748,
852
+ 825,
853
+ 819
854
+ ],
855
+ "page_idx": 6
856
+ },
857
+ {
858
+ "type": "text",
859
+ "text": "4 Related Work ",
860
+ "text_level": 1,
861
+ "bbox": [
862
+ 174,
863
+ 837,
864
+ 321,
865
+ 854
866
+ ],
867
+ "page_idx": 6
868
+ },
869
+ {
870
+ "type": "text",
871
+ "text": "Deep GNNs. To improve the GNN performance while increasing the model depth, various layer architectures have been proposed. AS-GCN [18], DeepGCN [28], JK-net [50], MixHop [1], Snowball [33], DAGNN [31] and GCNII [34] all include some variants of residue connection, either across multiple layers or within a single layer. In principle, such architectures can also benefit the feature propagation of a deep SHADOW-GNN, since their design does not rely on a specific neighborhood (e.g., $L$ -hop). In addition to architectures, DropEdge [39] and Bayesian-GDC [14] propose regularization techniques by adapting dropout [42] to graphs. Such techniques are only applied during training, and inference may still suffer from issues such as oversmoothing. ",
872
+ "bbox": [
873
+ 176,
874
+ 869,
875
+ 825,
876
+ 911
877
+ ],
878
+ "page_idx": 6
879
+ },
880
+ {
881
+ "type": "text",
882
+ "text": "",
883
+ "bbox": [
884
+ 174,
885
+ 90,
886
+ 823,
887
+ 160
888
+ ],
889
+ "page_idx": 7
890
+ },
891
+ {
892
+ "type": "text",
893
+ "text": "Sampling based methods. Neighbor or subgraph sampling techniques have been proposed to improve training efficiency. FastGCN [8], VR-GCN [7], AS-GCN [18], LADIES [61] and MVSGNN [10] sample neighbor nodes per GNN layer. Cluster-GCN [9] and GraphSAINT [55] sample a subgraph as the training minibatch. While sampling also changes the receptive field, all the above methods are fundamentally different from ours. The training samplers aim at estimating the quantities related to the full graph (e.g., the aggregation of the full $L$ -hop neighborhood), and so the inference model still operates on the full neighborhood to avoid accuracy loss. For SHADOW-GNN, since the decoupling principle is derived from a local view on $\\mathcal { G }$ , our EXTRACT does not estimate any full neighborhood quantities. Consequently, the sampling based methods only improve the training efficiency, while SHADOW-GNN addresses the computation challenge for both training and inference. ",
894
+ "bbox": [
895
+ 174,
896
+ 166,
897
+ 825,
898
+ 305
899
+ ],
900
+ "page_idx": 7
901
+ },
902
+ {
903
+ "type": "text",
904
+ "text": "Re-defining the neighborhood. Various works reconstruct the original graph and apply the GNN on the re-defined neighborhood. GDC [23] views the reconstructed adjacency matrix as the diffusion matrix. SIGN [11] applies reconstruction for customized graph operators. AM-GCN [46] utilizes the reconstruction to separate feature and structure information. The above work re-define the neighborhood. However, they still have tightly coupled depth and scope. SHADOW-GNN can also work with the reconstructed graph $\\mathcal { G } ^ { \\prime }$ by simply applying EXTRACT on $\\mathcal { G } ^ { \\prime }$ . ",
905
+ "bbox": [
906
+ 174,
907
+ 311,
908
+ 825,
909
+ 395
910
+ ],
911
+ "page_idx": 7
912
+ },
913
+ {
914
+ "type": "text",
915
+ "text": "5 Experiments ",
916
+ "text_level": 1,
917
+ "bbox": [
918
+ 174,
919
+ 416,
920
+ 312,
921
+ 434
922
+ ],
923
+ "page_idx": 7
924
+ },
925
+ {
926
+ "type": "text",
927
+ "text": "Setup. We evaluate SHADOW-GNN on seven graphs. Six of them are for the node classification task: Flickr [55], Reddit [12], Yelp [55], ogbn-arxiv, ogbn-products and ogbn-papers100M [16]. The remaining is for the link prediction task: ogbl-collab [16]. The sizes of the seven graphs range from 9K nodes (Flickr) to 110M nodes (ogbn-papers100M). Flickr, Reddit and Yelp are under the inductive setting. ogbn-arxiv, ogbn-products and ogbn-papers100M are transductive. Consistent with the original papers, for the graphs on node classification, we measure “F1-micro” score for Yelp and “accuracy” for the remaining five graphs. For the link prediction task, we use “Hits $@ 5 0 ^ { \\circ }$ as the metric. See Appendix E.1 for details. We use W&B [5] for experiment tracking. ",
928
+ "bbox": [
929
+ 173,
930
+ 449,
931
+ 826,
932
+ 560
933
+ ],
934
+ "page_idx": 7
935
+ },
936
+ {
937
+ "type": "text",
938
+ "text": "We construct SHADOW with six backbone models: GCN [22], GraphSAGE [12], GAT [44], JK-Net [50], GIN [49], SGC [47]. The first five are representatives of the state-of-the-art GNN architectures, jointly covering various message aggregation functions as well as the skip connection design. SGC simplifies normal GCN by moving all the neighbor propagation to the pre-processing step. Therefore, SGC is suitable for evaluating oversmoothing. The non-SHADOW models are trained with both full-batch and GraphSAINT-minibatch [55]. Due to the massive size of the full $L$ -hop neighborhood, we need to perform sampling when training normal GNNs in order to make the computation time tractable. GraphSAINT is suitable for our purpose since 1. it is the state-of-the-art minibatch method which achieves high accuracy, and 2. it supports various GNN architectures and scales well to large graphs. On the other hand, for SHADOW-GNN, both training and inference are always executed in minibatches. One advantage of SHADOW-GNN is that the decoupling enables straightforward minibatch construction: each target just independently extracts the small subgraph on its own. ",
939
+ "bbox": [
940
+ 174,
941
+ 565,
942
+ 826,
943
+ 732
944
+ ],
945
+ "page_idx": 7
946
+ },
947
+ {
948
+ "type": "text",
949
+ "text": "We implement two EXTRACT described in Section 3.4: 1. “PPR”, where we set the node budget $K$ as $\\{ 2 0 0 , 4 0 0 \\}$ for the largest ogbn-papers100M and $K \\leq 2 0 0$ for all other graphs; 2. “ $L$ -hop”, where we set the depth as $\\{ 1 , 2 \\}$ . We implement various subgraph pooling functions: “mean” and “max” evaluated in this section and others evaluated in Appendix F.3. For the model depth, since $L ^ { \\prime } = 3$ is the standard setting in the literature (e.g., see the benchmarking in OGB [16]), we start from $L ^ { \\prime } = 3$ and further evaluate a deeper model of $L ^ { \\prime } = 5$ . All accuracy are measured by 5 runs without fixing random seeds. Hyperparameter tuning and architecture configurations are in Appendix E.4. ",
950
+ "bbox": [
951
+ 174,
952
+ 738,
953
+ 825,
954
+ 835
955
+ ],
956
+ "page_idx": 7
957
+ },
958
+ {
959
+ "type": "text",
960
+ "text": "SHADOW-GNN neighborhood. For both normal and SHADOW GNNs, Figure 2 shows on average how many neighbors are $L$ hops away from the target. For a normal GNN, the size of the neighborhood grows rapidly with respect to $L$ , and the nodes 4 hops away dominate the neighborhood. For SHADOW-GNN using the Table 1 EXTRACT, most neighbors concentrate within 2 hops. A small number of nodes are 3 hops away. Almost no nodes are 4 or more hops away. Importantly, not only does the composition of the two kinds of neighborhood differ significantly, but also the size of SHADOW-GNN scope is much smaller (see also Table 1). Such small subgraphs are essential to high computation efficiency. Finally, we can ignore the very few distant neighbors $ { \\left( L \\geq 4 \\right) }$ , and regard the (effective) depth of SHADOW-GNN subgraph as $L = 2$ (or at most 3). Under such practical value of $L$ , a model with $L ^ { \\prime } \\geq 3$ is indeed a SHADOW-GNN (see “Remark on decoupling” in Section 3.6). ",
961
+ "bbox": [
962
+ 174,
963
+ 842,
964
+ 825,
965
+ 911
966
+ ],
967
+ "page_idx": 7
968
+ },
969
+ {
970
+ "type": "image",
971
+ "img_path": "images/3ff0d72768a180365177f62556e21fbfcee94cfc5f872b8f2a83346e32c2987c.jpg",
972
+ "image_caption": [
973
+ "Figure 2: Neighborhood composition "
974
+ ],
975
+ "image_footnote": [],
976
+ "bbox": [
977
+ 187,
978
+ 93,
979
+ 540,
980
+ 243
981
+ ],
982
+ "page_idx": 8
983
+ },
984
+ {
985
+ "type": "image",
986
+ "img_path": "images/0d3040806271ed912e8436ec3211d9ba63a3ac476cee9100cccc0c4712716703.jpg",
987
+ "image_caption": [
988
+ "Figure 3: SGC oversmoothing "
989
+ ],
990
+ "image_footnote": [],
991
+ "bbox": [
992
+ 594,
993
+ 90,
994
+ 812,
995
+ 234
996
+ ],
997
+ "page_idx": 8
998
+ },
999
+ {
1000
+ "type": "text",
1001
+ "text": "",
1002
+ "bbox": [
1003
+ 174,
1004
+ 273,
1005
+ 825,
1006
+ 343
1007
+ ],
1008
+ "page_idx": 8
1009
+ },
1010
+ {
1011
+ "type": "table",
1012
+ "img_path": "images/68b6276e9d4bb1c7d79dc8a30a7c1a9954eef416ca50dfae9050189b51d9129a.jpg",
1013
+ "table_caption": [
1014
+ "Table 1: Comparison on test accuracy / F1-micro score and inference cost (tuned with DropEdge) "
1015
+ ],
1016
+ "table_footnote": [],
1017
+ "table_body": "<table><tr><td rowspan=\"2\">Method</td><td rowspan=\"2\">Layers</td><td colspan=\"2\">Flickr</td><td colspan=\"2\">Reddit</td><td colspan=\"2\">Yelp</td><td colspan=\"2\">ogbn-arxiv</td><td colspan=\"2\">ogbn-products</td></tr><tr><td>Accuracy</td><td>Cost</td><td>Accuracy</td><td>Cost</td><td>F1-micro</td><td>Cost</td><td>Accuracy</td><td>Cost</td><td>Accuracy</td><td>Cost</td></tr><tr><td rowspan=\"3\">GCN</td><td>3 5</td><td>0.5159±0.0017</td><td>2E0</td><td>0.9532±0.0003</td><td>6E1</td><td>0.4028±0.0019</td><td>2E1</td><td>0.7170±0.0026</td><td>1E1</td><td>0.7567±0.0018</td><td>5E0</td></tr><tr><td></td><td>0.5217±0.0016</td><td>2E2</td><td>0.9495±0.0012</td><td>1E3</td><td>OOM</td><td>1E3</td><td>0.7186±0.0017</td><td>1E3</td><td>OOM</td><td>9E2</td></tr><tr><td>3</td><td>0.5155±0.0027</td><td>2E0</td><td>0.9523±0.0003</td><td>6E1</td><td>0.5110±0.0012</td><td>2E1</td><td>0.7093±0.0003</td><td>1E1</td><td>0.8003±0.0024</td><td>5E0</td></tr><tr><td>GCN-SAINT</td><td>5</td><td>0.5165±0.0026</td><td>2E2</td><td>0.9523±0.0012</td><td>1E3</td><td>0.5012±0.0021</td><td>1E3</td><td>0.7039±0.0020</td><td>1E3</td><td>0.7992±0.0021</td><td>9E2</td></tr><tr><td>SHADOW-GCN</td><td>3</td><td>0.5234±0.0009</td><td>(1</td><td>0.9576±0.0005</td><td>1</td><td>0.5291±0.0020</td><td>(1</td><td>0.7180±0.0024</td><td>1</td><td>0.7742±0.0037</td><td>1)</td></tr><tr><td>(PPR)</td><td>5</td><td>0.5268±0.0008</td><td>1E0</td><td>0.9564±0.0004</td><td>1E0</td><td>0.5323±0.0020</td><td>2E0</td><td>0.7206±0.0025</td><td>2E0</td><td>0.7821±0.0043</td><td>2E0</td></tr><tr><td>+Pooling</td><td>3/5</td><td>0.5286±0.0013</td><td>1E0</td><td>0.9624±0.0002</td><td>1E0</td><td>0.5393±0.0036</td><td>2E0</td><td>0.7223±0.0018</td><td>2E0</td><td>0.7914±0.0044</td><td>2E0</td></tr><tr><td rowspan=\"3\">GraphSAGE</td><td>3</td><td>0.5140±0.0014</td><td>3E0</td><td>0.9653±0.0002</td><td>5E1</td><td>0.6178±0.0033</td><td>2E1</td><td>0.7192±0.0027</td><td>1E1</td><td>0.7858±0.0013</td><td>4E0</td></tr><tr><td>5</td><td>0.5154±0.0052</td><td>2E2</td><td>0.9626±0.0004</td><td>1E3</td><td>0OM</td><td>2E3</td><td>0.7193±0.0037</td><td>1E3</td><td>0OM</td><td>1E3</td></tr><tr><td>3</td><td>0.5176±0.0032</td><td>3E0</td><td>0.9671±0.0003</td><td>5E1</td><td>0.6453±0.0011</td><td>2E1</td><td>0.7107±0.0003</td><td>1E1</td><td>0.7923±0.0023</td><td>4E0</td></tr><tr><td>SAGE-SAINT</td><td>5</td><td>0.5201±0.0032</td><td>2E2</td><td>0.9670±0.0010</td><td>1E3</td><td>0.6394±0.0003</td><td>2E3</td><td>0.7013±0.0021</td><td>1E3</td><td>0.7964±0.0022</td><td>1E3</td></tr><tr><td>SHADOW-SAGE</td><td>3</td><td>0.5312±0.0019</td><td>1E0</td><td>0.9672±0.0003</td><td>1E0</td><td>0.6542±0.0002</td><td>1E0</td><td>0.7163±0.0028</td><td>1E0</td><td>0.7935±0.0031</td><td>1E0</td></tr><tr><td>(2-hop)</td><td>5</td><td>0.5335±0.0015</td><td>2E0</td><td>0.9675±0.0005</td><td>2E0</td><td>0.6525±0.0003</td><td>2E0</td><td>0.7180±0.0030</td><td>2E0</td><td>0.7995±0.0022</td><td>2E0</td></tr><tr><td> SHADOW-SAGE</td><td>3</td><td>0.5356±0.0013</td><td>(1)</td><td>0.9688±0.0002</td><td>(1)</td><td>0.6538±0.0003</td><td>(1)</td><td>0.7227±0.0012</td><td>(1)</td><td>0.7905±0.0026</td><td>(1)</td></tr><tr><td>(PPR)</td><td>5</td><td>0.5417±0.0006</td><td>2E0</td><td>0.9692±0.0007</td><td>2E0</td><td>0.6518±0.0002</td><td>2E0</td><td>0.7238±0.0007</td><td>2E0</td><td>0.8005±0.0040</td><td>2E0</td></tr><tr><td>+Pooling</td><td>3/5</td><td>0.5395±0.0013</td><td>2E0</td><td>0.9703±0.0003</td><td>2E0</td><td>0.6564±0.0004</td><td>1E0</td><td>0.7258±0.0017</td><td>2E0</td><td>0.8067±0.0037</td><td>1E0</td></tr><tr><td rowspan=\"3\">GAT</td><td>3</td><td>0.5070±0.0032</td><td>2E1</td><td>0OM</td><td>3E2</td><td>0OM</td><td>2E2</td><td>0.7201±0.0011</td><td>1E2</td><td>0OM</td><td>3E1</td></tr><tr><td>5</td><td>0.5164±0.0033</td><td>2E2</td><td>OOM</td><td>2E3</td><td>OOM</td><td>2E3</td><td>OOM</td><td>3E3</td><td>OOM</td><td>2E3</td></tr><tr><td>3</td><td>0.5225±0.0053</td><td>2E1</td><td>0.9671±0.0003</td><td>3E2</td><td>0.6459±0.0002</td><td>2E2</td><td>0.6977±0.0003</td><td>1E2</td><td>0.8027±0.0028</td><td>3E1</td></tr><tr><td>GAT-SAINT</td><td>5</td><td>0.5153±0.0034</td><td>2E2</td><td>0.9651±0.0024</td><td>2E3</td><td>0.6478±0.0012</td><td>2E3</td><td>0.6954±0.0013</td><td>3E3</td><td>0.7990±0.0072</td><td>2E3</td></tr><tr><td>SHADOW-GAT</td><td></td><td>0.5349±0.0023</td><td>(1)</td><td>0.9707±0.0004</td><td>(1)</td><td>0.6575±0.0004</td><td>(1)</td><td>0.7235±0.0020</td><td>(1)</td><td>0.8006±0.0014</td><td>(1)</td></tr><tr><td>(PPR)</td><td>3</td><td>0.5352±0.0028</td><td>2E0</td><td>0.9713±0.0004</td><td>2E0</td><td>0.6559±0.0002</td><td>2E0</td><td>0.7274±0.0022</td><td>2E0</td><td>0.8071±0.0004</td><td>2E0</td></tr><tr><td>+Pooling</td><td>3/5</td><td>0.5364±0.0026</td><td>1E0</td><td>0.9710±0.0004</td><td>2E0</td><td>0.6566±0.0005</td><td>1E0</td><td>0.7265±0.0028</td><td>2E0</td><td>0.8142±0.0031</td><td>1E0</td></tr></table>",
1018
+ "bbox": [
1019
+ 176,
1020
+ 381,
1021
+ 823,
1022
+ 638
1023
+ ],
1024
+ "page_idx": 8
1025
+ },
1026
+ {
1027
+ "type": "text",
1028
+ "text": "Comparison with baselines. Table 1 shows the performance comparison of SHADOW-GNN with the normal GNNs. All models on all datasets have uniform hidden dimension of 256. We define the metric “inference cost” as the average amount of computation to generate prediction for one test node. Inference cost is a measure of computation complexity (see Appendix B for the calculation) and is independent of hardware / implementation factors such as parallelization strategy, batch processing, etc. For cost of SHADOW-GNN, we do not include the overhead on computing EXTRACT, since it is hard to calculate such cost analytically. Empirically, subgraph extraction is much cheaper than model computation (see Figure 8, 9 for time evaluation on CPU and GPU). During training, we apply DropEdge [39] to both the baseline and SHADOW models. DropEdge helps improve the baseline accuracy by alleviating oversmoothing, and benefits SHADOW-GNN due to its regularization effects. See Appendix F.2 for results on other architectures including GIN and JK-Net. ",
1029
+ "bbox": [
1030
+ 173,
1031
+ 656,
1032
+ 825,
1033
+ 808
1034
+ ],
1035
+ "page_idx": 8
1036
+ },
1037
+ {
1038
+ "type": "text",
1039
+ "text": "ACCURACY We aim at answering the following questions: 1. Can we improve accuracy by decoupling a baseline model? 2. What architecture components can we tune to improve accuracy of a decoupled model? 3. What EXTRACT can we tune to improve the accuracy of a decoupled model? To answer Q1, we fix the backbone architecture and remove pooling. Then we inspect “3-layer normal GNN vs. 3-layer SHADOW-GNN” and “5-layer normal GNN vs. 5-layer SHADOW-GNN”. Clearly, SHADOW-GNNs (with scope size no more than 200) in general achieve significantly higher accuracy than the normal GNNs. This indicates that a shallow neighborhood contains sufficient information, and customizing the scope can benefit accuracy even without architecture changes (from Figure 2, a depth-3 $\\mathcal { G } _ { [ v ] }$ differs significantly from the 3-hop neighborhood). To answer Q1, we focus on the PPR EXTRACT and thus compare the rows in blue background. We use the 3-layer SHADOW-GNN without pooling as the baseline and analyze the effects of 1. increasing the GNN depth without expanding scope, and 2. adding subgraph pooling. Comparing among the rows in light blue background, we observe that in many cases, simply increasing the depth from 3 to 5 leads to significant accuracy gain. Comparing the ligh blue rows with the dark blue rows, we observe that sometimes pooling can further improve the accuracy of a SHADOW-GNN. In conclusion, both types of architecture tuning are effective ways of optimizing a SHADOW-GNN. Finally, to answer Q3, we compare the light blue rows with the light yellow rows. In general, PPR EXTRACT leads to higher accuracy than 2-hop EXTRACT, demonstrating the importance of designing a good EXTRACT. ",
1040
+ "bbox": [
1041
+ 174,
1042
+ 814,
1043
+ 825,
1044
+ 911
1045
+ ],
1046
+ "page_idx": 8
1047
+ },
1048
+ {
1049
+ "type": "text",
1050
+ "text": "",
1051
+ "bbox": [
1052
+ 173,
1053
+ 90,
1054
+ 825,
1055
+ 258
1056
+ ],
1057
+ "page_idx": 9
1058
+ },
1059
+ {
1060
+ "type": "text",
1061
+ "text": "INFERENCE COST Inference cost of SHADOW-GNN is orders of magnitude lower than the normal GNNs (a 5-layer SHADOW-GNN is still much cheaper than a 3-layer normal GNN). The high cost of the baselines is due to the “neighborhood explosion” with respect to more layers. SHADOW-GNN is efficient and scalable as the cost only grows linearly with the model depth. Note that GraphSAINT only improves efficiency during training since its inference operates on the full $L$ -hop neighborhood. ",
1062
+ "bbox": [
1063
+ 173,
1064
+ 263,
1065
+ 825,
1066
+ 335
1067
+ ],
1068
+ "page_idx": 9
1069
+ },
1070
+ {
1071
+ "type": "table",
1072
+ "img_path": "images/11a6941c95351465d2299be4671f3d428265b59d9e5d5fb9cb547b22094f9e52.jpg",
1073
+ "table_caption": [
1074
+ "Table 2: Leaderboard comparison on papers100M "
1075
+ ],
1076
+ "table_footnote": [],
1077
+ "table_body": "<table><tr><td>Method</td><td>Test accuracy</td><td>Val accuracy</td><td>Neigh size</td></tr><tr><td>GraphSAGE+incep</td><td>0.6706±0.0017</td><td>0.7032±0.0011</td><td>4E5</td></tr><tr><td>SIGN-XL</td><td>0.6606±0.0019</td><td>0.6984±0.0006</td><td>&gt;4E5</td></tr><tr><td>SGC</td><td>0.6329±0.0019</td><td>0.6648±0.0020</td><td>&gt;4E5</td></tr><tr><td>SHADOW-GAT200</td><td>0.6681±0.0016</td><td>0.7019±0.0011</td><td>2E2</td></tr><tr><td>SHADOW-GAT400</td><td>0.6708±0.0017</td><td>0.7073±0.0011</td><td>3E2</td></tr></table>",
1078
+ "bbox": [
1079
+ 485,
1080
+ 352,
1081
+ 818,
1082
+ 428
1083
+ ],
1084
+ "page_idx": 9
1085
+ },
1086
+ {
1087
+ "type": "text",
1088
+ "text": "Scaling to 100 million nodes. We further scale SHADOW-GNN to ogbn-papers100M, one of the largest public dataset. Even through the full graph size is at least two orders of magnitude larger than the graphs in Table 1, the localized scope of SHADOW-GNN barely needs to increase. Since SHADOW-GNN performs ",
1089
+ "bbox": [
1090
+ 174,
1091
+ 340,
1092
+ 470,
1093
+ 438
1094
+ ],
1095
+ "page_idx": 9
1096
+ },
1097
+ {
1098
+ "type": "text",
1099
+ "text": "minibatch computation, a low-end GPU with limited memory capacity can compute SHADOW-GNN on ogbn-papers100M efficiently. We show in Appendix F.1 that we can train and inference our model with as little as 4GB GPU memory consumption. This is infeasible using normal GNNs. Table 2 summarizes our comparison with the top leaderboard methods [45, 11, 47]. We only include those methods that do not use node labels as the model input (i.e., the most standard setup). We achieve at least 3 orders of magnitude reduction in neighborhood size without sacrificing accuracy. For SIGN-XL and SGC, their neighborhood is too large to count the exact size. Also, their preprocessing consumes $5 \\times$ more CPU memory than SHADOW-GNN (Appendix F.1). ",
1100
+ "bbox": [
1101
+ 173,
1102
+ 438,
1103
+ 825,
1104
+ 547
1105
+ ],
1106
+ "page_idx": 9
1107
+ },
1108
+ {
1109
+ "type": "table",
1110
+ "img_path": "images/d4dbf7e06ebf934ed91b38cd6929e66e87e16f57dc0619724dc2320235aef67f.jpg",
1111
+ "table_caption": [
1112
+ "Table 3: Leaderboard comparison on collab "
1113
+ ],
1114
+ "table_footnote": [],
1115
+ "table_body": "<table><tr><td>Method</td><td>Test Hits @50</td><td>Val Hits @50</td></tr><tr><td>SEAL</td><td>0.5371±0.0047</td><td>0.6389±0.0049</td></tr><tr><td>DeeperGCN</td><td>0.5273±0.0047</td><td>0.6187±0.0045</td></tr><tr><td>LRGA+GCN</td><td>0.5221±0.0072</td><td>0.6088±0.0059</td></tr><tr><td>SHADOW-SAGE</td><td>0.5492±0.0022</td><td>0.6524±0.0017</td></tr></table>",
1116
+ "bbox": [
1117
+ 535,
1118
+ 565,
1119
+ 823,
1120
+ 638
1121
+ ],
1122
+ "page_idx": 9
1123
+ },
1124
+ {
1125
+ "type": "text",
1126
+ "text": "Extending to link-level task. We further show that SHADOW-GNN is general and can be extended to the link prediction task. There are two settings of ogbl-collab. We follow the one where validation edges cannot be used in training updates. This is the setting which most leaderboard methods follow. Table 3 shows the comparison with the top GNN models under the same setting. SHADOW-SAGE outperforms the rank-1 model with significant margin. ",
1127
+ "bbox": [
1128
+ 174,
1129
+ 554,
1130
+ 519,
1131
+ 659
1132
+ ],
1133
+ "page_idx": 9
1134
+ },
1135
+ {
1136
+ "type": "text",
1137
+ "text": "",
1138
+ "bbox": [
1139
+ 178,
1140
+ 651,
1141
+ 803,
1142
+ 665
1143
+ ],
1144
+ "page_idx": 9
1145
+ },
1146
+ {
1147
+ "type": "text",
1148
+ "text": "Oversmoothing. To validate Theorem 3.2, we pick SGC as the backbone architecture. SGC with power $L$ is equivalent to $L$ -layer GCN without activation. Performance comparison between SGC and SHADOW-SGC thus reveals the effect of oversmoothing without introducing other factors due to optimizing deep neural networks (e.g., vanishing gradients). In Figure 3, we vary the power of SGC and SHADOW-SGC from 1 to 40 (see Appendix E.5 for details). While SGC gradually collapses local information into global “white noise”, accuracy of SHADOW-SGC does not degrade. This validates our theory that extracting local subgraphs prevents oversmoothing. ",
1149
+ "bbox": [
1150
+ 174,
1151
+ 670,
1152
+ 825,
1153
+ 768
1154
+ ],
1155
+ "page_idx": 9
1156
+ },
1157
+ {
1158
+ "type": "text",
1159
+ "text": "6 Conclusion ",
1160
+ "text_level": 1,
1161
+ "bbox": [
1162
+ 174,
1163
+ 787,
1164
+ 299,
1165
+ 804
1166
+ ],
1167
+ "page_idx": 9
1168
+ },
1169
+ {
1170
+ "type": "text",
1171
+ "text": "We have presented a design principle to decouple the depth and scope of GNNs. Applying such a principle on various GNN architectures simultaneously improves expressivity and computation scalability of the corresponding models. We have presented thorough theoretical analysis on expressivity from three different perspectives, and also rich design components (e.g., subgraph extraction functions, architecture extensions) to implement such design principle. Experiments show significant performance improvement over a wide range of graphs, GNN architectures and learning tasks. ",
1172
+ "bbox": [
1173
+ 174,
1174
+ 819,
1175
+ 825,
1176
+ 902
1177
+ ],
1178
+ "page_idx": 9
1179
+ },
1180
+ {
1181
+ "type": "text",
1182
+ "text": "References \n[1] Sami Abu-El-Haija, Bryan Perozzi, Amol Kapoor, Nazanin Alipourfard, Kristina Lerman, Hrayr Harutyunyan, Greg Ver Steeg, and Aram Galstyan. Mixhop: Higher-order graph convolutional architectures via sparsified neighborhood mixing. arXiv preprint arXiv:1905.00067, 2019. \n[2] Uri Alon and Eran Yahav. On the bottleneck of graph neural networks and its practical implications. In International Conference on Learning Representations, 2021. \n[3] Reid Andersen, Fan Chung, and Kevin Lang. Local graph partitioning using pagerank vectors. In 2006 47th Annual IEEE Symposium on Foundations of Computer Science (FOCS’06), pages 475–486. IEEE, 2006. \n[4] Filippo Maria Bianchi, Daniele Grattarola, and Cesare Alippi. Spectral clustering with graph neural networks for graph pooling. In International Conference on Machine Learning, pages 874–883. PMLR, 2020. \n[5] Lukas Biewald. Experiment tracking with weights and biases, 2020. Software available from wandb.com. \n[6] Aleksandar Bojchevski, Johannes Klicpera, Bryan Perozzi, Amol Kapoor, Martin Blais, Benedek Rózemberczki, Michal Lukasik, and Stephan Günnemann. Scaling graph neural networks with approximate pagerank. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’20, page 2464–2473, New York, NY, USA, 2020. Association for Computing Machinery. \n[7] Jianfei Chen, Jun Zhu, and Le Song. Stochastic training of graph convolutional networks with variance reduction, 2017. \n[8] Jie Chen, Tengfei Ma, and Cao Xiao. FastGCN: Fast learning with graph convolutional networks via importance sampling. In International Conference on Learning Representations, 2018. \n[9] Wei-Lin Chiang, Xuanqing Liu, Si Si, Yang Li, Samy Bengio, and Cho-Jui Hsieh. Cluster-gcn: An efficient algorithm for training deep and large graph convolutional networks. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’19, page 257–266, New York, NY, USA, 2019. Association for Computing Machinery. \n[10] Weilin Cong, Rana Forsati, Mahmut Kandemir, and Mehrdad Mahdavi. Minimal variance sampling with provable guarantees for fast training of graph neural networks. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’20, page 1393–1403, New York, NY, USA, 2020. Association for Computing Machinery. \n[11] Fabrizio Frasca, Emanuele Rossi, Davide Eynard, Ben Chamberlain, Michael Bronstein, and Federico Monti. SIGN: Scalable inception graph neural networks, 2020. \n[12] Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in neural information processing systems, pages 1024–1034, 2017. \n[13] William L Hamilton, Rex Ying, and Jure Leskovec. Representation learning on graphs: Methods and applications. arXiv preprint arXiv:1709.05584, 2017. \n[14] Arman Hasanzadeh, Ehsan Hajiramezanali, Shahin Boluki, Mingyuan Zhou, Nick Duffield, Krishna Narayanan, and Xiaoning Qian. Bayesian graph neural networks with adaptive connection sampling, 2020. \n[15] Kurt Hornik, Maxwell Stinchcombe, Halbert White, et al. Multilayer feedforward networks are universal approximators. Neural networks, 2(5):359–366, 1989. \n[16] Weihua Hu, Matthias Fey, Marinka Zitnik, Yuxiao Dong, Hongyu Ren, Bowen Liu, Michele Catasta, and Jure Leskovec. Open graph benchmark: Datasets for machine learning on graphs, 2020. \n[17] Wenbing Huang, Yu Rong, Tingyang Xu, Fuchun Sun, and Junzhou Huang. Tackling oversmoothing for general Graph Convolutional Networks, 2020. \n[18] Wenbing Huang, Tong Zhang, Yu Rong, and Junzhou Huang. Adaptive sampling towards fast graph representation learning. In Advances in neural information processing systems, pages 4558–4567, 2018. \n[19] Glen Jeh and Jennifer Widom. Simrank: a measure of structural-context similarity. In Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining, pages 538–543, 2002. \n[20] Leo Katz. A new status index derived from sociometric analysis. Psychometrika, 18(1):39–43, 1953. \n[21] Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. \n[22] Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907, 2016. \n[23] Johannes Klicpera, Stefan Weißenberger, and Stephan Günnemann. Diffusion improves graph learning, 2019. \n[24] Junhyun Lee, Inyeop Lee, and Jaewoo Kang. Self-attention graph pooling. In International Conference on Machine Learning, pages 3734–3743. PMLR, 2019. \n[25] Jure Leskovec and Christos Faloutsos. Sampling from large graphs. In Proceedings of the 12th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, KDD ’06, page 631–636, New York, NY, USA, 2006. Association for Computing Machinery. \n[26] Jure Leskovec, Jon Kleinberg, and Christos Faloutsos. Graph evolution: Densification and shrinking diameters. ACM Trans. Knowl. Discov. Data, 1(1):2–es, March 2007. \n[27] David A Levin and Yuval Peres. Markov chains and mixing times, volume 107. American Mathematical Soc., 2017. \n[28] Guohao Li, Matthias Müller, Ali Thabet, and Bernard Ghanem. DeepGCNs: Can GCNs go as deep as CNNs? In The IEEE International Conference on Computer Vision (ICCV), 2019. \n[29] Guohao Li, Chenxin Xiong, Ali Thabet, and Bernard Ghanem. DeeperGCN: All you need to train deeper gcns, 2020. \n[30] Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into Graph Convolutional Networks for semi-supervised learning. arXiv preprint arXiv:1801.07606, 2018. \n[31] Meng Liu, Hongyang Gao, and Shuiwang Ji. Towards deeper graph neural networks. Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, Aug 2020. \n[32] Yu-Chen Lo, Stefano E Rensi, Wen Torng, and Russ B Altman. Machine learning in chemoinformatics and drug discovery. Drug discovery today, 23(8):1538–1546, 2018. \n[33] Sitao Luan, Mingde Zhao, Xiao-Wen Chang, and Doina Precup. Break the ceiling: Stronger multi-scale deep graph convolutional networks. In Advances in Neural Information Processing Systems 32, pages 10945–10955. Curran Associates, Inc., 2019. \n[34] Zhewei Wei Ming Chen, Bolin Ding Zengfeng Huang, and Yaliang Li. Simple and deep graph convolutional networks. 2020. \n[35] Federico Monti, Michael Bronstein, and Xavier Bresson. Geometric matrix completion with recurrent multi-graph neural networks. In Advances in Neural Information Processing Systems, pages 3697–3707, 2017. \n[36] Kenta Oono and Taiji Suzuki. Graph Neural Networks exponentially lose expressive power for node classification. In International Conference on Learning Representations, 2020. ",
1183
+ "bbox": [
1184
+ 173,
1185
+ 77,
1186
+ 828,
1187
+ 921
1188
+ ],
1189
+ "page_idx": 10
1190
+ },
1191
+ {
1192
+ "type": "text",
1193
+ "text": "",
1194
+ "bbox": [
1195
+ 171,
1196
+ 77,
1197
+ 828,
1198
+ 916
1199
+ ],
1200
+ "page_idx": 11
1201
+ },
1202
+ {
1203
+ "type": "text",
1204
+ "text": "[37] Aditya Pal, Chantat Eksombatchai, Yitong Zhou, Bo Zhao, Charles Rosenberg, and Jure Leskovec. PinnerSage: Multi-modal user embedding framework for recommendations at Pinterest. Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, Aug 2020. ",
1205
+ "bbox": [
1206
+ 173,
1207
+ 90,
1208
+ 826,
1209
+ 147
1210
+ ],
1211
+ "page_idx": 12
1212
+ },
1213
+ {
1214
+ "type": "text",
1215
+ "text": "[38] Namyong Park, Andrey Kan, Xin Luna Dong, Tong Zhao, and Christos Faloutsos. Estimating node importance in knowledge graphs using graph neural networks. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, pages 596–606, 2019. \n[39] Yu Rong, Wenbing Huang, Tingyang Xu, and Junzhou Huang. DropEdge: Towards deep Graph Convolutional Networks on node classification. In International Conference on Learning Representations, 2020. \n[40] Michael Schlichtkrull, Thomas N Kipf, Peter Bloem, Rianne Van Den Berg, Ivan Titov, and Max Welling. Modeling relational data with graph convolutional networks. In European Semantic Web Conference, pages 593–607. Springer, 2018. \n[41] Nino Shervashidze, Pascal Schweitzer, Erik Jan Van Leeuwen, Kurt Mehlhorn, and Karsten M Borgwardt. Weisfeiler-lehman graph kernels. Journal of Machine Learning Research, 12(9), 2011. \n[42] 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. \n[43] Jonathan M Stokes, Kevin Yang, Kyle Swanson, Wengong Jin, Andres Cubillos-Ruiz, Nina M Donghia, Craig R MacNair, Shawn French, Lindsey A Carfrae, Zohar Bloom-Ackerman, et al. A deep learning approach to antibiotic discovery. Cell, 180(4):688–702, 2020. \n[44] Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua ´ Bengio. Graph Attention Networks. In International Conference on Learning Representations, 2018. \n[45] Minjie Wang, Da Zheng, Zihao Ye, Quan Gan, Mufei Li, Xiang Song, Jinjing Zhou, Chao Ma, Lingfan Yu, Yu Gai, Tianjun Xiao, Tong He, George Karypis, Jinyang Li, and Zheng Zhang. Deep graph library: A graph-centric, highly-performant package for graph neural networks, 2020. \n[46] Xiao Wang, Meiqi Zhu, Deyu Bo, Peng Cui, Chuan Shi, and Jian Pei. AM-GCN: Adaptive multichannel graph convolutional networks. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’20, page 1243–1253, New York, NY, USA, 2020. Association for Computing Machinery. \n[47] Felix Wu, Tianyi Zhang, Amauri Holanda de Souza Jr, Christopher Fifty, Tao Yu, and Kilian Q Weinberger. Simplifying graph convolutional networks. arXiv preprint arXiv:1902.07153, 2019. \n[48] Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S. Yu. A comprehensive survey on graph neural networks. IEEE Transactions on Neural Networks and Learning Systems, 2020. \n[49] Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? arXiv preprint arXiv:1810.00826, 2018. \n[50] Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken ichi Kawarabayashi, and Stefanie Jegelka. Representation learning on graphs with jumping knowledge networks, 2018. \n[51] Rex Ying, Dylan Bourgeois, Jiaxuan You, Marinka Zitnik, and Jure Leskovec. GNNExplainer: Generating explanations for graph neural networks, 2019. \n[52] Rex Ying, Ruining He, Kaifeng Chen, Pong Eksombatchai, William L Hamilton, and Jure Leskovec. Graph convolutional neural networks for web-scale recommender systems. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, pages 974–983, 2018. \n[53] Jiaxuan You, Zhitao Ying, and Jure Leskovec. Design space for graph neural networks. In H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan, and H. Lin, editors, Advances in Neural Information Processing Systems, volume 33, pages 17009–17021. Curran Associates, Inc., 2020. \n[54] Hanqing Zeng, Hongkuan Zhou, Ajitesh Srivastava, Rajgopal Kannan, and Viktor Prasanna. Accurate, efficient and scalable graph embedding. In 2019 IEEE International Parallel and Distributed Processing Symposium (IPDPS), pages 462–471, 2019. \n[55] Hanqing Zeng, Hongkuan Zhou, Ajitesh Srivastava, Rajgopal Kannan, and Viktor Prasanna. GraphSAINT: Graph sampling based inductive learning method. In International Conference on Learning Representations, 2020. \n[56] Muhan Zhang and Yixin Chen. Link prediction based on graph neural networks. In Advances in Neural Information Processing Systems, pages 5165–5175, 2018. \n[57] Muhan Zhang, Zhicheng Cui, Marion Neumann, and Yixin Chen. An end-to-end deep learning architecture for graph classification. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 32, 2018. \n[58] Shuai Zhang, Lina Yao, Aixin Sun, and Yi Tay. Deep learning based recommender system: A survey and new perspectives. ACM Computing Surveys (CSUR), 52(1):1–38, 2019. \n[59] Yuyu Zhang, Xinshi Chen, Yuan Yang, Arun Ramamurthy, Bo Li, Yuan Qi, and Le Song. Efficient probabilistic logic reasoning with graph neural networks, 2020. \n[60] Lingxiao Zhao and Leman Akoglu. PairNorm: Tackling oversmoothing in gnns. In International Conference on Learning Representations, 2020. \n[61] Difan Zou, Ziniu Hu, Yewen Wang, Song Jiang, Yizhou Sun, and Quanquan Gu. Layerdependent importance sampling for training deep and large graph convolutional networks. In H. Wallach, H. Larochelle, A. Beygelzimer, F. d'Alché-Buc, E. Fox, and R. Garnett, editors, Advances in Neural Information Processing Systems, volume 32. Curran Associates, Inc., 2019. ",
1216
+ "bbox": [
1217
+ 169,
1218
+ 103,
1219
+ 828,
1220
+ 915
1221
+ ],
1222
+ "page_idx": 12
1223
+ },
1224
+ {
1225
+ "type": "text",
1226
+ "text": "",
1227
+ "bbox": [
1228
+ 171,
1229
+ 92,
1230
+ 826,
1231
+ 521
1232
+ ],
1233
+ "page_idx": 13
1234
+ },
1235
+ {
1236
+ "type": "text",
1237
+ "text": "Checklist ",
1238
+ "text_level": 1,
1239
+ "bbox": [
1240
+ 174,
1241
+ 545,
1242
+ 254,
1243
+ 561
1244
+ ],
1245
+ "page_idx": 13
1246
+ },
1247
+ {
1248
+ "type": "text",
1249
+ "text": "1. For all authors... ",
1250
+ "bbox": [
1251
+ 214,
1252
+ 573,
1253
+ 339,
1254
+ 587
1255
+ ],
1256
+ "page_idx": 13
1257
+ },
1258
+ {
1259
+ "type": "text",
1260
+ "text": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper’s contributions and scope? [Yes] \n(b) Did you describe the limitations of your work? [Yes] \n(c) Did you discuss any potential negative societal impacts of your work? [N/A] \n(d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes] ",
1261
+ "bbox": [
1262
+ 238,
1263
+ 592,
1264
+ 825,
1265
+ 683
1266
+ ],
1267
+ "page_idx": 13
1268
+ },
1269
+ {
1270
+ "type": "text",
1271
+ "text": "2. If you are including theoretical results... ",
1272
+ "bbox": [
1273
+ 214,
1274
+ 688,
1275
+ 493,
1276
+ 702
1277
+ ],
1278
+ "page_idx": 13
1279
+ },
1280
+ {
1281
+ "type": "text",
1282
+ "text": "(a) Did you state the full set of assumptions of all theoretical results? [Yes] (b) Did you include complete proofs of all theoretical results? [Yes] See append ",
1283
+ "bbox": [
1284
+ 238,
1285
+ 705,
1286
+ 758,
1287
+ 737
1288
+ ],
1289
+ "page_idx": 13
1290
+ },
1291
+ {
1292
+ "type": "text",
1293
+ "text": "3. If you ran experiments... ",
1294
+ "bbox": [
1295
+ 214,
1296
+ 742,
1297
+ 393,
1298
+ 756
1299
+ ],
1300
+ "page_idx": 13
1301
+ },
1302
+ {
1303
+ "type": "text",
1304
+ "text": "(a) Did you include the code, data, and instructions needed to reproduce the main experimental results (either in the supplemental material or as a URL)? [Yes] See the released code. \n(b) Did you specify all the training details (e.g., data splits, hyperparameters, how they were chosen)? [Yes] See the released code. It contains all configurations. \n(c) Did you report error bars (e.g., with respect to the random seed after running experiments multiple times)? [Yes] \n(d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs, internal cluster, or cloud provider)? [No] ",
1305
+ "bbox": [
1306
+ 238,
1307
+ 760,
1308
+ 825,
1309
+ 892
1310
+ ],
1311
+ "page_idx": 13
1312
+ },
1313
+ {
1314
+ "type": "text",
1315
+ "text": "4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets... ",
1316
+ "bbox": [
1317
+ 207,
1318
+ 897,
1319
+ 823,
1320
+ 911
1321
+ ],
1322
+ "page_idx": 13
1323
+ },
1324
+ {
1325
+ "type": "text",
1326
+ "text": "(a) If your work uses existing assets, did you cite the creators? [Yes] See citation after each dataset. \n(b) Did you mention the license of the assets? [N/A] \n(c) Did you include any new assets either in the supplemental material or as a URL? [No] \n(d) Did you discuss whether and how consent was obtained from people whose data you’re using/curating? [No] \n(e) Did you discuss whether the data you are using/curating contains personally identifiable information or offensive content? [No] ",
1327
+ "bbox": [
1328
+ 238,
1329
+ 90,
1330
+ 825,
1331
+ 213
1332
+ ],
1333
+ "page_idx": 14
1334
+ },
1335
+ {
1336
+ "type": "text",
1337
+ "text": "5. If you used crowdsourcing or conducted research with human subjects... ",
1338
+ "bbox": [
1339
+ 215,
1340
+ 217,
1341
+ 705,
1342
+ 231
1343
+ ],
1344
+ "page_idx": 14
1345
+ },
1346
+ {
1347
+ "type": "text",
1348
+ "text": "(a) Did you include the full text of instructions given to participants and screenshots, if applicable? [N/A] \n(b) Did you describe any potential participant risks, with links to Institutional Review Board (IRB) approvals, if applicable? [N/A] \n(c) Did you include the estimated hourly wage paid to participants and the total amount spent on participant compensation? [N/A] ",
1349
+ "bbox": [
1350
+ 238,
1351
+ 236,
1352
+ 825,
1353
+ 324
1354
+ ],
1355
+ "page_idx": 14
1356
+ }
1357
+ ]
parse/train/_IY3_4psXuf/_IY3_4psXuf_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/b8Kl8mcK6tb/b8Kl8mcK6tb.md ADDED
@@ -0,0 +1,357 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Bellman Eluder Dimension: New Rich Classes of RL Problems, and Sample-Efficient Algorithms
2
+
3
+ Chi Jin Princeton University chij@princeton.edu
4
+
5
+ Qinghua Liu Princeton University qinghual@princeton.edu
6
+
7
+ Sobhan Miryoosefi Princeton University miryoosefi@cs.princeton.edu
8
+
9
+ # Abstract
10
+
11
+ Finding the minimal structural assumptions that empower sample-efficient learning is one of the most important research directions in Reinforcement Learning (RL). This paper advances our understanding of this fundamental question by introducing a new complexity measure—Bellman Eluder (BE) dimension. We show that the family of RL problems of low BE dimension is remarkably rich, which subsumes a vast majority of existing tractable RL problems including but not limited to tabular MDPs, linear MDPs, reactive POMDPs, low Bellman rank problems as well as low Eluder dimension problems. This paper further designs a new optimization-based algorithm—GOLF, and reanalyzes a hypothesis eliminationbased algorithm—OLIVE [proposed in 1]. We prove that both algorithms learn the near-optimal policies of low BE dimension problems in a number of samples that is polynomial in all relevant parameters, but independent of the size of state-action space. Our regret and sample complexity results match or improve the best existing results for several well-known subclasses of low BE dimension problems.
12
+
13
+ # 1 Introduction
14
+
15
+ Modern Reinforcement Learning (RL) commonly engages practical problems with an enormous number of states, where function approximation must be deployed to approximate the true value function using functions from a prespecified function class. Function approximation, especially based on deep neural networks, lies at the heart of the recent practical successes of RL in domains such as Atari [2], Go [3], robotics [4], and dialogue systems [5].
16
+
17
+ Despite its empirical success, RL with function approximation raises a new series of theoretical challenges when comparing to the classic tabular RL: (1) generalization, to generalize knowledge from the visited states to the unvisited states due to the enormous state space. (2) limited expressiveness, to handle the complicated issues where true value functions or intermediate steps computed in the algorithm can be functions outside the prespecified function class. (3) exploration, to address the tradeoff between exploration and exploitation when above challenges are present.
18
+
19
+ Consequently, most existing theoretical results on efficient RL with function approximation rely on relatively strong structural assumptions. For instance, many require that the MDP admits a linear approximation [6–8], or that the model is precisely Linear Quadratic Regulator (LQR) [9–11]. Most of these structural assumptions rarely hold in practical applications. This naturally leads to one of the most fundamental questions in RL.
20
+
21
+ ![](images/77c926de0e00917b5f40e684448ed4d632520e6ebd7f236362d3c5c22bd1676f.jpg)
22
+ Figure 1: A schematic summarizing relations among families of RL problems1
23
+
24
+ # What are the minimal structural assumptions that empower sample-efficient RL?
25
+
26
+ We advance our understanding of this grand question via the following two steps: (1) identify a rich class of RL problems (with weak structural assumptions) that cover many practical applications of interests; (2) design sample-efficient algorithms that provably learn any RL problem in this class.
27
+
28
+ The attempts to find weak or minimal structural assumptions that allow statistical learning can be traced in supervised learning where VC dimension [12] or Rademacher complexity [13] is proposed, or in online learning where Littlestone dimension [14] or sequential Rademacher complexity [15] is developed.
29
+
30
+ In the area of reinforcement learning, there are two intriguing lines of recent works that have made significant progress in this direction. To begin with, Jiang et al. [1] introduces a generic complexity notion—Bellman rank, which can be proved small for many RL problems including linear MDPs [7], reactive POMDPs [16], etc. [1] further propose an hypothesis elimination-based algorithm— OLIVE for sample-efficient learning of problems with low Bellman rank. On the other hand, recent work by Wang et al. [17] considers general function approximation with low Eluder dimension [18], and designs a UCB-style algorithm with regret guarantee. Noticeably, generalized linear MDPs [6] and kernel MDPs (see Appendix C) are subclasses of low Eluder dimension problems, but not low Bellman rank.
31
+
32
+ In this paper, we make the following three contributions.
33
+
34
+ • We introduce a new complexity measure for RL—Bellman Eluder (BE) dimension. We prove that the family of RL problems of low BE dimension is remarkably rich, which subsumes both low Bellman rank problems and low Eluder dimension problems—two arguably most generic tractable function classes so far in the literature (see Figure 1). The family of low BE dimension further includes new problems such as kernel reactive POMDPs (see Appendix C) which were not known to be sample-efficiently learnable. We design a new optimization-based algorithm—GOLF, which provably learns nearoptimal policies of low BE dimension problems in a number of samples that is polynomial in all relevant parameters, but independent of the size of state-action space. Our regret or sample complexity guarantees match [8] which is minimax optimal when specified to the linear setting. Our rates further improve upon [1, 17] in low Bellman rank and low Eluder dimension settings, respectively. We reanalyze the hypothesis elimination based algorithm—OLIVE proposed in [1]. We show it can also learn RL problems with low BE dimension sample-efficiently, under slightly weaker assumptions but with worse sample complexity comparing to GOLF.
35
+
36
+ # 1.1 Related works
37
+
38
+ This section reviews prior theoretical works on RL, under Markov Decision Process (MDP) models.
39
+
40
+ We remark that there has been a long line of research on function approximation in the batch RL setting [see, e.g., 19–22]. In this setting, agents are provided with exploratory data or simulator, so that they do not need to explicitly address the challenge of exploration. In this paper, we do not make such assumption, and attack the exploration problem directly. In the following we focus exclusively on the RL results in the general setting where exploration is required.
41
+
42
+ Tabular RL. Tabular RL concerns MDPs with a small number of states and actions, which has been thoroughly studied in recent years [see, e.g., 23–30]. In the episodic setting with non-stationary dynamics, the best regret bound $\tilde { \mathcal { O } } ( \sqrt { H ^ { 2 } | \boldsymbol { S } | | \boldsymbol { A } | T } )$ is achieved by both model-based [27] and modelfree [30] algorithms. Moreover, the bound is proved to be minimax-optimal [29, 31]. This minimax bound suggests that when the state-action space is enormous, RL is information-theoretically hard without further structural assumptions.
43
+
44
+ RL with linear function approximation. A recent line of work studies RL with linear function approximation [see, e.g., 7, 6, 32, 8, 33–36] These papers assume certain completeness conditions, as well as the optimal value function can be well approximated by linear functions. Under one√ formulation of linear approximation, the minimax regret bound $\tilde { \mathcal { O } } ( \dot { d } \sqrt { T } )$ is achieved by algorithm ELEANOR [8], where $d$ is the ambient dimension of the feature space.
45
+
46
+ RL with general function approximation. Beyond the linear setting, there is a flurry line of research studying RL with general function approximation [see, e.g., 37, 1, 36, 38, 17, 39, 40]. Among them, [1] and [17] are the closest to our work.
47
+
48
+ Jiang et al. [1] propose a complexity measure named Bellman rank and design an algorithm OLIVE with PAC guarantees for problems with low Bellman rank. We note that low Bellman rank is a special case of low BE dimension. When specialized to the low Bellman rank setting, our result for OLIVE exactly matches the guarantee in [1]. Our result for GOLF requires an additional completeness assumption, but provides sharper sample complexity guarantee.
49
+
50
+ Wang et al. [17] propose a UCB-type algorithm with a regret guarantee under the assumption that the function class has a low eluder dimension. Again, we will show that low Eluder dimension is a special case of low BE dimension. Comparing to [17], our algorithm GOLF works under a weaker completeness assumption, with a better regret guarantee.
51
+
52
+ Finally, we remark that the algorithms proposed in [1, 33, 41] and this paper are all computationally inefficient in general. We notice several existing works [e.g., 7, 17] can be computationally efficient given suitable regression oracles but they require stronger representation conditions and also achieve worse regret guarantees.
53
+
54
+ Relation to bilinear classes Concurrent to this work, Du et al. [41] propose a new general tractable class of RL problems—bilinear class with low effective dimension (also known as low critical information gain in Du et al. [41]). We comment on the similarities and differences between two works as follows.
55
+
56
+ In terms of algorithms, both Algorithm 2 in this paper and the algorithm proposed in Du et al. [41] are based on OLIVE originally proposed in Jiang et al. [1]. The two algorithms share similar guarantees in terms of assumptions and complexity results. More importantly, our work further develops a new type of algorithm for general function approximation—GOLF, a natural and clean algorithm which can be viewed as an optimistic version of classical algorithm—Fitted Q-Iteration [42]. GOLF gives much sharper sample complexity guarantees compared to [41] for various settings, and is minimaxoptimal when applied to the linear setting [8].
57
+
58
+ In terms of richness of new classes identified, it depends on (a) what structure of MDP the complexity measures are applied to, and (b) what complexity measures are used. For (a), BE dimension applies to the Bellman error, while the bilinear class allows general surrogate losses of the Bellman error. For (b), this paper uses Eluder dimension while Du et al. [41] uses effective dimension. It can be shown that low effective dimension always implies low Eluder dimension (see Appendix C.2). In short, Du et al. [41] is more general in (a), while our work is more general in (b). As a result, neither work fully captures the other.
59
+
60
+ In particular, our BE framework covers a majority of the examples identified in Du et al. [41] including low occupancy complexity, linear $Q ^ { \star } / V ^ { \star }$ , $Q ^ { \star }$ state aggregation, feature selection/FLAMBE.
61
+
62
+ Nevertheless, our work can not address examples with model-based function approximation (e.g., low witness rank [36]) while [41] can. On the other hand, Du et al. [41] can not address the class of RL problems with low Eluder dimension [17] while our work can. Moreover, for several classes of RL problems that both works cover, our complexity measure is sharper. For example, in the setting of function approximation with generalized linear functions, the BE dimension is ${ \tilde { O } } ( d )$ where $d$ is the ambient dimension of the feature vectors, while the effective dimension under the generalized bilinear framework of Du et al. [41] is at least $\tilde { \Omega } ( d ^ { 2 } )$ .
63
+
64
+ # 1.2 Paper organization
65
+
66
+ We present preliminaries in Section 2, the definition of Bellman-Eluder dimension as well as its relations to existing complexity notions in Section 3. We present the results for algorithm GOLF in Section 4, and conclude in Section 5. Due to space limit, we postpone the results for algorithm OLIVE to Appendix A. Further discussions on Q-type versus V-type variants of BE dimension, as well as the practical examples will be provided in Appendix B and C. All the proofs are postponed to the appendix.
67
+
68
+ # 2 Preliminaries
69
+
70
+ We consider episodic Markov Decision Process (MDP), denoted by $\mathcal { M } = ( \mathcal { S } , \mathcal { A } , H , \mathbb { P } , r )$ , where $s$
71
+ is the state space, $\mathcal { A }$ is the action space, $H$ is the number of steps in each episode, $\mathbb { P } = \left\{ \mathbb { P } _ { h } \right\} _ { h \in [ H ] }$
72
+ is the collection of transition measures with $\mathbb { P } _ { h } ( s ^ { \prime } \mid s , a )$ equal to the probability of transiting to
73
+ $s ^ { \prime }$ after taking action $a$ at state $s$ at the $h ^ { \mathrm { t h } }$ step, and $r ~ { = } ~ \bar { \{ } r _ { h } \} _ { h \in \{ H \} }$ is the collection of reward
74
+ funthe for ns with step. 2 possible $r _ { h } ( s , a )$ eoue stic reward received after takinme reward is non-negative, and . $a$ $s$ $h ^ { \mathrm { t h } }$ $\begin{array} { r } { \sum _ { h = 1 } ^ { H } r _ { h } ( s _ { h } , a _ { h } ) \le 1 } \end{array}$ $( s _ { 1 } , a _ { 1 } , \dotsc , s _ { H } , a _ { H } )$
75
+
76
+ In each episode, the agent starts at a fixed initial state $s _ { 1 }$ . Then, at each step $h \in [ H ]$ , the agent observes its current state $s _ { h }$ , takes action $a _ { h }$ , receives reward $r _ { h } ( s _ { h } , a _ { h } )$ , and causes the environment to transit to $s _ { h + 1 } \sim \mathbb { P } _ { h } ( \cdot \mid s _ { h } , a _ { h } )$ . Without loss of generality, we assume there is a terminating state $s _ { \mathrm { e n d } }$ which the environment will always transit to at step $H + 1$ , and the episode terminates when $s _ { \mathrm { e n d } }$ is reached.
77
+
78
+ Policy and value functions A (deterministic) policy $\mathcal { A } \} _ { h = 1 } ^ { H }$ . We denote ed sum of th $V _ { h } ^ { \pi } : { \cal S } \mathbb { R }$ as the value function at step ewards received under policy is a collection of $h$ for policy , starting f $\pi$ $H$ , sm functions $V _ { h } ^ { \pi } ( s )$ $\{ \pi _ { h } : { \mathcal { S } } \to$ gives thehe end of $\pi$ $s _ { h } = s$ the episode. In symbol,
79
+
80
+ $$
81
+ V _ { h } ^ { \pi } ( s ) : = \mathbb { E } _ { \pi } [ \sum _ { h ^ { \prime } = h } ^ { H } r _ { h ^ { \prime } } ( s _ { h ^ { \prime } } , a _ { h ^ { \prime } } ) \mid s _ { h } = s ] .
82
+ $$
83
+
84
+ Similarly, we denote $Q _ { h } ^ { \pi } : \mathcal { S } \times \mathcal { A } \mathbb { R }$ as the $Q$ -value function at step $h$ for policy $\pi$ , where
85
+
86
+ $$
87
+ Q _ { h } ^ { \pi } ( s , a ) : = \mathbb { E } _ { \pi } [ \sum _ { h ^ { \prime } = h } ^ { H } r _ { h ^ { \prime } } ( s _ { h ^ { \prime } } , a _ { h ^ { \prime } } ) \ | \ s _ { h } = s , a _ { h } = a ] .
88
+ $$
89
+
90
+ There exists an optimal policy $\pi ^ { \star }$ , which gives the optimal value function for all states [43], in the sense, $\begin{array} { r } { V _ { h } ^ { \pi ^ { \star } } ( s ) = \operatorname* { s u p } _ { \pi } \bar { V } _ { h } ^ { \pi } ( s ) } \end{array}$ for all $h \in [ H ]$ and $s \in S$ . For notational simplicity, we abbreviate $V ^ { \pi ^ { \star } }$ as $V ^ { \star }$ . We similarly define the optimal $Q$ -value function as $Q ^ { \star }$ . Recall that $Q ^ { \star }$ satisfies the Bellman optimality equation:
91
+
92
+ $$
93
+ Q _ { h } ^ { \star } ( s , a ) = ( { \cal T } _ { h } Q _ { h + 1 } ^ { \star } ) ( s , a ) : = r _ { h } ( s , a ) + \mathbb { E } _ { s ^ { \prime } \sim \mathbb { P } _ { h } ( \cdot \vert s , a ) } \operatorname* { m a x } _ { a ^ { \prime } \in \mathcal { A } } Q _ { h + 1 } ^ { \star } ( s ^ { \prime } , a ^ { \prime } ) .
94
+ $$
95
+
96
+ for all $( s , a , h ) \in \mathcal { S } \times \mathcal { A } \times [ H ]$ . We also call $\mathcal { T } _ { h }$ the Bellman operator at step $h$ .
97
+
98
+ $\epsilon$ -optimality and regret We say a policy $\pi$ is $\epsilon$ -optimal if $V _ { 1 } ^ { \pi } ( s _ { 1 } ) \geq V _ { 1 } ^ { \star } ( s _ { 1 } ) - \epsilon$ . Suppose an agent interacts with the environment for $K$ episodes. Denote by $\pi ^ { k }$ the policy the agent follows in episode $k \in [ K ]$ . The (accumulative) regret is defined as
99
+
100
+ $$
101
+ \mathrm { R e g } ( K ) : = \sum _ { k = 1 } ^ { K } [ V _ { 1 } ^ { \star } ( s _ { 1 } ) - V _ { 1 } ^ { \pi ^ { k } } ( s _ { 1 } ) ] .
102
+ $$
103
+
104
+ The objective of reinforcement learning is to find an $\epsilon$ -optimal policy within a small number of interactions or to achieve sublinear regret.
105
+
106
+ # 2.1 Function approximation
107
+
108
+ In this paper, we consider reinforcement learning with value function approximation. Formally, the learner is given a function class $\mathcal { F } = \mathcal { F } _ { 1 } \times \cdot \cdot \cdot \times \mathcal { F } _ { H }$ , where ${ \mathcal { F } } _ { h } \subseteq ( S \times { \mathcal { A } } \to [ 0 , 1 ] )$ offers a set of candidate functions to approximate $Q _ { h } ^ { \star }$ —the optimal $Q$ -value function at step $h$ . Since no reward is collected in the $( H + 1 ) ^ { \mathrm { t h } }$ steps, we always set $f _ { H + 1 } = 0$ .
109
+
110
+ Reinforcement learning with function approximation in general is extremely challenging without further assumptions (see, e.g., hardness results in [16, 44]). Below, we present two assumptions about function approximation that are commonly adopted in the literature.
111
+
112
+ Assumption 1 (Realizability). $Q _ { h } ^ { \star } \in \mathcal { F } _ { h }$ for all $h \in [ H ]$ .
113
+
114
+ Realizability requires the function class is well-specified, i.e., function class $\mathcal { F }$ in fact contains the optimal $Q$ -value function $Q ^ { \star }$ with no approximation error.
115
+
116
+ Assumption 2 (Completeness). $\mathcal T _ { h } \mathcal F _ { h + 1 } \subseteq \mathcal F _ { h }$ for all $h \in [ H ]$ .
117
+
118
+ Note $\mathcal { T } _ { h } \mathcal { F } _ { h + 1 }$ is defined as $\{ T _ { h } f _ { h + 1 } : f _ { h + 1 } \in \mathcal { F } _ { h + 1 } \}$ . Completeness requires the function class $\mathcal { F }$ to be closed under the Bellman operator.
119
+
120
+ When function class $\mathcal { F }$ has finite elements, we can use its cardinality $| \mathcal F |$ to measure the “size” of function class $\mathcal { F }$ . When addressing function classes with infinite elements, we need a notion similar to cardinality. We use the standard $\epsilon$ -covering number.
121
+
122
+ Definition 3 ( $\epsilon$ -covering number). The $\epsilon$ -covering number of a set $\nu$ under metric $\rho ,$ , denoted as $\mathcal { N } ( \mathcal { V } , \epsilon , \rho )$ , is the minimum integer $n$ such that there exists a subset $\mathcal { V } _ { o } \subset \mathcal { V }$ with $| \nu _ { o } | = n$ , and for any $x \in \nu$ , there exists $y \in \mathcal { V } _ { o }$ such that $\rho ( x , y ) \le \epsilon$ .
123
+
124
+ We refer readers to standard textbooks [see, e.g., 45] for further properties of covering number. In this paper, we will always apply the covering number on function class $\mathcal { F } = \mathcal { F } _ { 1 } \times \cdot \cdot \cdot \times \mathcal { F } _ { H }$ , and use metric $\rho ( f , g ) = \operatorname* { m a x } _ { h } \| f _ { h } - g _ { h } \| _ { \infty }$ . For notational simplicity, we omit the metric dependence and denote the covering number as $\mathcal { N } _ { \mathcal { F } } ( \epsilon )$ .
125
+
126
+ # 2.2 Eluder dimension
127
+
128
+ One class of functions highly related to this paper is the function class of low Eluder dimension [18].
129
+
130
+ Definition 4 ( $\epsilon$ -independence between points). Let $\mathcal { G }$ be a function class defined on $\mathcal { X }$ , and $z , x _ { 1 } , x _ { 2 }$ $\textstyle , \ldots , x _ { n } \in { \mathcal { X } }$ . We say $z$ is $\epsilon$ -independent of $\{ x _ { 1 } , x _ { 2 } , \ldots , x _ { n } \}$ with respect to $\mathcal { G }$ if there exist $g _ { 1 } , g _ { 2 } \in \mathcal { G }$ such that $\begin{array} { r } { \sqrt { \sum _ { i = 1 } ^ { n } ( g _ { 1 } ( x _ { i } ) - g _ { 2 } ( x _ { i } ) ) ^ { 2 } } \le \epsilon } \end{array}$ , but $g _ { 1 } ( z ) - g _ { 2 } ( z ) > \epsilon .$ .
131
+
132
+ Intuitively, $z$ is independent of $\{ x _ { 1 } , x _ { 2 } , \ldots , x _ { n } \}$ means if that there exist two “certifying” functions $g _ { 1 }$ and $g _ { 2 }$ , so that their function values are similar at all points $\{ x _ { i } \} _ { i = 1 } ^ { n }$ , but the values are rather different at $z$ . This independence relation naturally induces the following complexity measure.
133
+
134
+ Definition 5 (Eluder dimension). Let $\mathcal { G }$ be a function class defined on $\mathcal { X }$ . The Eluder dimension $\mathrm { d i m } _ { \mathrm { E } } ( \mathcal { G } , \epsilon )$ is the length of the longest sequence $\{ x _ { 1 } , \ldots , x _ { n } \} \subset { \mathcal { X } }$ such that there exists $\epsilon ^ { \prime } \geq \epsilon$ where $x _ { i }$ is $\epsilon ^ { \prime }$ -independent of $\{ x _ { 1 } , \dots , x _ { i - 1 } \}$ for all $i \in [ n ]$ .
135
+
136
+ Recall that a vector space has dimension $d$ if and only if $d$ is the length of the longest sequence of elements $\{ x _ { 1 } , \ldots , x _ { d } \}$ such that $x _ { i }$ is linearly independent of $\{ x _ { 1 } , \dotsc , x _ { i - 1 } \}$ for all $i \in [ n ]$ . Eluder dimension generalizes the linear independence relation in standard vector space to capture both nonlinear independence and approximate independence, and thus is more general.
137
+
138
+ # 3 Bellman Eluder Dimension
139
+
140
+ In this section, we introduce our new complexity measure—Bellman Eluder (BE) dimension. As one of its most important properties, we will show that the family of problems with low BE dimension contains the two existing most general tractable problem classes in RL—problems with low Bellman rank, and problems with low Eluder dimension (see Figure 1).
141
+
142
+ We start by developing a new distributional version of the original Eluder dimension proposed by Russo and Van Roy [18] (see Section 2.2 for more details).
143
+
144
+ Definition 6 ( $\epsilon$ -independence between distributions). Let $\mathcal { G }$ be a function class defined on $\mathcal { X }$ , and $\nu , \mu _ { 1 } , \ldots , \mu _ { n }$ be probability measures over $\mathcal { X }$ . We say $\nu$ is $\epsilon$ -independent of $\{ \mu _ { 1 } , \mu _ { 2 } , \ldots , \mu _ { n } \}$ with respect to $\mathcal { G }$ if there exists $g \in { \mathcal { G } }$ such that $\begin{array} { r } { \sqrt { \sum _ { i = 1 } ^ { n } ( { \mathbb E } _ { \mu _ { i } } [ g ] ) ^ { 2 } } \le \epsilon } \end{array}$ , but $\begin{array} { r } { \left| \mathbb { E } _ { \nu } [ g ] \right| > \epsilon } \end{array}$ .
145
+
146
+ Definition 7 (Distributional Eluder (DE) dimension). Let $\mathcal { G }$ be a function class defined on $\mathcal { X }$ , and $\Pi$ be a family of probability measures over $\mathcal { X }$ . The distributional Eluder dimension $\dim _ { \mathrm { D E } } ( { \mathcal { G } } , \Pi , \epsilon )$ is the length of the longest sequence $\{ \rho _ { 1 } , \ldots , \rho _ { n } \} \subset \Pi$ such that there exists $\epsilon ^ { \prime } \geq \epsilon$ where $\rho _ { i }$ is $\epsilon ^ { \prime }$ -independent of $\{ \rho _ { 1 } , . . . , \rho _ { i - 1 } \}$ for all $i \in [ n ]$ .
147
+
148
+ Definition 6 and Definition 7 generalize Definition 4 and Definition 5 to their distributional versions, by inspecting the expected values of functions instead of the function values at points, and by restricting the candidate distributions to a certain family $\Pi$ . The main advantage of this generalization is exactly in the statistical setting, where estimating the expected values of functions with respect to a certain distribution family can be easier than estimating function values at each point (which is the case for RL in large state spaces).
149
+
150
+ It is clear that the standard Eluder dimension is a special case of the distributional Eluder dimension, because if we choose $\Pi = \{ \delta _ { x } ( \cdot ) \mid x \in \mathcal { X } \}$ where $\delta _ { x } ( \cdot )$ is the dirac measure centered at $x$ , then $\dim _ { \operatorname { E } } ( { \mathcal { G } } , \epsilon ) = \dim _ { \operatorname { D E } } ( { \mathcal { G } } - { \mathcal { G } } , \Pi , \epsilon )$ where ${ \mathcal { G } } - { \mathcal { G } } = \{ g _ { 1 } - g _ { 2 } : g _ { 1 } , g _ { 2 } \in { \mathcal { G } } \}$ .
151
+
152
+ Now we are ready to introduce the key notion in this paper—Bellman Eluder dimension.
153
+
154
+ Definition 8 (Bellman Eluder (BE) dimension). Let $( I - \mathcal { T } _ { h } ) \mathcal { F } { : = } \{ f _ { h } - \mathcal { T } _ { h } f _ { h + 1 } : \mathrm { ~ } f \in \mathcal { F } \}$ be the set of Bellman residuals induced by $\mathcal { F }$ at step $h$ , and $\dot { \Pi } = \{ \Pi _ { h } \} _ { h = 1 } ^ { H }$ be a collection of $H$ probability measure families over $s \times { \mathcal { A } }$ . The $\epsilon$ -Bellman Eluder of $\mathcal { F }$ with respect to $\Pi$ is defined as
155
+
156
+ $$
157
+ \dim _ { \mathrm { B E } } ( { \mathcal F } , \Pi , \epsilon ) : = \operatorname* { m a x } _ { h \in [ H ] } \dim _ { \mathrm { D E } } \big ( ( I - { \mathcal T } _ { h } ) { \mathcal F } , \Pi _ { h } , \epsilon \big ) .
158
+ $$
159
+
160
+ Remark 9 (Q-type v.s. V-type). Definition 8 is based on the Bellman residuals functions that take a state-action pair as input, thus referred to as $Q$ -type $B E$ dimension. Alternatively, one can define $V -$ type BE dimension using a different set of Bellman residual functions that depend on states only (see Appendix $B$ ). We focus on $Q$ -type in the main paper, and present the results for $V .$ -type in Appendix B. Both variants are important, and they include different sets of examples (see Appendix B, C).
161
+
162
+ In short, Bellman Eluder dimension is simply the distributional Eluder dimension on the function class of Bellman residuals, maximizing over all steps. In addition to function class $\mathcal { F }$ and error $\epsilon$ , Bellman Eluder dimension also depends on the choice of distribution family $\Pi$ . For the purpose of this paper, we focus on the following two specific choices.
163
+
164
+ 1. $\mathcal { D } _ { \mathcal { F } } : = \{ \mathcal { D } _ { \mathcal { F } , h } \} _ { h \in [ H ] }$ , where $\mathcal { D } _ { \mathcal { F } , h }$ denotes the collection of all probability measures over $\boldsymbol { S } \times \boldsymbol { A }$ at the $h ^ { \mathrm { t h } }$ step, which can be generated by executing the greedy policy $\pi _ { f }$ induced by any $f \in { \mathcal { F } }$ , i.e., $\bar { \pi } _ { f , h } ( \cdot ) = \mathrm { a r g m a } \bar { \mathrm { x } } _ { a \in \mathcal { A } } f _ { h } ( \cdot , \bar { a } )$ for all $h \in [ H ]$ . 2. $\mathcal { D } _ { \Delta } : = \{ \mathcal { D } _ { \Delta , h } \} _ { h \in [ H ] }$ , where ${ \mathcal { D } } _ { \Delta , h } = \{ \delta _ { ( s , a ) } ( \cdot ) | s \in S , a \in { \mathcal { A } } \}$ , i.e., the collections of probability measures that put measure 1 on a single state-action pair.
165
+
166
+ We say a RL problem has low BE dimension if $\begin{array} { r } { \operatorname* { m i n } _ { \Pi \in \{ \mathcal { D } _ { \mathcal { F } } , \mathcal { D } _ { \Delta } \} } \mathrm { d i m } _ { \mathrm { B E } } ( \mathcal { F } , \Pi , \epsilon ) \mathrm { i s ~ s m a } } \end{array}$ ll.
167
+
168
+ # 3.1 Relations with known tractable classes of RL problems
169
+
170
+ Known tractable problem classes in RL include but not limited to tabular MDPs, linear MDPs [7], linear quadratic regulators [9], generalized linear MDPs [6], kernel MDPs (Appendix C), reactive POMDPs [16], reactive PSRs [46, 1]. There are two existing generic tractable problem classes that jointly contain all the examples mentioned above: the set of RL problems with low Bellman rank, and the set of RL problems with low Eluder dimension. However, for these two generic sets, one does not contain the other.
171
+
172
+ In this section, we will show that our new class of RL problems with low BE dimension in fact contains both low Bellman rank problems and low Eluder dimension problems (see Figure 1). That is, our new problem class covers almost all existing tractable RL problems, and to our best knowledge, is the most generic tractable function class so far.
173
+
174
+ Relation with low Bellman rank The seminal paper by Jiang et al. [1] proposes the complexity measure—Bellman rank, and shows that a majority of RL examples mentioned above have low Bellman rank. They also propose a hypothesis elimination based algorithm—OLIVE, that learns any low Bellman rank problem within polynomial samples. Formally,
175
+
176
+ Definition 10 (Bellman rank). The Bellman rank is the minimum integer $d$ so that there exists $\phi _ { h }$ : $\mathcal { F } \mathbb { R } ^ { d }$ and $\psi _ { h } : \mathcal { F } \mathbb { R } ^ { d }$ for each $h \in [ H ]$ , such that for any $f , f ^ { \prime } \in \mathcal { F }$ , the average Bellman error.
177
+
178
+ $$
179
+ \mathcal { E } ( f , \pi _ { f ^ { \prime } } , h ) : = \mathbb { E } _ { \pi _ { f ^ { \prime } } } [ ( f _ { h } - \mathcal { T } _ { h } f _ { h + 1 } ) ( s _ { h } , a _ { h } ) ] = \langle \phi _ { h } ( f ) , \psi _ { h } ( f ^ { \prime } ) \rangle ,
180
+ $$
181
+
182
+ where $\| \phi _ { h } ( f ) \| _ { 2 } \cdot \| \psi _ { h } ( f ^ { \prime } ) \| _ { 2 } \leq \zeta$ , and $\zeta$ is the normalization parameter.
183
+
184
+ We remark that similar to Bellman Eluder dimension, Bellman rank also has two variants—Q-type (Definition 10) and $\mathrm { V } .$ -type (see Appendix B). Recall that we use $\pi _ { f }$ to denote the greedy policy induced by value function $f$ . Intuitively, a problem with Bellman rank says its average Bellman error can be decomposed as the inner product of two $d$ -dimensional vectors, where one vector depends on the roll-in policy $\pi _ { f ^ { \prime } }$ , while the other vector depends on the value function $f$ . At a high level, it claims that the average Bellman error has a linear inner product structure.
185
+
186
+ Proposition 11 (low Bellman rank $\subset$ low BE dimension). If an MDP with function class $\mathcal { F }$ has Bellman rank $d$ with normalization parameter $\zeta ,$ , then
187
+
188
+ $$
189
+ \dim _ { \mathrm { B E } } ( \mathcal { F } , \mathcal { D } _ { \mathcal { F } } , \epsilon ) \leq \mathcal { O } ( 1 + d \log ( 1 + \zeta / \epsilon ) ) .
190
+ $$
191
+
192
+ Proposition 11 claims that problems with low Bellman rank also have low BE dimension, with a small multiplicative factor that is only logarithmic in $\zeta$ and $\epsilon ^ { - 1 }$ .
193
+
194
+ Relation with low Eluder dimension Wang et al. [17] study the setting where the function class $\mathcal { F }$ has low Eluder dimension, which includes generalized linear functions. They prove that, when the completeness assumption is satisfied,3 low Eluder dimension problems can be efficiently learned in polynomial samples.
195
+
196
+ Proposition 12 (low Eluder dimension $\subset$ low BE dimension). Assume $\mathcal { F }$ satisfies completeness (Assumption 2). Then for all $\epsilon > 0$ ,
197
+
198
+ $$
199
+ \dim _ { \mathrm { B E } } \left( { \mathcal { F } } , { \mathcal { D } } _ { \Delta } , \epsilon \right) \leq \operatorname* { m a x } _ { h \in \left[ H \right] } \dim _ { \mathrm { E } } ( { \mathcal { F } } _ { h } , \epsilon ) .
200
+ $$
201
+
202
+ Proposition 12 asserts that problems with low Eluder dimension also have low BE dimension, which is a natural consequence of completeness and the fact that Eluder dimension is a special case of distributional Eluder dimension.
203
+
204
+ Finally, we show that the set of low BE dimension problems is strictly larger than the union of low Eluder dimension problems and low Bellman rank problems.
205
+
206
+ Proposition 13 (low BE dimension $\nless$ low Eluder dimension ∪ low Bellman rank). For any $m ~ \in ~ \mathbb { N } ^ { + }$ , there exists an MDP and a function class $\mathcal { F }$ so that for all $\epsilon ~ \in ~ ( 0 , 1 ]$ , we have $\dim _ { \mathrm { B E } } ( { \mathcal F } , { \mathcal D } _ { { \mathcal F } } , \epsilon ) = \dim _ { \mathrm { B E } } ( { \mathcal F } , { \mathcal D } _ { \Delta } , \epsilon ) \ \leq \ 5 ,$ , but ${ \mathrm { m i n } } \{ { \mathrm { m i n } } _ { h \in [ H ] }$ $\dim _ { \operatorname { E } } ( { \mathcal { F } } _ { h } , \epsilon )$ , Bellman $\mathrm { r a n k } \} \geq$ $m$ .
207
+
208
+ In particular, the family of low BE dimension includes new examples such as kernel reactive POMDPs (Appendix C), which can not be addressed by the framework of either Bellman rank or Eluder dimension.
209
+
210
+ 1: Initialize: $\mathcal { D } _ { 1 } , . . . , \mathcal { D } _ { H } \emptyset$ , $B ^ { 0 } { \mathcal { F } }$ .
211
+ 2: for episode $k$ from 1 to $K$ do
212
+ 3: Choose policy $\pi ^ { k } = \pi _ { f ^ { k } }$ , where $f ^ { k } = \operatorname { a r g m a x } _ { f \in { \mathcal { B } } ^ { k - 1 } } f { \big ( } s _ { 1 } , \pi _ { f } { \big ( } s _ { 1 } { \big ) } { \big ) }$ .
213
+ 4: Collect a trajectory $\left( s _ { 1 } , a _ { 1 } , r _ { 1 } , \dots , s _ { H } , a _ { H } , r _ { H } , s _ { H + 1 } \right)$ by following $\pi ^ { k }$ .
214
+ 5: Augment $\mathcal { D } _ { h } = \mathcal { D } _ { h } \cup \left\{ \left( s _ { h } , a _ { h } , r _ { h } , s _ { h + 1 } \right) \right\}$ for all $h \in [ H ]$ .
215
+ 6: Update
216
+ $\begin{array} { r l } & { \mathbf { \Phi } ^ { \mathrm { t e } } } \\ & { \quad \mathcal { B } ^ { k } = \left\{ f \in \mathcal { F } : \mathcal { L } _ { \mathcal { D } _ { h } } ( f _ { h } , f _ { h + 1 } ) \leq \displaystyle \operatorname* { i n f } _ { g \in \mathcal { G } _ { h } } \mathcal { L } _ { \mathcal { D } _ { h } } ( g , f _ { h + 1 } ) + \beta \mathrm { ~ f o r ~ a l l ~ } h \in [ H ] \right\} , } \\ & { \quad \quad \mathrm { w h e r e ~ } \mathcal { L } _ { \mathcal { D } _ { h } } ( \xi _ { h } , \zeta _ { h + 1 } ) = \displaystyle \sum _ { ( s , a , r , s ^ { \prime } ) \in \mathcal { D } _ { h } } \left[ \xi _ { h } ( s , a ) - r - \operatorname* { m a x } _ { a ^ { \prime } \in \mathcal { A } } \zeta _ { h + 1 } ( s ^ { \prime } , a ^ { \prime } ) \right] ^ { 2 } . } \end{array}$
217
+
218
+ 7: Output $\pi ^ { \mathrm { { o u t } } }$ sampled uniformly at random from $\{ \pi ^ { k } \} _ { k = 1 } ^ { K }$
219
+
220
+ # 4 Algorithm GOLF
221
+
222
+ Section 3 defines a new class of RL problems with low BE dimension, and shows that the new class is rich, containing almost all the existing known tractable RL problems so far. In this section, we propose a new simple optimization-based algorithm—Global Optimism based on Local Fitting (GOLF). We prove that, low BE dimension problems are indeed tractable, i.e., GOLF can find nearoptimal policies for these problems within a polynomial number of samples.
223
+
224
+ At a high level, GOLF can be viewed as an optimistic version of the classic algorithm—Fitted QIteration (FQI) [42]. GOLF generalizes the ELEANOR algorithm [8] from the special linear setting to the general setting with arbitrary function classes.
225
+
226
+ The pseudocode of GOLF is given in Algorithm 1. GOLF initializes datasets $\{ \mathcal { D } _ { h } \} _ { h = 1 } ^ { H }$ to be empty sets, and confidence set $B ^ { 0 }$ to be $\mathcal { F }$ . Then, in each episode, GOLF performs two main steps:
227
+
228
+ • Line 3 (Optimistic planning): compute the most optimistic value function $f ^ { k }$ from the confidence set $B ^ { k - 1 }$ constructed in the last episode , and choose $\pi ^ { k }$ to be its greedy policy. • Line 4-6 (Execute the policy and update the confidence set): execute policy $\pi ^ { k }$ for one episode, collect data, and update the confidence set using the new data.
229
+
230
+ At the heart of GOLF is the way we construct the confidence set $B ^ { k }$ . For each $h \in [ H ]$ , GOLF maintains a local regression constraint using the collected transition data $\mathcal { D } _ { h }$ at this step
231
+
232
+ $$
233
+ \mathcal { L } _ { \mathcal { D } _ { h } } ( f _ { h } , f _ { h + 1 } ) \leq \operatorname* { i n f } _ { g \in \mathcal { G } _ { h } } \mathcal { L } _ { \mathcal { D } _ { h } } ( g , f _ { h + 1 } ) + \beta ,
234
+ $$
235
+
236
+ where $\beta$ is a confidence parameter, and $\mathcal { L } _ { \mathcal { D } _ { h } }$ is the squared loss defined in (2), which can be viewed as a proxy to the squared Bellman error at step $h$ . We remark that FQI algorithm [42] simply updates $\begin{array} { r } { \dot { f _ { h } } \gets \operatorname * { a r g m i n } _ { \phi \in \mathcal { F } _ { h } } \mathcal { L } _ { \mathcal { D } _ { h } } ( \phi , f _ { h + 1 } ) } \end{array}$ . Our constraint (3) can be viewed as a relaxed version of this update, which allows $f _ { h }$ to be not only the minimizer of the loss $\mathcal { L } _ { \mathcal { D } _ { h } } ( \cdot , f _ { h + 1 } )$ , but also any function whose loss is only slightly larger than the optimal loss over the auxiliary function class $\mathcal { G } _ { h }$ .
237
+
238
+ We remark that in general, the optimization problem in Line 3 of GOLF can not be solved computationally efficiently.
239
+
240
+ # 4.1 Theoretical guarantees
241
+
242
+ In this subsection, we present the theoretical guarantees for GOLF, which hold under Assumption 1 (realizability) and the following generalized completeness assumption introduced in [47, 21]. Let $\mathcal { G } = \mathcal { G } _ { 1 } \times \cdot \cdot \cdot \times \mathcal { G } _ { H }$ be an auxiliary function class provided to the learner where each ${ \mathcal { G } } _ { h } \subseteq ( S \times { \mathcal { A } } \to$ $[ 0 , 1 ] )$ . Generalized completeness requires the auxiliary function class $\mathcal { G }$ to be rich enough so that applying Bellman operator to any function in the primary function class $\mathcal { F }$ will end up in $\mathcal { G }$ .
243
+
244
+ Assumption 14 (Generalized completeness). $\mathcal T _ { h } \mathcal F _ { h + 1 } \subseteq \mathcal G _ { h }$ for all $h \in [ H ]$ .
245
+
246
+ If we choose $\mathcal { G } = \mathcal { F }$ , then Assumption 14 is equivalent to the standard completeness assumption (Assumption 2). Now, we are ready to present the main theorem for GOLF.
247
+
248
+ Theorem 15 (Regret of GOLF). Under Assumption $^ { l }$ , 14, there exists an absolute constant c such that for any $\delta \in ( 0 , 1 ]$ , $K \in \mathbb N$ , if we choose parameter $\beta = c \log [ \mathcal { N _ { F \cup \mathcal { G } } } ( 1 / K ) \cdot K H / \delta ]$ in GOLF, then with probability at least $1 - \delta$ , for all $k \in [ K ]$ , we have
249
+
250
+ $$
251
+ \mathrm { R e g } ( k ) = \sum _ { t = 1 } ^ { k } \Big [ V _ { 1 } ^ { \star } \big ( s _ { 1 } \big ) - V _ { 1 } ^ { \pi ^ { t } } \big ( s _ { 1 } \big ) \Big ] \leq \mathcal { O } ( H \sqrt { d k \beta } ) ,
252
+ $$
253
+
254
+ where $\begin{array} { r } { d = \operatorname* { m i n } _ { \Pi \in \{ \mathcal { D } _ { \Delta } , \mathcal { D } _ { \mathcal { F } } \} } \mathrm { d i m } _ { \mathrm { B E } } \left( \mathcal { F } , \Pi , 1 / \sqrt { K } \right) } \end{array}$ is the BE dimension.
255
+
256
+ Theorem 15 asserts that, under the realizability and completeness assumptions, the general class of RL problems with low BE dimension is indeed tractable: there exists an algorithm (GOLF) that can achieve $\sqrt { K }$ regret, whose multiplicative factor depends only polynomially on the horizon of MDP $H$ , the BE dimension $d$ , and the log covering number of the two function classes. Most importantly, the regret is independent of the number of the states, which is crucial for dealing with practical RL problems with function approximation, where the state spaces are typically exponentially large.
257
+
258
+ We remark that when function class ${ \mathcal { F } } \cup { \mathcal { G } }$ has finite number of elements, its covering number is upper bounded by its cardinality $| { \mathcal { F } } \cup { \mathcal { G } } |$ . For a wide range of function classes in practice, the log $\epsilon ^ { \prime }$ -covering number has only logarithmic dependence on $\epsilon ^ { \prime }$ . Informally, we denote the log covering number as $\log \mathcal { N } _ { \mathcal { F } \cup \mathcal { G } }$ and omit its $\epsilon ^ { \prime }$ dependency for clean presentation. Theorem 15 claims that the regret scales as $\tilde { \mathcal { O } } ( H \sqrt { d K \log \mathcal { N _ { F \cup \mathcal { G } } } } )$ , where $\bar { \tilde { \mathcal { O } } } ( \cdot )$ omits absolute constants and logarithmic terms.4
259
+
260
+ By the standard online-to-batch argument, we also derive the sample complexity of GOLF.
261
+
262
+ Corollary 16 (Sample Complexity of GOLF). Under Assumption 1, 2, there exists an absolute constant c such that for any $\epsilon \in ( 0 , 1 ] ,$ , if we choose $\beta = c \log [ \mathcal { N _ { F \cup \mathcal { G } } } ( \epsilon ^ { 2 } / ( d H ^ { 2 } ) ) \cdot H K ]$ in GOLF, then the output policy $\pi ^ { o u t }$ is $\mathcal { O } ( \epsilon )$ -optimal with probability at least $1 / 2 , i f$
263
+
264
+ $$
265
+ K \geq \Omega \left( \frac { H ^ { 2 } d } { \epsilon ^ { 2 } } \cdot \log \left[ \mathcal { N } _ { \mathcal { F } \cup \mathcal { G } } \left( \frac { \epsilon ^ { 2 } } { H ^ { 2 } d } \right) \cdot \frac { H d } { \epsilon } \right] \right) ,
266
+ $$
267
+
268
+ where $\begin{array} { r } { d = \operatorname* { m i n } _ { \Pi \in \{ \mathcal { D } _ { \Delta } , \mathcal { D } _ { \mathcal { F } } \} } \mathrm { d i m } _ { \mathrm { B E } } \left( \mathcal { F } , \Pi , \epsilon / H \right) } \end{array}$ is the BE dimension.
269
+
270
+ Corollary 16 claims that $\tilde { \mathcal { O } } ( H ^ { 2 } d \log ( \mathcal { N } _ { \mathcal { F } \cup \mathcal { G } } ) / \epsilon ^ { 2 } )$ samples are enough for GOLF to learn a nearoptimal policy of any low BE dimension problem. Our sample complexity scales linear in both the BE dimension $d$ , and the log covering number $\log ( \mathcal { N } _ { \mathcal { F } \cup \mathcal { G } } )$ .
271
+
272
+ To showcase the sharpness of our results, we compare them to the previous results when restricted to the corresponding settings. (1) For linear function class with ambient dimension $d _ { \mathrm { l i n } }$ , we have√ BE dimension $d = \mathcal { \tilde { O } } ( d _ { \mathrm { l i n } } )$ and $\log ( \mathcal { N _ { F \cup \mathcal { G } } } ) = \tilde { \mathcal { O } } ( d _ { \mathrm { l i n } } )$ . Our regret bound becomes $\tilde { \mathcal { O } } ( H d _ { \mathrm { l i n } } \sqrt { K } )$ which matches the best known result [8] up to logarithmic factors; (2) For function class with low Eluder dimension [17], our results hold under weaker completeness assumptions. Our regret scales√ with $\sqrt { d _ { \mathrm { E } } }$ in terms of dependency on Eluder dimension $d _ { \mathrm { E } }$ , which improves the linear $d _ { \mathrm { E } }$ scaling in the regret of [17]; (3) Finally, for low Bellman rank problems, our sample complexity scales linearly with Bellman rank, which improves upon the quadratic dependence in [1]. We remark that all results mentioned above assume (approximate) realizability. All except [1] assume (approximate) completeness.
273
+
274
+ # 4.2 Key ideas in proving Theorem 15
275
+
276
+ In this subsection, we present a brief proof sketch for the regret bound of GOLF. We defer all the details to Appendix E. For simplicity, we only discuss the case of choosing $\mathcal { D } _ { \mathcal { F } }$ as the distribution family $\Pi$ in the definition of Bellman Eluder dimension (Definition 8). The proof for using $\mathcal { D } _ { \Delta }$ as the distribution family follows from similar arguments.
277
+
278
+ Our proof strategy consists of three main steps.
279
+
280
+ Step 1: Prove optimism. We firstly show that, with high probability, the optimal value function $Q ^ { \star }$ indeed lies in the confidence set $B ^ { k }$ for all $k \in [ K ]$ (Lemma 40 in Appendix E.1), which is a natural consequence of martingale concentration and the properties of the confidence set we designed. Because of $Q ^ { \star } \in B ^ { k }$ , the optimistic planning step (Line 3) in GOLF guarantees that $V _ { 1 } ^ { \star } ( \mathsf { \bar { s } } _ { 1 } ) \leq \operatorname* { m a x } _ { a } f _ { 1 } ^ { k } ( s _ { 1 } , \mathsf { \bar { a } } )$ for every episode $k$ . This optimism allows the following upper bound on regret
281
+
282
+ $$
283
+ \mathrm { R e g } ( K ) \leq \sum _ { k = 1 } ^ { K } \left( \operatorname* { m a x } _ { a } f _ { 1 } ^ { k } ( s _ { 1 } , a ) - V _ { 1 } ^ { \pi ^ { k } } ( s _ { 1 } ) \right) = \sum _ { h = 1 } ^ { H } \sum _ { k = 1 } ^ { K } \mathbb { E } _ { \pi ^ { k } } \left[ ( f _ { h } ^ { k } - \mathcal { T } f _ { h + 1 } ^ { k } ) ( s _ { h } , a _ { h } ) \right] ,
284
+ $$
285
+
286
+ where the right equality follows from the standard policy loss decomposition (see, e.g., Lemma 1 in [1]), and $\mathbb { E } _ { \pi }$ denotes the expectation taken over sequence $( s _ { 1 } , a _ { 1 } , \dotsc , s _ { H } , a _ { H } )$ when executing policy $\pi$ .
287
+
288
+ Step 2: Utilize the sharpness of our confidence set. Recall that our construction of the confidence set in Line 6 of GOLF forces $f ^ { k }$ computed in episode $k$ to have a small loss $\mathcal { L } _ { \mathcal { D } _ { h } }$ , which is a proxy for empirical squared Bellman error under data $\mathcal { D } _ { h }$ . Since data $\mathcal { D } _ { h }$ in episode $k$ are collected by executing each $\pi ^ { i }$ for one episode for all $i < k$ , by standard martingale concentration arguments and the completeness assumption, we can show that with high probability (Lemma 39 in Appendix E.1)
289
+
290
+ $$
291
+ \sum _ { i = 1 } ^ { k - 1 } \mathbb { E } _ { \pi ^ { i } } \left[ ( f _ { h } ^ { k } - \mathcal { T } f _ { h + 1 } ^ { k } ) ( s _ { h } , a _ { h } ) \right] ^ { 2 } \leq \mathcal { O } ( \beta ) , \mathrm { ~ f o r ~ a l l ~ } ( k , h ) \in [ K ] \times [ H ] .
292
+ $$
293
+
294
+ Step 3: Establish relations between (4) and (5). So far, we want to upper-bound (4), while we know (5). We note that the RHS of (4) is very similar to the LHS of (5), except that the latter is the squared Bellman error, and the expectation is taken under previous policy $\pi ^ { i }$ for $i < k$ . To establish the connection between these two, it turns out that we need the Bellman Eluder dimension to be small. Concretely, we have the following lemma.
295
+
296
+ Lemma 17. Given a function class $\Phi$ defined on $\mathcal { X }$ with $| \phi ( x ) | \le 1$ for all $( \phi , x ) \in \Phi \times \mathcal { X }$ , and $a$ family of probability measures $\Pi$ over $\mathcal { X }$ . Suppose sequence $\{ \phi _ { k } \} _ { k = 1 } ^ { K } \subset \dot { \Phi }$ and $\{ \mu _ { k } \} _ { k = 1 } ^ { K } \subset \Pi$ satisfy that for all $k \in [ K ] ,$ , $\begin{array} { r } { \sum _ { i = 1 } ^ { k - 1 } ( \mathbb { E } _ { \mu _ { i } } [ \phi _ { k } ] ) ^ { 2 } \ : \leq \ : \beta } \end{array}$ . Then for all $k \in [ K ]$ , $\begin{array} { r } { \sum _ { i = 1 } ^ { k } | \mathbb { E } _ { \mu _ { i } } [ \phi _ { i } ] | \ \leq } \end{array}$ $\mathcal { O } ( \sqrt { \mathrm { d i m } _ { \mathrm { D E } } ( \Phi , \Pi , 1 / k ) \beta k } )$ .
297
+
298
+ Lemma 17 is a simplification of Lemma 41 in Appendix E, which is a modification of Lemma 2 in [18]. Intuitively, Lemma 17 can be viewed as an analogue of the pigeon-hole principle for DE dimension. Choose $\Phi$ to be the function class of Bellman residuals, and $\mu _ { k }$ to be the distribution under policy $\pi ^ { k }$ , we finish the proof.
299
+
300
+ # 5 Conclusion
301
+
302
+ In this paper, we propose a new complexity measure—Bellman Eluder (BE) dimension for reinforcement learning with function approximation. Our new complexity measure identifies a new rich class of RL problems that subsumes a majority of existing tractable problem classes in RL. We design a new optimization-based algorithm—GOLF, and provide a new analysis for algorithm OLIVE. Both algorithms show that the new rich class of RL problems we identified in fact can be learned within a polynomial number of samples. We hope our results shed light on the future research in finding the minimal structural assumptions that allow sample-efficient reinforcement learning.
303
+
304
+ # Acknowledgement
305
+
306
+ This work was partial supported by National Science Foundation Grant NSF-IIS-2107304.
307
+
308
+ References
309
+ [1] Nan Jiang, Akshay Krishnamurthy, Alekh Agarwal, John Langford, and Robert E Schapire. Contextual decision processes with low bellman rank are pac-learnable. In International Conference on Machine Learning, pages 1704–1713. PMLR, 2017.
310
+ [2] Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013.
311
+ [3] David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. nature, 529 (7587):484–489, 2016.
312
+ [4] Jens Kober, J Andrew Bagnell, and Jan Peters. Reinforcement learning in robotics: A survey. The International Journal of Robotics Research, 32(11):1238–1274, 2013.
313
+ [5] Jiwei Li, Will Monroe, Alan Ritter, Michel Galley, Jianfeng Gao, and Dan Jurafsky. Deep reinforcement learning for dialogue generation. arXiv preprint arXiv:1606.01541, 2016.
314
+ [6] Yining Wang, Ruosong Wang, Simon S Du, and Akshay Krishnamurthy. Optimism in reinforcement learning with generalized linear function approximation. arXiv preprint arXiv:1912.04136, 2019.
315
+ [7] Chi Jin, Zhuoran Yang, Zhaoran Wang, and Michael I Jordan. Provably efficient reinforcement learning with linear function approximation. In Conference on Learning Theory, pages 2137– 2143, 2020.
316
+ [8] Andrea Zanette, Alessandro Lazaric, Mykel Kochenderfer, and Emma Brunskill. Learning near optimal policies with low inherent bellman error. arXiv preprint arXiv:2003.00153, 2020.
317
+ [9] Brian DO Anderson and John B Moore. Optimal control: linear quadratic methods. Courier Corporation, 2007.
318
+ [10] Maryam Fazel, Rong Ge, Sham Kakade, and Mehran Mesbahi. Global convergence of policy gradient methods for the linear quadratic regulator. In International Conference on Machine Learning, pages 1467–1476. PMLR, 2018.
319
+ [11] Sarah Dean, Horia Mania, Nikolai Matni, Benjamin Recht, and Stephen Tu. On the sample complexity of the linear quadratic regulator. Foundations of Computational Mathematics, pages 1–47, 2019.
320
+ [12] Vladimir Vapnik. The nature of statistical learning theory. Springer science & business media, 2013.
321
+ [13] Peter L Bartlett and Shahar Mendelson. Rademacher and gaussian complexities: Risk bounds and structural results. Journal of Machine Learning Research, 3(Nov):463–482, 2002.
322
+ [14] Nick Littlestone. Learning quickly when irrelevant attributes abound: A new linear-threshold algorithm. Machine learning, 2(4):285–318, 1988.
323
+ [15] Alexander Rakhlin, Karthik Sridharan, and Ambuj Tewari. Online learning: Random averages, combinatorial parameters, and learnability. 2010.
324
+ [16] Akshay Krishnamurthy, Alekh Agarwal, and John Langford. Pac reinforcement learning with rich observations. arXiv preprint arXiv:1602.02722, 2016.
325
+ [17] Ruosong Wang, Ruslan Salakhutdinov, and Lin F Yang. Provably efficient reinforcement learning with general value function approximation. arXiv preprint arXiv:2005.10804, 2020.
326
+ [18] Daniel Russo and Benjamin Van Roy. Eluder dimension and the sample complexity of optimistic exploration. In Advances in Neural Information Processing Systems, pages 2256–2264, 2013.
327
+ [19] Csaba Szepesvari and R ´ emi Munos. Finite time bounds for sampling based fitted value it- ´ eration. In Proceedings of the 22nd international conference on Machine learning, pages 880–887, 2005.
328
+ [20] Remi Munos and Csaba Szepesv ´ ari. Finite-time bounds for fitted value iteration. ´ Journal of Machine Learning Research, 9(May):815–857, 2008.
329
+ [21] Jinglin Chen and Nan Jiang. Information-theoretic considerations in batch reinforcement learning. arXiv preprint arXiv:1905.00360, 2019.
330
+ [22] Tengyang Xie and Nan Jiang. Batch value-function approximation with only realizability. arXiv preprint arXiv:2008.04990, 2020.
331
+ [23] Ronen I Brafman and Moshe Tennenholtz. R-max-a general polynomial time algorithm for near-optimal reinforcement learning. Journal of Machine Learning Research, 3(Oct):213–231, 2002.
332
+ [24] Thomas Jaksch, Ronald Ortner, and Peter Auer. Near-optimal regret bounds for reinforcement learning. Journal of Machine Learning Research, 11(4), 2010.
333
+ [25] Christoph Dann and Emma Brunskill. Sample complexity of episodic fixed-horizon reinforcement learning. In Advances in Neural Information Processing Systems, pages 2818–2826, 2015.
334
+ [26] Shipra Agrawal and Randy Jia. Optimistic posterior sampling for reinforcement learning: worst-case regret bounds. In Advances in Neural Information Processing Systems, pages 1184– 1194, 2017.
335
+ [27] Mohammad Gheshlaghi Azar, Ian Osband, and Remi Munos. Minimax regret bounds for ´ reinforcement learning. arXiv preprint arXiv:1703.05449, 2017.
336
+ [28] Andrea Zanette and Emma Brunskill. Tighter problem-dependent regret bounds in reinforcement learning without domain knowledge using value function bounds. arXiv preprint arXiv:1901.00210, 2019.
337
+ [29] Chi Jin, Zeyuan Allen-Zhu, Sebastien Bubeck, and Michael I Jordan. Is q-learning provably efficient? In Advances in Neural Information Processing Systems, pages 4863–4873, 2018.
338
+ [30] Zihan Zhang, Yuan Zhou, and Xiangyang Ji. Almost optimal model-free reinforcement learning via reference-advantage decomposition. arXiv preprint arXiv:2004.10019, 2020.
339
+ [31] Omar Darwiche Domingues, Pierre Menard, Emilie Kaufmann, and Michal Valko. Episodic ´ reinforcement learning in finite mdps: Minimax lower bounds revisited. In Algorithmic Learning Theory, pages 578–598. PMLR, 2021.
340
+ [32] Qi Cai, Zhuoran Yang, Chi Jin, and Zhaoran Wang. Provably efficient exploration in policy optimization. arXiv preprint arXiv:1912.05830, 2019.
341
+ [33] Andrea Zanette, Alessandro Lazaric, Mykel J Kochenderfer, and Emma Brunskill. Provably efficient reward-agnostic navigation with linear value iteration. Advances in Neural Information Processing Systems, 33, 2020.
342
+ [34] Alekh Agarwal, Sham Kakade, Akshay Krishnamurthy, and Wen Sun. Flambe: Structural complexity and representation learning of low rank mdps. Advances in Neural Information Processing Systems, 33, 2020.
343
+ [35] Gergely Neu and Ciara Pike-Burke. A unifying view of optimism in episodic reinforcement learning. Advances in Neural Information Processing Systems, 33, 2020.
344
+ [36] Wen Sun, Nan Jiang, Akshay Krishnamurthy, Alekh Agarwal, and John Langford. Modelbased rl in contextual decision processes: Pac bounds and exponential improvements over model-free approaches. In Conference on Learning Theory, pages 2898–2933, 2019.
345
+ [37] Ian Osband and Benjamin Van Roy. Model-based reinforcement learning and the eluder dimension. In Advances in Neural Information Processing Systems, pages 1466–1474, 2014.
346
+ [38] Kefan Dong, Jian Peng, Yining Wang, and Yuan Zhou. Root-n-regret for learning in markov decision processes with function approximation and low bellman rank. In Conference on Learning Theory, pages 1554–1557. PMLR, 2020.
347
+ [39] Zhuoran Yang, Chi Jin, Zhaoran Wang, Mengdi Wang, and Michael I Jordan. Bridging exploration and general function approximation in reinforcement learning: Provably efficient kernel and neural value iterations. arXiv preprint arXiv:2011.04622, 2020.
348
+ [40] Dylan J Foster, Alexander Rakhlin, David Simchi-Levi, and Yunzong Xu. Instance-dependent complexity of contextual bandits and reinforcement learning: A disagreement-based perspective. arXiv preprint arXiv:2010.03104, 2020.
349
+ [41] Simon S Du, Sham M Kakade, Jason D Lee, Shachar Lovett, Gaurav Mahajan, Wen Sun, and Ruosong Wang. Bilinear classes: A structural framework for provable generalization in rl. arXiv preprint arXiv:2103.10897, 2021.
350
+ [42] Csaba Szepesvari. Algorithms for reinforcement learning. ´ Synthesis lectures on artificial intelligence and machine learning, 4(1):1–103, 2010.
351
+ [43] Martin L Puterman. Markov decision processes: discrete stochastic dynamic programming. John Wiley & Sons, 2014.
352
+ [44] Gellert Weisz, Philip Amortila, and Csaba Szepesvari. Exponential lower bounds for ´ planning in mdps with linearly-realizable optimal action-value functions. arXiv preprint arXiv:2010.01374, 2020.
353
+ [45] Martin J Wainwright. High-dimensional statistics: A non-asymptotic viewpoint, volume 48. Cambridge University Press, 2019.
354
+ [46] Satinder Singh, Michael James, and Matthew Rudary. Predictive state representations: A new theory for modeling dynamical systems. arXiv preprint arXiv:1207.4167, 2012.
355
+ [47] Andras Antos, Csaba Szepesv ´ ari, and R ´ emi Munos. Learning near-optimal policies with ´ bellman-residual minimization based fitted policy iteration and a single sample path. Machine Learning, 71(1):89–129, 2008.
356
+ [48] Christoph Dann, Nan Jiang, Akshay Krishnamurthy, Alekh Agarwal, John Langford, and Robert E Schapire. On oracle-efficient pac rl with rich observations. In Advances in neural information processing systems, pages 1422–1432, 2018.
357
+ [49] Alekh Agarwal, Daniel Hsu, Satyen Kale, John Langford, Lihong Li, and Robert Schapire. Taming the monster: A fast and simple algorithm for contextual bandits. In International Conference on Machine Learning, pages 1638–1646, 2014.
parse/train/b8Kl8mcK6tb/b8Kl8mcK6tb_content_list.json ADDED
@@ -0,0 +1,1588 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "Bellman Eluder Dimension: New Rich Classes of RL Problems, and Sample-Efficient Algorithms ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 181,
8
+ 122,
9
+ 815,
10
+ 172
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Chi Jin Princeton University chij@princeton.edu ",
17
+ "bbox": [
18
+ 256,
19
+ 226,
20
+ 434,
21
+ 268
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "Qinghua Liu Princeton University qinghual@princeton.edu ",
28
+ "bbox": [
29
+ 522,
30
+ 226,
31
+ 741,
32
+ 268
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "Sobhan Miryoosefi Princeton University miryoosefi@cs.princeton.edu ",
39
+ "bbox": [
40
+ 364,
41
+ 289,
42
+ 632,
43
+ 332
44
+ ],
45
+ "page_idx": 0
46
+ },
47
+ {
48
+ "type": "text",
49
+ "text": "Abstract ",
50
+ "text_level": 1,
51
+ "bbox": [
52
+ 462,
53
+ 367,
54
+ 535,
55
+ 383
56
+ ],
57
+ "page_idx": 0
58
+ },
59
+ {
60
+ "type": "text",
61
+ "text": "Finding the minimal structural assumptions that empower sample-efficient learning is one of the most important research directions in Reinforcement Learning (RL). This paper advances our understanding of this fundamental question by introducing a new complexity measure—Bellman Eluder (BE) dimension. We show that the family of RL problems of low BE dimension is remarkably rich, which subsumes a vast majority of existing tractable RL problems including but not limited to tabular MDPs, linear MDPs, reactive POMDPs, low Bellman rank problems as well as low Eluder dimension problems. This paper further designs a new optimization-based algorithm—GOLF, and reanalyzes a hypothesis eliminationbased algorithm—OLIVE [proposed in 1]. We prove that both algorithms learn the near-optimal policies of low BE dimension problems in a number of samples that is polynomial in all relevant parameters, but independent of the size of state-action space. Our regret and sample complexity results match or improve the best existing results for several well-known subclasses of low BE dimension problems. ",
62
+ "bbox": [
63
+ 233,
64
+ 398,
65
+ 764,
66
+ 606
67
+ ],
68
+ "page_idx": 0
69
+ },
70
+ {
71
+ "type": "text",
72
+ "text": "1 Introduction ",
73
+ "text_level": 1,
74
+ "bbox": [
75
+ 174,
76
+ 632,
77
+ 310,
78
+ 650
79
+ ],
80
+ "page_idx": 0
81
+ },
82
+ {
83
+ "type": "text",
84
+ "text": "Modern Reinforcement Learning (RL) commonly engages practical problems with an enormous number of states, where function approximation must be deployed to approximate the true value function using functions from a prespecified function class. Function approximation, especially based on deep neural networks, lies at the heart of the recent practical successes of RL in domains such as Atari [2], Go [3], robotics [4], and dialogue systems [5]. ",
85
+ "bbox": [
86
+ 174,
87
+ 665,
88
+ 823,
89
+ 734
90
+ ],
91
+ "page_idx": 0
92
+ },
93
+ {
94
+ "type": "text",
95
+ "text": "Despite its empirical success, RL with function approximation raises a new series of theoretical challenges when comparing to the classic tabular RL: (1) generalization, to generalize knowledge from the visited states to the unvisited states due to the enormous state space. (2) limited expressiveness, to handle the complicated issues where true value functions or intermediate steps computed in the algorithm can be functions outside the prespecified function class. (3) exploration, to address the tradeoff between exploration and exploitation when above challenges are present. ",
96
+ "bbox": [
97
+ 174,
98
+ 741,
99
+ 825,
100
+ 824
101
+ ],
102
+ "page_idx": 0
103
+ },
104
+ {
105
+ "type": "text",
106
+ "text": "Consequently, most existing theoretical results on efficient RL with function approximation rely on relatively strong structural assumptions. For instance, many require that the MDP admits a linear approximation [6–8], or that the model is precisely Linear Quadratic Regulator (LQR) [9–11]. Most of these structural assumptions rarely hold in practical applications. This naturally leads to one of the most fundamental questions in RL. ",
107
+ "bbox": [
108
+ 174,
109
+ 830,
110
+ 823,
111
+ 900
112
+ ],
113
+ "page_idx": 0
114
+ },
115
+ {
116
+ "type": "image",
117
+ "img_path": "images/77c926de0e00917b5f40e684448ed4d632520e6ebd7f236362d3c5c22bd1676f.jpg",
118
+ "image_caption": [
119
+ "Figure 1: A schematic summarizing relations among families of RL problems1 "
120
+ ],
121
+ "image_footnote": [],
122
+ "bbox": [
123
+ 310,
124
+ 92,
125
+ 687,
126
+ 255
127
+ ],
128
+ "page_idx": 1
129
+ },
130
+ {
131
+ "type": "text",
132
+ "text": "What are the minimal structural assumptions that empower sample-efficient RL? ",
133
+ "text_level": 1,
134
+ "bbox": [
135
+ 212,
136
+ 308,
137
+ 781,
138
+ 321
139
+ ],
140
+ "page_idx": 1
141
+ },
142
+ {
143
+ "type": "text",
144
+ "text": "We advance our understanding of this grand question via the following two steps: (1) identify a rich class of RL problems (with weak structural assumptions) that cover many practical applications of interests; (2) design sample-efficient algorithms that provably learn any RL problem in this class. ",
145
+ "bbox": [
146
+ 174,
147
+ 333,
148
+ 825,
149
+ 376
150
+ ],
151
+ "page_idx": 1
152
+ },
153
+ {
154
+ "type": "text",
155
+ "text": "The attempts to find weak or minimal structural assumptions that allow statistical learning can be traced in supervised learning where VC dimension [12] or Rademacher complexity [13] is proposed, or in online learning where Littlestone dimension [14] or sequential Rademacher complexity [15] is developed. ",
156
+ "bbox": [
157
+ 174,
158
+ 381,
159
+ 825,
160
+ 436
161
+ ],
162
+ "page_idx": 1
163
+ },
164
+ {
165
+ "type": "text",
166
+ "text": "In the area of reinforcement learning, there are two intriguing lines of recent works that have made significant progress in this direction. To begin with, Jiang et al. [1] introduces a generic complexity notion—Bellman rank, which can be proved small for many RL problems including linear MDPs [7], reactive POMDPs [16], etc. [1] further propose an hypothesis elimination-based algorithm— OLIVE for sample-efficient learning of problems with low Bellman rank. On the other hand, recent work by Wang et al. [17] considers general function approximation with low Eluder dimension [18], and designs a UCB-style algorithm with regret guarantee. Noticeably, generalized linear MDPs [6] and kernel MDPs (see Appendix C) are subclasses of low Eluder dimension problems, but not low Bellman rank. ",
167
+ "bbox": [
168
+ 174,
169
+ 443,
170
+ 825,
171
+ 568
172
+ ],
173
+ "page_idx": 1
174
+ },
175
+ {
176
+ "type": "text",
177
+ "text": "In this paper, we make the following three contributions. ",
178
+ "bbox": [
179
+ 174,
180
+ 574,
181
+ 544,
182
+ 588
183
+ ],
184
+ "page_idx": 1
185
+ },
186
+ {
187
+ "type": "text",
188
+ "text": "• We introduce a new complexity measure for RL—Bellman Eluder (BE) dimension. We prove that the family of RL problems of low BE dimension is remarkably rich, which subsumes both low Bellman rank problems and low Eluder dimension problems—two arguably most generic tractable function classes so far in the literature (see Figure 1). The family of low BE dimension further includes new problems such as kernel reactive POMDPs (see Appendix C) which were not known to be sample-efficiently learnable. We design a new optimization-based algorithm—GOLF, which provably learns nearoptimal policies of low BE dimension problems in a number of samples that is polynomial in all relevant parameters, but independent of the size of state-action space. Our regret or sample complexity guarantees match [8] which is minimax optimal when specified to the linear setting. Our rates further improve upon [1, 17] in low Bellman rank and low Eluder dimension settings, respectively. We reanalyze the hypothesis elimination based algorithm—OLIVE proposed in [1]. We show it can also learn RL problems with low BE dimension sample-efficiently, under slightly weaker assumptions but with worse sample complexity comparing to GOLF. ",
189
+ "bbox": [
190
+ 215,
191
+ 599,
192
+ 825,
193
+ 818
194
+ ],
195
+ "page_idx": 1
196
+ },
197
+ {
198
+ "type": "text",
199
+ "text": "1.1 Related works ",
200
+ "text_level": 1,
201
+ "bbox": [
202
+ 174,
203
+ 834,
204
+ 313,
205
+ 849
206
+ ],
207
+ "page_idx": 1
208
+ },
209
+ {
210
+ "type": "text",
211
+ "text": "This section reviews prior theoretical works on RL, under Markov Decision Process (MDP) models. ",
212
+ "bbox": [
213
+ 178,
214
+ 859,
215
+ 820,
216
+ 875
217
+ ],
218
+ "page_idx": 1
219
+ },
220
+ {
221
+ "type": "text",
222
+ "text": "We remark that there has been a long line of research on function approximation in the batch RL setting [see, e.g., 19–22]. In this setting, agents are provided with exploratory data or simulator, so that they do not need to explicitly address the challenge of exploration. In this paper, we do not make such assumption, and attack the exploration problem directly. In the following we focus exclusively on the RL results in the general setting where exploration is required. ",
223
+ "bbox": [
224
+ 174,
225
+ 90,
226
+ 825,
227
+ 161
228
+ ],
229
+ "page_idx": 2
230
+ },
231
+ {
232
+ "type": "text",
233
+ "text": "Tabular RL. Tabular RL concerns MDPs with a small number of states and actions, which has been thoroughly studied in recent years [see, e.g., 23–30]. In the episodic setting with non-stationary dynamics, the best regret bound $\\tilde { \\mathcal { O } } ( \\sqrt { H ^ { 2 } | \\boldsymbol { S } | | \\boldsymbol { A } | T } )$ is achieved by both model-based [27] and modelfree [30] algorithms. Moreover, the bound is proved to be minimax-optimal [29, 31]. This minimax bound suggests that when the state-action space is enormous, RL is information-theoretically hard without further structural assumptions. ",
234
+ "bbox": [
235
+ 174,
236
+ 176,
237
+ 825,
238
+ 262
239
+ ],
240
+ "page_idx": 2
241
+ },
242
+ {
243
+ "type": "text",
244
+ "text": "RL with linear function approximation. A recent line of work studies RL with linear function approximation [see, e.g., 7, 6, 32, 8, 33–36] These papers assume certain completeness conditions, as well as the optimal value function can be well approximated by linear functions. Under one√ formulation of linear approximation, the minimax regret bound $\\tilde { \\mathcal { O } } ( \\dot { d } \\sqrt { T } )$ is achieved by algorithm ELEANOR [8], where $d$ is the ambient dimension of the feature space. ",
245
+ "bbox": [
246
+ 174,
247
+ 276,
248
+ 825,
249
+ 348
250
+ ],
251
+ "page_idx": 2
252
+ },
253
+ {
254
+ "type": "text",
255
+ "text": "RL with general function approximation. Beyond the linear setting, there is a flurry line of research studying RL with general function approximation [see, e.g., 37, 1, 36, 38, 17, 39, 40]. Among them, [1] and [17] are the closest to our work. ",
256
+ "bbox": [
257
+ 174,
258
+ 361,
259
+ 825,
260
+ 402
261
+ ],
262
+ "page_idx": 2
263
+ },
264
+ {
265
+ "type": "text",
266
+ "text": "Jiang et al. [1] propose a complexity measure named Bellman rank and design an algorithm OLIVE with PAC guarantees for problems with low Bellman rank. We note that low Bellman rank is a special case of low BE dimension. When specialized to the low Bellman rank setting, our result for OLIVE exactly matches the guarantee in [1]. Our result for GOLF requires an additional completeness assumption, but provides sharper sample complexity guarantee. ",
267
+ "bbox": [
268
+ 174,
269
+ 409,
270
+ 825,
271
+ 478
272
+ ],
273
+ "page_idx": 2
274
+ },
275
+ {
276
+ "type": "text",
277
+ "text": "Wang et al. [17] propose a UCB-type algorithm with a regret guarantee under the assumption that the function class has a low eluder dimension. Again, we will show that low Eluder dimension is a special case of low BE dimension. Comparing to [17], our algorithm GOLF works under a weaker completeness assumption, with a better regret guarantee. ",
278
+ "bbox": [
279
+ 174,
280
+ 484,
281
+ 825,
282
+ 540
283
+ ],
284
+ "page_idx": 2
285
+ },
286
+ {
287
+ "type": "text",
288
+ "text": "Finally, we remark that the algorithms proposed in [1, 33, 41] and this paper are all computationally inefficient in general. We notice several existing works [e.g., 7, 17] can be computationally efficient given suitable regression oracles but they require stronger representation conditions and also achieve worse regret guarantees. ",
289
+ "bbox": [
290
+ 174,
291
+ 546,
292
+ 825,
293
+ 602
294
+ ],
295
+ "page_idx": 2
296
+ },
297
+ {
298
+ "type": "text",
299
+ "text": "Relation to bilinear classes Concurrent to this work, Du et al. [41] propose a new general tractable class of RL problems—bilinear class with low effective dimension (also known as low critical information gain in Du et al. [41]). We comment on the similarities and differences between two works as follows. ",
300
+ "bbox": [
301
+ 174,
302
+ 614,
303
+ 825,
304
+ 670
305
+ ],
306
+ "page_idx": 2
307
+ },
308
+ {
309
+ "type": "text",
310
+ "text": "In terms of algorithms, both Algorithm 2 in this paper and the algorithm proposed in Du et al. [41] are based on OLIVE originally proposed in Jiang et al. [1]. The two algorithms share similar guarantees in terms of assumptions and complexity results. More importantly, our work further develops a new type of algorithm for general function approximation—GOLF, a natural and clean algorithm which can be viewed as an optimistic version of classical algorithm—Fitted Q-Iteration [42]. GOLF gives much sharper sample complexity guarantees compared to [41] for various settings, and is minimaxoptimal when applied to the linear setting [8]. ",
311
+ "bbox": [
312
+ 173,
313
+ 676,
314
+ 825,
315
+ 773
316
+ ],
317
+ "page_idx": 2
318
+ },
319
+ {
320
+ "type": "text",
321
+ "text": "In terms of richness of new classes identified, it depends on (a) what structure of MDP the complexity measures are applied to, and (b) what complexity measures are used. For (a), BE dimension applies to the Bellman error, while the bilinear class allows general surrogate losses of the Bellman error. For (b), this paper uses Eluder dimension while Du et al. [41] uses effective dimension. It can be shown that low effective dimension always implies low Eluder dimension (see Appendix C.2). In short, Du et al. [41] is more general in (a), while our work is more general in (b). As a result, neither work fully captures the other. ",
322
+ "bbox": [
323
+ 174,
324
+ 779,
325
+ 825,
326
+ 877
327
+ ],
328
+ "page_idx": 2
329
+ },
330
+ {
331
+ "type": "text",
332
+ "text": "In particular, our BE framework covers a majority of the examples identified in Du et al. [41] including low occupancy complexity, linear $Q ^ { \\star } / V ^ { \\star }$ , $Q ^ { \\star }$ state aggregation, feature selection/FLAMBE. ",
333
+ "bbox": [
334
+ 174,
335
+ 882,
336
+ 820,
337
+ 911
338
+ ],
339
+ "page_idx": 2
340
+ },
341
+ {
342
+ "type": "text",
343
+ "text": "Nevertheless, our work can not address examples with model-based function approximation (e.g., low witness rank [36]) while [41] can. On the other hand, Du et al. [41] can not address the class of RL problems with low Eluder dimension [17] while our work can. Moreover, for several classes of RL problems that both works cover, our complexity measure is sharper. For example, in the setting of function approximation with generalized linear functions, the BE dimension is ${ \\tilde { O } } ( d )$ where $d$ is the ambient dimension of the feature vectors, while the effective dimension under the generalized bilinear framework of Du et al. [41] is at least $\\tilde { \\Omega } ( d ^ { 2 } )$ . ",
344
+ "bbox": [
345
+ 173,
346
+ 90,
347
+ 825,
348
+ 193
349
+ ],
350
+ "page_idx": 3
351
+ },
352
+ {
353
+ "type": "text",
354
+ "text": "1.2 Paper organization ",
355
+ "text_level": 1,
356
+ "bbox": [
357
+ 176,
358
+ 210,
359
+ 346,
360
+ 226
361
+ ],
362
+ "page_idx": 3
363
+ },
364
+ {
365
+ "type": "text",
366
+ "text": "We present preliminaries in Section 2, the definition of Bellman-Eluder dimension as well as its relations to existing complexity notions in Section 3. We present the results for algorithm GOLF in Section 4, and conclude in Section 5. Due to space limit, we postpone the results for algorithm OLIVE to Appendix A. Further discussions on Q-type versus V-type variants of BE dimension, as well as the practical examples will be provided in Appendix B and C. All the proofs are postponed to the appendix. ",
367
+ "bbox": [
368
+ 173,
369
+ 237,
370
+ 825,
371
+ 321
372
+ ],
373
+ "page_idx": 3
374
+ },
375
+ {
376
+ "type": "text",
377
+ "text": "2 Preliminaries ",
378
+ "text_level": 1,
379
+ "bbox": [
380
+ 174,
381
+ 343,
382
+ 318,
383
+ 361
384
+ ],
385
+ "page_idx": 3
386
+ },
387
+ {
388
+ "type": "text",
389
+ "text": "We consider episodic Markov Decision Process (MDP), denoted by $\\mathcal { M } = ( \\mathcal { S } , \\mathcal { A } , H , \\mathbb { P } , r )$ , where $s$ \nis the state space, $\\mathcal { A }$ is the action space, $H$ is the number of steps in each episode, $\\mathbb { P } = \\left\\{ \\mathbb { P } _ { h } \\right\\} _ { h \\in [ H ] }$ \nis the collection of transition measures with $\\mathbb { P } _ { h } ( s ^ { \\prime } \\mid s , a )$ equal to the probability of transiting to \n$s ^ { \\prime }$ after taking action $a$ at state $s$ at the $h ^ { \\mathrm { t h } }$ step, and $r ~ { = } ~ \\bar { \\{ } r _ { h } \\} _ { h \\in \\{ H \\} }$ is the collection of reward \nfunthe for ns with step. 2 possible $r _ { h } ( s , a )$ eoue stic reward received after takinme reward is non-negative, and . $a$ $s$ $h ^ { \\mathrm { t h } }$ $\\begin{array} { r } { \\sum _ { h = 1 } ^ { H } r _ { h } ( s _ { h } , a _ { h } ) \\le 1 } \\end{array}$ $( s _ { 1 } , a _ { 1 } , \\dotsc , s _ { H } , a _ { H } )$ ",
390
+ "bbox": [
391
+ 173,
392
+ 376,
393
+ 825,
394
+ 481
395
+ ],
396
+ "page_idx": 3
397
+ },
398
+ {
399
+ "type": "text",
400
+ "text": "In each episode, the agent starts at a fixed initial state $s _ { 1 }$ . Then, at each step $h \\in [ H ]$ , the agent observes its current state $s _ { h }$ , takes action $a _ { h }$ , receives reward $r _ { h } ( s _ { h } , a _ { h } )$ , and causes the environment to transit to $s _ { h + 1 } \\sim \\mathbb { P } _ { h } ( \\cdot \\mid s _ { h } , a _ { h } )$ . Without loss of generality, we assume there is a terminating state $s _ { \\mathrm { e n d } }$ which the environment will always transit to at step $H + 1$ , and the episode terminates when $s _ { \\mathrm { e n d } }$ is reached. ",
401
+ "bbox": [
402
+ 173,
403
+ 484,
404
+ 825,
405
+ 555
406
+ ],
407
+ "page_idx": 3
408
+ },
409
+ {
410
+ "type": "text",
411
+ "text": "Policy and value functions A (deterministic) policy $\\mathcal { A } \\} _ { h = 1 } ^ { H }$ . We denote ed sum of th $V _ { h } ^ { \\pi } : { \\cal S } \\mathbb { R }$ as the value function at step ewards received under policy is a collection of $h$ for policy , starting f $\\pi$ $H$ , sm functions $V _ { h } ^ { \\pi } ( s )$ $\\{ \\pi _ { h } : { \\mathcal { S } } \\to$ gives thehe end of $\\pi$ $s _ { h } = s$ the episode. In symbol, ",
412
+ "bbox": [
413
+ 173,
414
+ 571,
415
+ 825,
416
+ 628
417
+ ],
418
+ "page_idx": 3
419
+ },
420
+ {
421
+ "type": "equation",
422
+ "img_path": "images/364bcf5462a870d49b75f878fff975f46f32720dd2857db460f03511e0daaff0.jpg",
423
+ "text": "$$\nV _ { h } ^ { \\pi } ( s ) : = \\mathbb { E } _ { \\pi } [ \\sum _ { h ^ { \\prime } = h } ^ { H } r _ { h ^ { \\prime } } ( s _ { h ^ { \\prime } } , a _ { h ^ { \\prime } } ) \\mid s _ { h } = s ] .\n$$",
424
+ "text_format": "latex",
425
+ "bbox": [
426
+ 359,
427
+ 631,
428
+ 638,
429
+ 674
430
+ ],
431
+ "page_idx": 3
432
+ },
433
+ {
434
+ "type": "text",
435
+ "text": "Similarly, we denote $Q _ { h } ^ { \\pi } : \\mathcal { S } \\times \\mathcal { A } \\mathbb { R }$ as the $Q$ -value function at step $h$ for policy $\\pi$ , where ",
436
+ "bbox": [
437
+ 171,
438
+ 679,
439
+ 776,
440
+ 695
441
+ ],
442
+ "page_idx": 3
443
+ },
444
+ {
445
+ "type": "equation",
446
+ "img_path": "images/fbddcbe9d0b7fcd08bbaa1e1b876fdef13667184442a770bfc987720f38df955.jpg",
447
+ "text": "$$\nQ _ { h } ^ { \\pi } ( s , a ) : = \\mathbb { E } _ { \\pi } [ \\sum _ { h ^ { \\prime } = h } ^ { H } r _ { h ^ { \\prime } } ( s _ { h ^ { \\prime } } , a _ { h ^ { \\prime } } ) \\ | \\ s _ { h } = s , a _ { h } = a ] .\n$$",
448
+ "text_format": "latex",
449
+ "bbox": [
450
+ 323,
451
+ 704,
452
+ 673,
453
+ 750
454
+ ],
455
+ "page_idx": 3
456
+ },
457
+ {
458
+ "type": "text",
459
+ "text": "There exists an optimal policy $\\pi ^ { \\star }$ , which gives the optimal value function for all states [43], in the sense, $\\begin{array} { r } { V _ { h } ^ { \\pi ^ { \\star } } ( s ) = \\operatorname* { s u p } _ { \\pi } \\bar { V } _ { h } ^ { \\pi } ( s ) } \\end{array}$ for all $h \\in [ H ]$ and $s \\in S$ . For notational simplicity, we abbreviate $V ^ { \\pi ^ { \\star } }$ as $V ^ { \\star }$ . We similarly define the optimal $Q$ -value function as $Q ^ { \\star }$ . Recall that $Q ^ { \\star }$ satisfies the Bellman optimality equation: ",
460
+ "bbox": [
461
+ 173,
462
+ 763,
463
+ 825,
464
+ 824
465
+ ],
466
+ "page_idx": 3
467
+ },
468
+ {
469
+ "type": "equation",
470
+ "img_path": "images/374d1edb02431e9851836f077c9e0977fe6f34a5b54c1b45b5bb14ed7c95e196.jpg",
471
+ "text": "$$\nQ _ { h } ^ { \\star } ( s , a ) = ( { \\cal T } _ { h } Q _ { h + 1 } ^ { \\star } ) ( s , a ) : = r _ { h } ( s , a ) + \\mathbb { E } _ { s ^ { \\prime } \\sim \\mathbb { P } _ { h } ( \\cdot \\vert s , a ) } \\operatorname* { m a x } _ { a ^ { \\prime } \\in \\mathcal { A } } Q _ { h + 1 } ^ { \\star } ( s ^ { \\prime } , a ^ { \\prime } ) .\n$$",
472
+ "text_format": "latex",
473
+ "bbox": [
474
+ 253,
475
+ 833,
476
+ 745,
477
+ 856
478
+ ],
479
+ "page_idx": 3
480
+ },
481
+ {
482
+ "type": "text",
483
+ "text": "for all $( s , a , h ) \\in \\mathcal { S } \\times \\mathcal { A } \\times [ H ]$ . We also call $\\mathcal { T } _ { h }$ the Bellman operator at step $h$ . ",
484
+ "bbox": [
485
+ 174,
486
+ 866,
487
+ 697,
488
+ 883
489
+ ],
490
+ "page_idx": 3
491
+ },
492
+ {
493
+ "type": "text",
494
+ "text": "$\\epsilon$ -optimality and regret We say a policy $\\pi$ is $\\epsilon$ -optimal if $V _ { 1 } ^ { \\pi } ( s _ { 1 } ) \\geq V _ { 1 } ^ { \\star } ( s _ { 1 } ) - \\epsilon$ . Suppose an agent interacts with the environment for $K$ episodes. Denote by $\\pi ^ { k }$ the policy the agent follows in episode $k \\in [ K ]$ . The (accumulative) regret is defined as ",
495
+ "bbox": [
496
+ 174,
497
+ 90,
498
+ 825,
499
+ 135
500
+ ],
501
+ "page_idx": 4
502
+ },
503
+ {
504
+ "type": "equation",
505
+ "img_path": "images/e4edc5fe579df180c282f73bd762326244c035e38856be99c3ad862c3c456005.jpg",
506
+ "text": "$$\n\\mathrm { R e g } ( K ) : = \\sum _ { k = 1 } ^ { K } [ V _ { 1 } ^ { \\star } ( s _ { 1 } ) - V _ { 1 } ^ { \\pi ^ { k } } ( s _ { 1 } ) ] .\n$$",
507
+ "text_format": "latex",
508
+ "bbox": [
509
+ 375,
510
+ 140,
511
+ 622,
512
+ 184
513
+ ],
514
+ "page_idx": 4
515
+ },
516
+ {
517
+ "type": "text",
518
+ "text": "The objective of reinforcement learning is to find an $\\epsilon$ -optimal policy within a small number of interactions or to achieve sublinear regret. ",
519
+ "bbox": [
520
+ 173,
521
+ 189,
522
+ 825,
523
+ 218
524
+ ],
525
+ "page_idx": 4
526
+ },
527
+ {
528
+ "type": "text",
529
+ "text": "2.1 Function approximation ",
530
+ "text_level": 1,
531
+ "bbox": [
532
+ 174,
533
+ 233,
534
+ 383,
535
+ 250
536
+ ],
537
+ "page_idx": 4
538
+ },
539
+ {
540
+ "type": "text",
541
+ "text": "In this paper, we consider reinforcement learning with value function approximation. Formally, the learner is given a function class $\\mathcal { F } = \\mathcal { F } _ { 1 } \\times \\cdot \\cdot \\cdot \\times \\mathcal { F } _ { H }$ , where ${ \\mathcal { F } } _ { h } \\subseteq ( S \\times { \\mathcal { A } } \\to [ 0 , 1 ] )$ offers a set of candidate functions to approximate $Q _ { h } ^ { \\star }$ —the optimal $Q$ -value function at step $h$ . Since no reward is collected in the $( H + 1 ) ^ { \\mathrm { t h } }$ steps, we always set $f _ { H + 1 } = 0$ . ",
542
+ "bbox": [
543
+ 174,
544
+ 258,
545
+ 825,
546
+ 318
547
+ ],
548
+ "page_idx": 4
549
+ },
550
+ {
551
+ "type": "text",
552
+ "text": "Reinforcement learning with function approximation in general is extremely challenging without further assumptions (see, e.g., hardness results in [16, 44]). Below, we present two assumptions about function approximation that are commonly adopted in the literature. ",
553
+ "bbox": [
554
+ 174,
555
+ 323,
556
+ 825,
557
+ 366
558
+ ],
559
+ "page_idx": 4
560
+ },
561
+ {
562
+ "type": "text",
563
+ "text": "Assumption 1 (Realizability). $Q _ { h } ^ { \\star } \\in \\mathcal { F } _ { h }$ for all $h \\in [ H ]$ . ",
564
+ "bbox": [
565
+ 174,
566
+ 368,
567
+ 549,
568
+ 385
569
+ ],
570
+ "page_idx": 4
571
+ },
572
+ {
573
+ "type": "text",
574
+ "text": "Realizability requires the function class is well-specified, i.e., function class $\\mathcal { F }$ in fact contains the optimal $Q$ -value function $Q ^ { \\star }$ with no approximation error. ",
575
+ "bbox": [
576
+ 174,
577
+ 393,
578
+ 823,
579
+ 422
580
+ ],
581
+ "page_idx": 4
582
+ },
583
+ {
584
+ "type": "text",
585
+ "text": "Assumption 2 (Completeness). $\\mathcal T _ { h } \\mathcal F _ { h + 1 } \\subseteq \\mathcal F _ { h }$ for all $h \\in [ H ]$ . ",
586
+ "bbox": [
587
+ 173,
588
+ 426,
589
+ 591,
590
+ 443
591
+ ],
592
+ "page_idx": 4
593
+ },
594
+ {
595
+ "type": "text",
596
+ "text": "Note $\\mathcal { T } _ { h } \\mathcal { F } _ { h + 1 }$ is defined as $\\{ T _ { h } f _ { h + 1 } : f _ { h + 1 } \\in \\mathcal { F } _ { h + 1 } \\}$ . Completeness requires the function class $\\mathcal { F }$ to be closed under the Bellman operator. ",
597
+ "bbox": [
598
+ 174,
599
+ 450,
600
+ 823,
601
+ 481
602
+ ],
603
+ "page_idx": 4
604
+ },
605
+ {
606
+ "type": "text",
607
+ "text": "When function class $\\mathcal { F }$ has finite elements, we can use its cardinality $| \\mathcal F |$ to measure the “size” of function class $\\mathcal { F }$ . When addressing function classes with infinite elements, we need a notion similar to cardinality. We use the standard $\\epsilon$ -covering number. ",
608
+ "bbox": [
609
+ 174,
610
+ 486,
611
+ 825,
612
+ 529
613
+ ],
614
+ "page_idx": 4
615
+ },
616
+ {
617
+ "type": "text",
618
+ "text": "Definition 3 ( $\\epsilon$ -covering number). The $\\epsilon$ -covering number of a set $\\nu$ under metric $\\rho ,$ , denoted as $\\mathcal { N } ( \\mathcal { V } , \\epsilon , \\rho )$ , is the minimum integer $n$ such that there exists a subset $\\mathcal { V } _ { o } \\subset \\mathcal { V }$ with $| \\nu _ { o } | = n$ , and for any $x \\in \\nu$ , there exists $y \\in \\mathcal { V } _ { o }$ such that $\\rho ( x , y ) \\le \\epsilon$ . ",
619
+ "bbox": [
620
+ 173,
621
+ 532,
622
+ 825,
623
+ 575
624
+ ],
625
+ "page_idx": 4
626
+ },
627
+ {
628
+ "type": "text",
629
+ "text": "We refer readers to standard textbooks [see, e.g., 45] for further properties of covering number. In this paper, we will always apply the covering number on function class $\\mathcal { F } = \\mathcal { F } _ { 1 } \\times \\cdot \\cdot \\cdot \\times \\mathcal { F } _ { H }$ , and use metric $\\rho ( f , g ) = \\operatorname* { m a x } _ { h } \\| f _ { h } - g _ { h } \\| _ { \\infty }$ . For notational simplicity, we omit the metric dependence and denote the covering number as $\\mathcal { N } _ { \\mathcal { F } } ( \\epsilon )$ . ",
630
+ "bbox": [
631
+ 174,
632
+ 585,
633
+ 825,
634
+ 642
635
+ ],
636
+ "page_idx": 4
637
+ },
638
+ {
639
+ "type": "text",
640
+ "text": "2.2 Eluder dimension ",
641
+ "text_level": 1,
642
+ "bbox": [
643
+ 173,
644
+ 656,
645
+ 338,
646
+ 671
647
+ ],
648
+ "page_idx": 4
649
+ },
650
+ {
651
+ "type": "text",
652
+ "text": "One class of functions highly related to this paper is the function class of low Eluder dimension [18]. ",
653
+ "bbox": [
654
+ 173,
655
+ 683,
656
+ 821,
657
+ 698
658
+ ],
659
+ "page_idx": 4
660
+ },
661
+ {
662
+ "type": "text",
663
+ "text": "Definition 4 ( $\\epsilon$ -independence between points). Let $\\mathcal { G }$ be a function class defined on $\\mathcal { X }$ , and $z , x _ { 1 } , x _ { 2 }$ $\\textstyle , \\ldots , x _ { n } \\in { \\mathcal { X } }$ . We say $z$ is $\\epsilon$ -independent of $\\{ x _ { 1 } , x _ { 2 } , \\ldots , x _ { n } \\}$ with respect to $\\mathcal { G }$ if there exist $g _ { 1 } , g _ { 2 } \\in \\mathcal { G }$ such that $\\begin{array} { r } { \\sqrt { \\sum _ { i = 1 } ^ { n } ( g _ { 1 } ( x _ { i } ) - g _ { 2 } ( x _ { i } ) ) ^ { 2 } } \\le \\epsilon } \\end{array}$ , but $g _ { 1 } ( z ) - g _ { 2 } ( z ) > \\epsilon .$ . ",
664
+ "bbox": [
665
+ 173,
666
+ 700,
667
+ 825,
668
+ 748
669
+ ],
670
+ "page_idx": 4
671
+ },
672
+ {
673
+ "type": "text",
674
+ "text": "Intuitively, $z$ is independent of $\\{ x _ { 1 } , x _ { 2 } , \\ldots , x _ { n } \\}$ means if that there exist two “certifying” functions $g _ { 1 }$ and $g _ { 2 }$ , so that their function values are similar at all points $\\{ x _ { i } \\} _ { i = 1 } ^ { n }$ , but the values are rather different at $z$ . This independence relation naturally induces the following complexity measure. ",
675
+ "bbox": [
676
+ 173,
677
+ 756,
678
+ 825,
679
+ 799
680
+ ],
681
+ "page_idx": 4
682
+ },
683
+ {
684
+ "type": "text",
685
+ "text": "Definition 5 (Eluder dimension). Let $\\mathcal { G }$ be a function class defined on $\\mathcal { X }$ . The Eluder dimension $\\mathrm { d i m } _ { \\mathrm { E } } ( \\mathcal { G } , \\epsilon )$ is the length of the longest sequence $\\{ x _ { 1 } , \\ldots , x _ { n } \\} \\subset { \\mathcal { X } }$ such that there exists $\\epsilon ^ { \\prime } \\geq \\epsilon$ where $x _ { i }$ is $\\epsilon ^ { \\prime }$ -independent of $\\{ x _ { 1 } , \\dots , x _ { i - 1 } \\}$ for all $i \\in [ n ]$ . ",
686
+ "bbox": [
687
+ 173,
688
+ 803,
689
+ 823,
690
+ 847
691
+ ],
692
+ "page_idx": 4
693
+ },
694
+ {
695
+ "type": "text",
696
+ "text": "Recall that a vector space has dimension $d$ if and only if $d$ is the length of the longest sequence of elements $\\{ x _ { 1 } , \\ldots , x _ { d } \\}$ such that $x _ { i }$ is linearly independent of $\\{ x _ { 1 } , \\dotsc , x _ { i - 1 } \\}$ for all $i \\in [ n ]$ . Eluder dimension generalizes the linear independence relation in standard vector space to capture both nonlinear independence and approximate independence, and thus is more general. ",
697
+ "bbox": [
698
+ 174,
699
+ 854,
700
+ 825,
701
+ 911
702
+ ],
703
+ "page_idx": 4
704
+ },
705
+ {
706
+ "type": "text",
707
+ "text": "3 Bellman Eluder Dimension ",
708
+ "text_level": 1,
709
+ "bbox": [
710
+ 174,
711
+ 88,
712
+ 431,
713
+ 107
714
+ ],
715
+ "page_idx": 5
716
+ },
717
+ {
718
+ "type": "text",
719
+ "text": "In this section, we introduce our new complexity measure—Bellman Eluder (BE) dimension. As one of its most important properties, we will show that the family of problems with low BE dimension contains the two existing most general tractable problem classes in RL—problems with low Bellman rank, and problems with low Eluder dimension (see Figure 1). ",
720
+ "bbox": [
721
+ 173,
722
+ 119,
723
+ 825,
724
+ 176
725
+ ],
726
+ "page_idx": 5
727
+ },
728
+ {
729
+ "type": "text",
730
+ "text": "We start by developing a new distributional version of the original Eluder dimension proposed by Russo and Van Roy [18] (see Section 2.2 for more details). ",
731
+ "bbox": [
732
+ 173,
733
+ 181,
734
+ 821,
735
+ 210
736
+ ],
737
+ "page_idx": 5
738
+ },
739
+ {
740
+ "type": "text",
741
+ "text": "Definition 6 ( $\\epsilon$ -independence between distributions). Let $\\mathcal { G }$ be a function class defined on $\\mathcal { X }$ , and $\\nu , \\mu _ { 1 } , \\ldots , \\mu _ { n }$ be probability measures over $\\mathcal { X }$ . We say $\\nu$ is $\\epsilon$ -independent of $\\{ \\mu _ { 1 } , \\mu _ { 2 } , \\ldots , \\mu _ { n } \\}$ with respect to $\\mathcal { G }$ if there exists $g \\in { \\mathcal { G } }$ such that $\\begin{array} { r } { \\sqrt { \\sum _ { i = 1 } ^ { n } ( { \\mathbb E } _ { \\mu _ { i } } [ g ] ) ^ { 2 } } \\le \\epsilon } \\end{array}$ , but $\\begin{array} { r } { \\left| \\mathbb { E } _ { \\nu } [ g ] \\right| > \\epsilon } \\end{array}$ . ",
742
+ "bbox": [
743
+ 173,
744
+ 214,
745
+ 823,
746
+ 261
747
+ ],
748
+ "page_idx": 5
749
+ },
750
+ {
751
+ "type": "text",
752
+ "text": "Definition 7 (Distributional Eluder (DE) dimension). Let $\\mathcal { G }$ be a function class defined on $\\mathcal { X }$ , and $\\Pi$ be a family of probability measures over $\\mathcal { X }$ . The distributional Eluder dimension $\\dim _ { \\mathrm { D E } } ( { \\mathcal { G } } , \\Pi , \\epsilon )$ is the length of the longest sequence $\\{ \\rho _ { 1 } , \\ldots , \\rho _ { n } \\} \\subset \\Pi$ such that there exists $\\epsilon ^ { \\prime } \\geq \\epsilon$ where $\\rho _ { i }$ is $\\epsilon ^ { \\prime }$ -independent of $\\{ \\rho _ { 1 } , . . . , \\rho _ { i - 1 } \\}$ for all $i \\in [ n ]$ . ",
753
+ "bbox": [
754
+ 174,
755
+ 262,
756
+ 825,
757
+ 320
758
+ ],
759
+ "page_idx": 5
760
+ },
761
+ {
762
+ "type": "text",
763
+ "text": "Definition 6 and Definition 7 generalize Definition 4 and Definition 5 to their distributional versions, by inspecting the expected values of functions instead of the function values at points, and by restricting the candidate distributions to a certain family $\\Pi$ . The main advantage of this generalization is exactly in the statistical setting, where estimating the expected values of functions with respect to a certain distribution family can be easier than estimating function values at each point (which is the case for RL in large state spaces). ",
764
+ "bbox": [
765
+ 173,
766
+ 329,
767
+ 825,
768
+ 414
769
+ ],
770
+ "page_idx": 5
771
+ },
772
+ {
773
+ "type": "text",
774
+ "text": "It is clear that the standard Eluder dimension is a special case of the distributional Eluder dimension, because if we choose $\\Pi = \\{ \\delta _ { x } ( \\cdot ) \\mid x \\in \\mathcal { X } \\}$ where $\\delta _ { x } ( \\cdot )$ is the dirac measure centered at $x$ , then $\\dim _ { \\operatorname { E } } ( { \\mathcal { G } } , \\epsilon ) = \\dim _ { \\operatorname { D E } } ( { \\mathcal { G } } - { \\mathcal { G } } , \\Pi , \\epsilon )$ where ${ \\mathcal { G } } - { \\mathcal { G } } = \\{ g _ { 1 } - g _ { 2 } : g _ { 1 } , g _ { 2 } \\in { \\mathcal { G } } \\}$ . ",
775
+ "bbox": [
776
+ 173,
777
+ 419,
778
+ 825,
779
+ 463
780
+ ],
781
+ "page_idx": 5
782
+ },
783
+ {
784
+ "type": "text",
785
+ "text": "Now we are ready to introduce the key notion in this paper—Bellman Eluder dimension. ",
786
+ "bbox": [
787
+ 173,
788
+ 467,
789
+ 753,
790
+ 482
791
+ ],
792
+ "page_idx": 5
793
+ },
794
+ {
795
+ "type": "text",
796
+ "text": "Definition 8 (Bellman Eluder (BE) dimension). Let $( I - \\mathcal { T } _ { h } ) \\mathcal { F } { : = } \\{ f _ { h } - \\mathcal { T } _ { h } f _ { h + 1 } : \\mathrm { ~ } f \\in \\mathcal { F } \\}$ be the set of Bellman residuals induced by $\\mathcal { F }$ at step $h$ , and $\\dot { \\Pi } = \\{ \\Pi _ { h } \\} _ { h = 1 } ^ { H }$ be a collection of $H$ probability measure families over $s \\times { \\mathcal { A } }$ . The $\\epsilon$ -Bellman Eluder of $\\mathcal { F }$ with respect to $\\Pi$ is defined as ",
797
+ "bbox": [
798
+ 173,
799
+ 484,
800
+ 826,
801
+ 527
802
+ ],
803
+ "page_idx": 5
804
+ },
805
+ {
806
+ "type": "equation",
807
+ "img_path": "images/e7684c55c79e7aae92818aee655b029b28d502f9bc2ba8596b64bbde2307b01f.jpg",
808
+ "text": "$$\n\\dim _ { \\mathrm { B E } } ( { \\mathcal F } , \\Pi , \\epsilon ) : = \\operatorname* { m a x } _ { h \\in [ H ] } \\dim _ { \\mathrm { D E } } \\big ( ( I - { \\mathcal T } _ { h } ) { \\mathcal F } , \\Pi _ { h } , \\epsilon \\big ) .\n$$",
809
+ "text_format": "latex",
810
+ "bbox": [
811
+ 320,
812
+ 532,
813
+ 674,
814
+ 559
815
+ ],
816
+ "page_idx": 5
817
+ },
818
+ {
819
+ "type": "text",
820
+ "text": "Remark 9 (Q-type v.s. V-type). Definition 8 is based on the Bellman residuals functions that take a state-action pair as input, thus referred to as $Q$ -type $B E$ dimension. Alternatively, one can define $V -$ type BE dimension using a different set of Bellman residual functions that depend on states only (see Appendix $B$ ). We focus on $Q$ -type in the main paper, and present the results for $V .$ -type in Appendix B. Both variants are important, and they include different sets of examples (see Appendix B, C). ",
821
+ "bbox": [
822
+ 173,
823
+ 564,
824
+ 825,
825
+ 636
826
+ ],
827
+ "page_idx": 5
828
+ },
829
+ {
830
+ "type": "text",
831
+ "text": "In short, Bellman Eluder dimension is simply the distributional Eluder dimension on the function class of Bellman residuals, maximizing over all steps. In addition to function class $\\mathcal { F }$ and error $\\epsilon$ , Bellman Eluder dimension also depends on the choice of distribution family $\\Pi$ . For the purpose of this paper, we focus on the following two specific choices. ",
832
+ "bbox": [
833
+ 174,
834
+ 643,
835
+ 825,
836
+ 702
837
+ ],
838
+ "page_idx": 5
839
+ },
840
+ {
841
+ "type": "text",
842
+ "text": "1. $\\mathcal { D } _ { \\mathcal { F } } : = \\{ \\mathcal { D } _ { \\mathcal { F } , h } \\} _ { h \\in [ H ] }$ , where $\\mathcal { D } _ { \\mathcal { F } , h }$ denotes the collection of all probability measures over $\\boldsymbol { S } \\times \\boldsymbol { A }$ at the $h ^ { \\mathrm { t h } }$ step, which can be generated by executing the greedy policy $\\pi _ { f }$ induced by any $f \\in { \\mathcal { F } }$ , i.e., $\\bar { \\pi } _ { f , h } ( \\cdot ) = \\mathrm { a r g m a } \\bar { \\mathrm { x } } _ { a \\in \\mathcal { A } } f _ { h } ( \\cdot , \\bar { a } )$ for all $h \\in [ H ]$ . 2. $\\mathcal { D } _ { \\Delta } : = \\{ \\mathcal { D } _ { \\Delta , h } \\} _ { h \\in [ H ] }$ , where ${ \\mathcal { D } } _ { \\Delta , h } = \\{ \\delta _ { ( s , a ) } ( \\cdot ) | s \\in S , a \\in { \\mathcal { A } } \\}$ , i.e., the collections of probability measures that put measure 1 on a single state-action pair. ",
843
+ "bbox": [
844
+ 210,
845
+ 710,
846
+ 825,
847
+ 790
848
+ ],
849
+ "page_idx": 5
850
+ },
851
+ {
852
+ "type": "text",
853
+ "text": "We say a RL problem has low BE dimension if $\\begin{array} { r } { \\operatorname* { m i n } _ { \\Pi \\in \\{ \\mathcal { D } _ { \\mathcal { F } } , \\mathcal { D } _ { \\Delta } \\} } \\mathrm { d i m } _ { \\mathrm { B E } } ( \\mathcal { F } , \\Pi , \\epsilon ) \\mathrm { i s ~ s m a } } \\end{array}$ ll. ",
854
+ "bbox": [
855
+ 169,
856
+ 799,
857
+ 756,
858
+ 816
859
+ ],
860
+ "page_idx": 5
861
+ },
862
+ {
863
+ "type": "text",
864
+ "text": "3.1 Relations with known tractable classes of RL problems ",
865
+ "text_level": 1,
866
+ "bbox": [
867
+ 174,
868
+ 830,
869
+ 594,
870
+ 845
871
+ ],
872
+ "page_idx": 5
873
+ },
874
+ {
875
+ "type": "text",
876
+ "text": "Known tractable problem classes in RL include but not limited to tabular MDPs, linear MDPs [7], linear quadratic regulators [9], generalized linear MDPs [6], kernel MDPs (Appendix C), reactive POMDPs [16], reactive PSRs [46, 1]. There are two existing generic tractable problem classes that jointly contain all the examples mentioned above: the set of RL problems with low Bellman rank, and the set of RL problems with low Eluder dimension. However, for these two generic sets, one does not contain the other. ",
877
+ "bbox": [
878
+ 174,
879
+ 854,
880
+ 825,
881
+ 911
882
+ ],
883
+ "page_idx": 5
884
+ },
885
+ {
886
+ "type": "text",
887
+ "text": "",
888
+ "bbox": [
889
+ 173,
890
+ 90,
891
+ 823,
892
+ 119
893
+ ],
894
+ "page_idx": 6
895
+ },
896
+ {
897
+ "type": "text",
898
+ "text": "In this section, we will show that our new class of RL problems with low BE dimension in fact contains both low Bellman rank problems and low Eluder dimension problems (see Figure 1). That is, our new problem class covers almost all existing tractable RL problems, and to our best knowledge, is the most generic tractable function class so far. ",
899
+ "bbox": [
900
+ 173,
901
+ 125,
902
+ 825,
903
+ 181
904
+ ],
905
+ "page_idx": 6
906
+ },
907
+ {
908
+ "type": "text",
909
+ "text": "Relation with low Bellman rank The seminal paper by Jiang et al. [1] proposes the complexity measure—Bellman rank, and shows that a majority of RL examples mentioned above have low Bellman rank. They also propose a hypothesis elimination based algorithm—OLIVE, that learns any low Bellman rank problem within polynomial samples. Formally, ",
910
+ "bbox": [
911
+ 173,
912
+ 196,
913
+ 825,
914
+ 253
915
+ ],
916
+ "page_idx": 6
917
+ },
918
+ {
919
+ "type": "text",
920
+ "text": "Definition 10 (Bellman rank). The Bellman rank is the minimum integer $d$ so that there exists $\\phi _ { h }$ : $\\mathcal { F } \\mathbb { R } ^ { d }$ and $\\psi _ { h } : \\mathcal { F } \\mathbb { R } ^ { d }$ for each $h \\in [ H ]$ , such that for any $f , f ^ { \\prime } \\in \\mathcal { F }$ , the average Bellman error. ",
921
+ "bbox": [
922
+ 173,
923
+ 257,
924
+ 825,
925
+ 299
926
+ ],
927
+ "page_idx": 6
928
+ },
929
+ {
930
+ "type": "equation",
931
+ "img_path": "images/e0b2c3eedd07d09f7622957c613d0dec65e5d9aba0a1f0f7ec292e77a19e01cf.jpg",
932
+ "text": "$$\n\\mathcal { E } ( f , \\pi _ { f ^ { \\prime } } , h ) : = \\mathbb { E } _ { \\pi _ { f ^ { \\prime } } } [ ( f _ { h } - \\mathcal { T } _ { h } f _ { h + 1 } ) ( s _ { h } , a _ { h } ) ] = \\langle \\phi _ { h } ( f ) , \\psi _ { h } ( f ^ { \\prime } ) \\rangle ,\n$$",
933
+ "text_format": "latex",
934
+ "bbox": [
935
+ 282,
936
+ 299,
937
+ 714,
938
+ 319
939
+ ],
940
+ "page_idx": 6
941
+ },
942
+ {
943
+ "type": "text",
944
+ "text": "where $\\| \\phi _ { h } ( f ) \\| _ { 2 } \\cdot \\| \\psi _ { h } ( f ^ { \\prime } ) \\| _ { 2 } \\leq \\zeta$ , and $\\zeta$ is the normalization parameter. ",
945
+ "bbox": [
946
+ 176,
947
+ 321,
948
+ 648,
949
+ 338
950
+ ],
951
+ "page_idx": 6
952
+ },
953
+ {
954
+ "type": "text",
955
+ "text": "We remark that similar to Bellman Eluder dimension, Bellman rank also has two variants—Q-type (Definition 10) and $\\mathrm { V } .$ -type (see Appendix B). Recall that we use $\\pi _ { f }$ to denote the greedy policy induced by value function $f$ . Intuitively, a problem with Bellman rank says its average Bellman error can be decomposed as the inner product of two $d$ -dimensional vectors, where one vector depends on the roll-in policy $\\pi _ { f ^ { \\prime } }$ , while the other vector depends on the value function $f$ . At a high level, it claims that the average Bellman error has a linear inner product structure. ",
956
+ "bbox": [
957
+ 173,
958
+ 348,
959
+ 825,
960
+ 433
961
+ ],
962
+ "page_idx": 6
963
+ },
964
+ {
965
+ "type": "text",
966
+ "text": "Proposition 11 (low Bellman rank $\\subset$ low BE dimension). If an MDP with function class $\\mathcal { F }$ has Bellman rank $d$ with normalization parameter $\\zeta ,$ , then ",
967
+ "bbox": [
968
+ 174,
969
+ 436,
970
+ 823,
971
+ 465
972
+ ],
973
+ "page_idx": 6
974
+ },
975
+ {
976
+ "type": "equation",
977
+ "img_path": "images/05a1198e489301233e7d23d30cd0c0711778a6ac5e6f8e47708954de77d3288b.jpg",
978
+ "text": "$$\n\\dim _ { \\mathrm { B E } } ( \\mathcal { F } , \\mathcal { D } _ { \\mathcal { F } } , \\epsilon ) \\leq \\mathcal { O } ( 1 + d \\log ( 1 + \\zeta / \\epsilon ) ) .\n$$",
979
+ "text_format": "latex",
980
+ "bbox": [
981
+ 349,
982
+ 473,
983
+ 647,
984
+ 491
985
+ ],
986
+ "page_idx": 6
987
+ },
988
+ {
989
+ "type": "text",
990
+ "text": "Proposition 11 claims that problems with low Bellman rank also have low BE dimension, with a small multiplicative factor that is only logarithmic in $\\zeta$ and $\\epsilon ^ { - 1 }$ . ",
991
+ "bbox": [
992
+ 171,
993
+ 503,
994
+ 823,
995
+ 534
996
+ ],
997
+ "page_idx": 6
998
+ },
999
+ {
1000
+ "type": "text",
1001
+ "text": "Relation with low Eluder dimension Wang et al. [17] study the setting where the function class $\\mathcal { F }$ has low Eluder dimension, which includes generalized linear functions. They prove that, when the completeness assumption is satisfied,3 low Eluder dimension problems can be efficiently learned in polynomial samples. ",
1002
+ "bbox": [
1003
+ 173,
1004
+ 547,
1005
+ 825,
1006
+ 604
1007
+ ],
1008
+ "page_idx": 6
1009
+ },
1010
+ {
1011
+ "type": "text",
1012
+ "text": "Proposition 12 (low Eluder dimension $\\subset$ low BE dimension). Assume $\\mathcal { F }$ satisfies completeness (Assumption 2). Then for all $\\epsilon > 0$ , ",
1013
+ "bbox": [
1014
+ 171,
1015
+ 608,
1016
+ 821,
1017
+ 637
1018
+ ],
1019
+ "page_idx": 6
1020
+ },
1021
+ {
1022
+ "type": "equation",
1023
+ "img_path": "images/9ff0a11d0cc3927d32b30d4abf17768d4c2c49ab0c24c9a306f26067f4c90580.jpg",
1024
+ "text": "$$\n\\dim _ { \\mathrm { B E } } \\left( { \\mathcal { F } } , { \\mathcal { D } } _ { \\Delta } , \\epsilon \\right) \\leq \\operatorname* { m a x } _ { h \\in \\left[ H \\right] } \\dim _ { \\mathrm { E } } ( { \\mathcal { F } } _ { h } , \\epsilon ) .\n$$",
1025
+ "text_format": "latex",
1026
+ "bbox": [
1027
+ 361,
1028
+ 643,
1029
+ 635,
1030
+ 670
1031
+ ],
1032
+ "page_idx": 6
1033
+ },
1034
+ {
1035
+ "type": "text",
1036
+ "text": "Proposition 12 asserts that problems with low Eluder dimension also have low BE dimension, which is a natural consequence of completeness and the fact that Eluder dimension is a special case of distributional Eluder dimension. ",
1037
+ "bbox": [
1038
+ 173,
1039
+ 684,
1040
+ 825,
1041
+ 727
1042
+ ],
1043
+ "page_idx": 6
1044
+ },
1045
+ {
1046
+ "type": "text",
1047
+ "text": "Finally, we show that the set of low BE dimension problems is strictly larger than the union of low Eluder dimension problems and low Bellman rank problems. ",
1048
+ "bbox": [
1049
+ 174,
1050
+ 733,
1051
+ 820,
1052
+ 762
1053
+ ],
1054
+ "page_idx": 6
1055
+ },
1056
+ {
1057
+ "type": "text",
1058
+ "text": "Proposition 13 (low BE dimension $\\nless$ low Eluder dimension ∪ low Bellman rank). For any $m ~ \\in ~ \\mathbb { N } ^ { + }$ , there exists an MDP and a function class $\\mathcal { F }$ so that for all $\\epsilon ~ \\in ~ ( 0 , 1 ]$ , we have $\\dim _ { \\mathrm { B E } } ( { \\mathcal F } , { \\mathcal D } _ { { \\mathcal F } } , \\epsilon ) = \\dim _ { \\mathrm { B E } } ( { \\mathcal F } , { \\mathcal D } _ { \\Delta } , \\epsilon ) \\ \\leq \\ 5 ,$ , but ${ \\mathrm { m i n } } \\{ { \\mathrm { m i n } } _ { h \\in [ H ] }$ $\\dim _ { \\operatorname { E } } ( { \\mathcal { F } } _ { h } , \\epsilon )$ , Bellman $\\mathrm { r a n k } \\} \\geq$ $m$ . ",
1059
+ "bbox": [
1060
+ 173,
1061
+ 765,
1062
+ 825,
1063
+ 821
1064
+ ],
1065
+ "page_idx": 6
1066
+ },
1067
+ {
1068
+ "type": "text",
1069
+ "text": "In particular, the family of low BE dimension includes new examples such as kernel reactive POMDPs (Appendix C), which can not be addressed by the framework of either Bellman rank or Eluder dimension. ",
1070
+ "bbox": [
1071
+ 174,
1072
+ 833,
1073
+ 825,
1074
+ 876
1075
+ ],
1076
+ "page_idx": 6
1077
+ },
1078
+ {
1079
+ "type": "text",
1080
+ "text": "1: Initialize: $\\mathcal { D } _ { 1 } , . . . , \\mathcal { D } _ { H } \\emptyset$ , $B ^ { 0 } { \\mathcal { F } }$ . \n2: for episode $k$ from 1 to $K$ do \n3: Choose policy $\\pi ^ { k } = \\pi _ { f ^ { k } }$ , where $f ^ { k } = \\operatorname { a r g m a x } _ { f \\in { \\mathcal { B } } ^ { k - 1 } } f { \\big ( } s _ { 1 } , \\pi _ { f } { \\big ( } s _ { 1 } { \\big ) } { \\big ) }$ . \n4: Collect a trajectory $\\left( s _ { 1 } , a _ { 1 } , r _ { 1 } , \\dots , s _ { H } , a _ { H } , r _ { H } , s _ { H + 1 } \\right)$ by following $\\pi ^ { k }$ . \n5: Augment $\\mathcal { D } _ { h } = \\mathcal { D } _ { h } \\cup \\left\\{ \\left( s _ { h } , a _ { h } , r _ { h } , s _ { h + 1 } \\right) \\right\\}$ for all $h \\in [ H ]$ . \n6: Update \n$\\begin{array} { r l } & { \\mathbf { \\Phi } ^ { \\mathrm { t e } } } \\\\ & { \\quad \\mathcal { B } ^ { k } = \\left\\{ f \\in \\mathcal { F } : \\mathcal { L } _ { \\mathcal { D } _ { h } } ( f _ { h } , f _ { h + 1 } ) \\leq \\displaystyle \\operatorname* { i n f } _ { g \\in \\mathcal { G } _ { h } } \\mathcal { L } _ { \\mathcal { D } _ { h } } ( g , f _ { h + 1 } ) + \\beta \\mathrm { ~ f o r ~ a l l ~ } h \\in [ H ] \\right\\} , } \\\\ & { \\quad \\quad \\mathrm { w h e r e ~ } \\mathcal { L } _ { \\mathcal { D } _ { h } } ( \\xi _ { h } , \\zeta _ { h + 1 } ) = \\displaystyle \\sum _ { ( s , a , r , s ^ { \\prime } ) \\in \\mathcal { D } _ { h } } \\left[ \\xi _ { h } ( s , a ) - r - \\operatorname* { m a x } _ { a ^ { \\prime } \\in \\mathcal { A } } \\zeta _ { h + 1 } ( s ^ { \\prime } , a ^ { \\prime } ) \\right] ^ { 2 } . } \\end{array}$ ",
1081
+ "bbox": [
1082
+ 181,
1083
+ 111,
1084
+ 779,
1085
+ 257
1086
+ ],
1087
+ "page_idx": 7
1088
+ },
1089
+ {
1090
+ "type": "text",
1091
+ "text": "7: Output $\\pi ^ { \\mathrm { { o u t } } }$ sampled uniformly at random from $\\{ \\pi ^ { k } \\} _ { k = 1 } ^ { K }$ ",
1092
+ "bbox": [
1093
+ 179,
1094
+ 258,
1095
+ 583,
1096
+ 275
1097
+ ],
1098
+ "page_idx": 7
1099
+ },
1100
+ {
1101
+ "type": "text",
1102
+ "text": "4 Algorithm GOLF ",
1103
+ "text_level": 1,
1104
+ "bbox": [
1105
+ 174,
1106
+ 303,
1107
+ 349,
1108
+ 320
1109
+ ],
1110
+ "page_idx": 7
1111
+ },
1112
+ {
1113
+ "type": "text",
1114
+ "text": "Section 3 defines a new class of RL problems with low BE dimension, and shows that the new class is rich, containing almost all the existing known tractable RL problems so far. In this section, we propose a new simple optimization-based algorithm—Global Optimism based on Local Fitting (GOLF). We prove that, low BE dimension problems are indeed tractable, i.e., GOLF can find nearoptimal policies for these problems within a polynomial number of samples. ",
1115
+ "bbox": [
1116
+ 173,
1117
+ 333,
1118
+ 825,
1119
+ 405
1120
+ ],
1121
+ "page_idx": 7
1122
+ },
1123
+ {
1124
+ "type": "text",
1125
+ "text": "At a high level, GOLF can be viewed as an optimistic version of the classic algorithm—Fitted QIteration (FQI) [42]. GOLF generalizes the ELEANOR algorithm [8] from the special linear setting to the general setting with arbitrary function classes. ",
1126
+ "bbox": [
1127
+ 174,
1128
+ 410,
1129
+ 825,
1130
+ 452
1131
+ ],
1132
+ "page_idx": 7
1133
+ },
1134
+ {
1135
+ "type": "text",
1136
+ "text": "The pseudocode of GOLF is given in Algorithm 1. GOLF initializes datasets $\\{ \\mathcal { D } _ { h } \\} _ { h = 1 } ^ { H }$ to be empty sets, and confidence set $B ^ { 0 }$ to be $\\mathcal { F }$ . Then, in each episode, GOLF performs two main steps: ",
1137
+ "bbox": [
1138
+ 173,
1139
+ 458,
1140
+ 821,
1141
+ 488
1142
+ ],
1143
+ "page_idx": 7
1144
+ },
1145
+ {
1146
+ "type": "text",
1147
+ "text": "• Line 3 (Optimistic planning): compute the most optimistic value function $f ^ { k }$ from the confidence set $B ^ { k - 1 }$ constructed in the last episode , and choose $\\pi ^ { k }$ to be its greedy policy. • Line 4-6 (Execute the policy and update the confidence set): execute policy $\\pi ^ { k }$ for one episode, collect data, and update the confidence set using the new data. ",
1148
+ "bbox": [
1149
+ 215,
1150
+ 498,
1151
+ 825,
1152
+ 560
1153
+ ],
1154
+ "page_idx": 7
1155
+ },
1156
+ {
1157
+ "type": "text",
1158
+ "text": "At the heart of GOLF is the way we construct the confidence set $B ^ { k }$ . For each $h \\in [ H ]$ , GOLF maintains a local regression constraint using the collected transition data $\\mathcal { D } _ { h }$ at this step ",
1159
+ "bbox": [
1160
+ 176,
1161
+ 570,
1162
+ 825,
1163
+ 599
1164
+ ],
1165
+ "page_idx": 7
1166
+ },
1167
+ {
1168
+ "type": "equation",
1169
+ "img_path": "images/89e3162bbe4ebd2dc51b46a277be3e64f9698f45469ddab5ffcdb46dd2b89975.jpg",
1170
+ "text": "$$\n\\mathcal { L } _ { \\mathcal { D } _ { h } } ( f _ { h } , f _ { h + 1 } ) \\leq \\operatorname* { i n f } _ { g \\in \\mathcal { G } _ { h } } \\mathcal { L } _ { \\mathcal { D } _ { h } } ( g , f _ { h + 1 } ) + \\beta ,\n$$",
1171
+ "text_format": "latex",
1172
+ "bbox": [
1173
+ 356,
1174
+ 606,
1175
+ 640,
1176
+ 631
1177
+ ],
1178
+ "page_idx": 7
1179
+ },
1180
+ {
1181
+ "type": "text",
1182
+ "text": "where $\\beta$ is a confidence parameter, and $\\mathcal { L } _ { \\mathcal { D } _ { h } }$ is the squared loss defined in (2), which can be viewed as a proxy to the squared Bellman error at step $h$ . We remark that FQI algorithm [42] simply updates $\\begin{array} { r } { \\dot { f _ { h } } \\gets \\operatorname * { a r g m i n } _ { \\phi \\in \\mathcal { F } _ { h } } \\mathcal { L } _ { \\mathcal { D } _ { h } } ( \\phi , f _ { h + 1 } ) } \\end{array}$ . Our constraint (3) can be viewed as a relaxed version of this update, which allows $f _ { h }$ to be not only the minimizer of the loss $\\mathcal { L } _ { \\mathcal { D } _ { h } } ( \\cdot , f _ { h + 1 } )$ , but also any function whose loss is only slightly larger than the optimal loss over the auxiliary function class $\\mathcal { G } _ { h }$ . ",
1183
+ "bbox": [
1184
+ 173,
1185
+ 636,
1186
+ 825,
1187
+ 708
1188
+ ],
1189
+ "page_idx": 7
1190
+ },
1191
+ {
1192
+ "type": "text",
1193
+ "text": "We remark that in general, the optimization problem in Line 3 of GOLF can not be solved computationally efficiently. ",
1194
+ "bbox": [
1195
+ 173,
1196
+ 713,
1197
+ 823,
1198
+ 742
1199
+ ],
1200
+ "page_idx": 7
1201
+ },
1202
+ {
1203
+ "type": "text",
1204
+ "text": "4.1 Theoretical guarantees ",
1205
+ "text_level": 1,
1206
+ "bbox": [
1207
+ 174,
1208
+ 758,
1209
+ 372,
1210
+ 773
1211
+ ],
1212
+ "page_idx": 7
1213
+ },
1214
+ {
1215
+ "type": "text",
1216
+ "text": "In this subsection, we present the theoretical guarantees for GOLF, which hold under Assumption 1 (realizability) and the following generalized completeness assumption introduced in [47, 21]. Let $\\mathcal { G } = \\mathcal { G } _ { 1 } \\times \\cdot \\cdot \\cdot \\times \\mathcal { G } _ { H }$ be an auxiliary function class provided to the learner where each ${ \\mathcal { G } } _ { h } \\subseteq ( S \\times { \\mathcal { A } } \\to$ $[ 0 , 1 ] )$ . Generalized completeness requires the auxiliary function class $\\mathcal { G }$ to be rich enough so that applying Bellman operator to any function in the primary function class $\\mathcal { F }$ will end up in $\\mathcal { G }$ . ",
1217
+ "bbox": [
1218
+ 173,
1219
+ 784,
1220
+ 825,
1221
+ 853
1222
+ ],
1223
+ "page_idx": 7
1224
+ },
1225
+ {
1226
+ "type": "text",
1227
+ "text": "Assumption 14 (Generalized completeness). $\\mathcal T _ { h } \\mathcal F _ { h + 1 } \\subseteq \\mathcal G _ { h }$ for all $h \\in [ H ]$ . ",
1228
+ "bbox": [
1229
+ 174,
1230
+ 857,
1231
+ 678,
1232
+ 873
1233
+ ],
1234
+ "page_idx": 7
1235
+ },
1236
+ {
1237
+ "type": "text",
1238
+ "text": "If we choose $\\mathcal { G } = \\mathcal { F }$ , then Assumption 14 is equivalent to the standard completeness assumption (Assumption 2). Now, we are ready to present the main theorem for GOLF. ",
1239
+ "bbox": [
1240
+ 173,
1241
+ 882,
1242
+ 821,
1243
+ 911
1244
+ ],
1245
+ "page_idx": 7
1246
+ },
1247
+ {
1248
+ "type": "text",
1249
+ "text": "Theorem 15 (Regret of GOLF). Under Assumption $^ { l }$ , 14, there exists an absolute constant c such that for any $\\delta \\in ( 0 , 1 ]$ , $K \\in \\mathbb N$ , if we choose parameter $\\beta = c \\log [ \\mathcal { N _ { F \\cup \\mathcal { G } } } ( 1 / K ) \\cdot K H / \\delta ]$ in GOLF, then with probability at least $1 - \\delta$ , for all $k \\in [ K ]$ , we have ",
1250
+ "bbox": [
1251
+ 173,
1252
+ 90,
1253
+ 825,
1254
+ 135
1255
+ ],
1256
+ "page_idx": 8
1257
+ },
1258
+ {
1259
+ "type": "equation",
1260
+ "img_path": "images/e31567478f5dd79e645aed2d066a7489289e0c68fd08faf4586a9cb8e7a42526.jpg",
1261
+ "text": "$$\n\\mathrm { R e g } ( k ) = \\sum _ { t = 1 } ^ { k } \\Big [ V _ { 1 } ^ { \\star } \\big ( s _ { 1 } \\big ) - V _ { 1 } ^ { \\pi ^ { t } } \\big ( s _ { 1 } \\big ) \\Big ] \\leq \\mathcal { O } ( H \\sqrt { d k \\beta } ) ,\n$$",
1262
+ "text_format": "latex",
1263
+ "bbox": [
1264
+ 323,
1265
+ 140,
1266
+ 673,
1267
+ 183
1268
+ ],
1269
+ "page_idx": 8
1270
+ },
1271
+ {
1272
+ "type": "text",
1273
+ "text": "where $\\begin{array} { r } { d = \\operatorname* { m i n } _ { \\Pi \\in \\{ \\mathcal { D } _ { \\Delta } , \\mathcal { D } _ { \\mathcal { F } } \\} } \\mathrm { d i m } _ { \\mathrm { B E } } \\left( \\mathcal { F } , \\Pi , 1 / \\sqrt { K } \\right) } \\end{array}$ is the BE dimension. ",
1274
+ "bbox": [
1275
+ 174,
1276
+ 189,
1277
+ 642,
1278
+ 208
1279
+ ],
1280
+ "page_idx": 8
1281
+ },
1282
+ {
1283
+ "type": "text",
1284
+ "text": "Theorem 15 asserts that, under the realizability and completeness assumptions, the general class of RL problems with low BE dimension is indeed tractable: there exists an algorithm (GOLF) that can achieve $\\sqrt { K }$ regret, whose multiplicative factor depends only polynomially on the horizon of MDP $H$ , the BE dimension $d$ , and the log covering number of the two function classes. Most importantly, the regret is independent of the number of the states, which is crucial for dealing with practical RL problems with function approximation, where the state spaces are typically exponentially large. ",
1285
+ "bbox": [
1286
+ 173,
1287
+ 215,
1288
+ 826,
1289
+ 301
1290
+ ],
1291
+ "page_idx": 8
1292
+ },
1293
+ {
1294
+ "type": "text",
1295
+ "text": "We remark that when function class ${ \\mathcal { F } } \\cup { \\mathcal { G } }$ has finite number of elements, its covering number is upper bounded by its cardinality $| { \\mathcal { F } } \\cup { \\mathcal { G } } |$ . For a wide range of function classes in practice, the log $\\epsilon ^ { \\prime }$ -covering number has only logarithmic dependence on $\\epsilon ^ { \\prime }$ . Informally, we denote the log covering number as $\\log \\mathcal { N } _ { \\mathcal { F } \\cup \\mathcal { G } }$ and omit its $\\epsilon ^ { \\prime }$ dependency for clean presentation. Theorem 15 claims that the regret scales as $\\tilde { \\mathcal { O } } ( H \\sqrt { d K \\log \\mathcal { N _ { F \\cup \\mathcal { G } } } } )$ , where $\\bar { \\tilde { \\mathcal { O } } } ( \\cdot )$ omits absolute constants and logarithmic terms.4 ",
1296
+ "bbox": [
1297
+ 173,
1298
+ 306,
1299
+ 825,
1300
+ 381
1301
+ ],
1302
+ "page_idx": 8
1303
+ },
1304
+ {
1305
+ "type": "text",
1306
+ "text": "By the standard online-to-batch argument, we also derive the sample complexity of GOLF. ",
1307
+ "bbox": [
1308
+ 171,
1309
+ 385,
1310
+ 766,
1311
+ 400
1312
+ ],
1313
+ "page_idx": 8
1314
+ },
1315
+ {
1316
+ "type": "text",
1317
+ "text": "Corollary 16 (Sample Complexity of GOLF). Under Assumption 1, 2, there exists an absolute constant c such that for any $\\epsilon \\in ( 0 , 1 ] ,$ , if we choose $\\beta = c \\log [ \\mathcal { N _ { F \\cup \\mathcal { G } } } ( \\epsilon ^ { 2 } / ( d H ^ { 2 } ) ) \\cdot H K ]$ in GOLF, then the output policy $\\pi ^ { o u t }$ is $\\mathcal { O } ( \\epsilon )$ -optimal with probability at least $1 / 2 , i f$ ",
1318
+ "bbox": [
1319
+ 176,
1320
+ 404,
1321
+ 823,
1322
+ 446
1323
+ ],
1324
+ "page_idx": 8
1325
+ },
1326
+ {
1327
+ "type": "equation",
1328
+ "img_path": "images/7443575baee63ee3c220a986051406e313ac03fa624834ad6fefdf70f66a589c.jpg",
1329
+ "text": "$$\nK \\geq \\Omega \\left( \\frac { H ^ { 2 } d } { \\epsilon ^ { 2 } } \\cdot \\log \\left[ \\mathcal { N } _ { \\mathcal { F } \\cup \\mathcal { G } } \\left( \\frac { \\epsilon ^ { 2 } } { H ^ { 2 } d } \\right) \\cdot \\frac { H d } { \\epsilon } \\right] \\right) ,\n$$",
1330
+ "text_format": "latex",
1331
+ "bbox": [
1332
+ 339,
1333
+ 452,
1334
+ 655,
1335
+ 487
1336
+ ],
1337
+ "page_idx": 8
1338
+ },
1339
+ {
1340
+ "type": "text",
1341
+ "text": "where $\\begin{array} { r } { d = \\operatorname* { m i n } _ { \\Pi \\in \\{ \\mathcal { D } _ { \\Delta } , \\mathcal { D } _ { \\mathcal { F } } \\} } \\mathrm { d i m } _ { \\mathrm { B E } } \\left( \\mathcal { F } , \\Pi , \\epsilon / H \\right) } \\end{array}$ is the BE dimension. ",
1342
+ "bbox": [
1343
+ 174,
1344
+ 492,
1345
+ 625,
1346
+ 511
1347
+ ],
1348
+ "page_idx": 8
1349
+ },
1350
+ {
1351
+ "type": "text",
1352
+ "text": "Corollary 16 claims that $\\tilde { \\mathcal { O } } ( H ^ { 2 } d \\log ( \\mathcal { N } _ { \\mathcal { F } \\cup \\mathcal { G } } ) / \\epsilon ^ { 2 } )$ samples are enough for GOLF to learn a nearoptimal policy of any low BE dimension problem. Our sample complexity scales linear in both the BE dimension $d$ , and the log covering number $\\log ( \\mathcal { N } _ { \\mathcal { F } \\cup \\mathcal { G } } )$ . ",
1353
+ "bbox": [
1354
+ 174,
1355
+ 521,
1356
+ 825,
1357
+ 565
1358
+ ],
1359
+ "page_idx": 8
1360
+ },
1361
+ {
1362
+ "type": "text",
1363
+ "text": "To showcase the sharpness of our results, we compare them to the previous results when restricted to the corresponding settings. (1) For linear function class with ambient dimension $d _ { \\mathrm { l i n } }$ , we have√ BE dimension $d = \\mathcal { \\tilde { O } } ( d _ { \\mathrm { l i n } } )$ and $\\log ( \\mathcal { N _ { F \\cup \\mathcal { G } } } ) = \\tilde { \\mathcal { O } } ( d _ { \\mathrm { l i n } } )$ . Our regret bound becomes $\\tilde { \\mathcal { O } } ( H d _ { \\mathrm { l i n } } \\sqrt { K } )$ which matches the best known result [8] up to logarithmic factors; (2) For function class with low Eluder dimension [17], our results hold under weaker completeness assumptions. Our regret scales√ with $\\sqrt { d _ { \\mathrm { E } } }$ in terms of dependency on Eluder dimension $d _ { \\mathrm { E } }$ , which improves the linear $d _ { \\mathrm { E } }$ scaling in the regret of [17]; (3) Finally, for low Bellman rank problems, our sample complexity scales linearly with Bellman rank, which improves upon the quadratic dependence in [1]. We remark that all results mentioned above assume (approximate) realizability. All except [1] assume (approximate) completeness. ",
1364
+ "bbox": [
1365
+ 173,
1366
+ 570,
1367
+ 825,
1368
+ 712
1369
+ ],
1370
+ "page_idx": 8
1371
+ },
1372
+ {
1373
+ "type": "text",
1374
+ "text": "4.2 Key ideas in proving Theorem 15 ",
1375
+ "text_level": 1,
1376
+ "bbox": [
1377
+ 174,
1378
+ 727,
1379
+ 442,
1380
+ 742
1381
+ ],
1382
+ "page_idx": 8
1383
+ },
1384
+ {
1385
+ "type": "text",
1386
+ "text": "In this subsection, we present a brief proof sketch for the regret bound of GOLF. We defer all the details to Appendix E. For simplicity, we only discuss the case of choosing $\\mathcal { D } _ { \\mathcal { F } }$ as the distribution family $\\Pi$ in the definition of Bellman Eluder dimension (Definition 8). The proof for using $\\mathcal { D } _ { \\Delta }$ as the distribution family follows from similar arguments. ",
1387
+ "bbox": [
1388
+ 173,
1389
+ 752,
1390
+ 825,
1391
+ 809
1392
+ ],
1393
+ "page_idx": 8
1394
+ },
1395
+ {
1396
+ "type": "text",
1397
+ "text": "Our proof strategy consists of three main steps. ",
1398
+ "bbox": [
1399
+ 174,
1400
+ 815,
1401
+ 482,
1402
+ 829
1403
+ ],
1404
+ "page_idx": 8
1405
+ },
1406
+ {
1407
+ "type": "text",
1408
+ "text": "Step 1: Prove optimism. We firstly show that, with high probability, the optimal value function $Q ^ { \\star }$ indeed lies in the confidence set $B ^ { k }$ for all $k \\in [ K ]$ (Lemma 40 in Appendix E.1), which is a natural consequence of martingale concentration and the properties of the confidence set we designed. Because of $Q ^ { \\star } \\in B ^ { k }$ , the optimistic planning step (Line 3) in GOLF guarantees that $V _ { 1 } ^ { \\star } ( \\mathsf { \\bar { s } } _ { 1 } ) \\leq \\operatorname* { m a x } _ { a } f _ { 1 } ^ { k } ( s _ { 1 } , \\mathsf { \\bar { a } } )$ for every episode $k$ . This optimism allows the following upper bound on regret ",
1409
+ "bbox": [
1410
+ 173,
1411
+ 843,
1412
+ 825,
1413
+ 873
1414
+ ],
1415
+ "page_idx": 8
1416
+ },
1417
+ {
1418
+ "type": "text",
1419
+ "text": "",
1420
+ "bbox": [
1421
+ 173,
1422
+ 90,
1423
+ 825,
1424
+ 147
1425
+ ],
1426
+ "page_idx": 9
1427
+ },
1428
+ {
1429
+ "type": "equation",
1430
+ "img_path": "images/bb189fdc09bb764e7ba53689d725ea8b3734e362b81e50ceee1a8c8229146624.jpg",
1431
+ "text": "$$\n\\mathrm { R e g } ( K ) \\leq \\sum _ { k = 1 } ^ { K } \\left( \\operatorname* { m a x } _ { a } f _ { 1 } ^ { k } ( s _ { 1 } , a ) - V _ { 1 } ^ { \\pi ^ { k } } ( s _ { 1 } ) \\right) = \\sum _ { h = 1 } ^ { H } \\sum _ { k = 1 } ^ { K } \\mathbb { E } _ { \\pi ^ { k } } \\left[ ( f _ { h } ^ { k } - \\mathcal { T } f _ { h + 1 } ^ { k } ) ( s _ { h } , a _ { h } ) \\right] ,\n$$",
1432
+ "text_format": "latex",
1433
+ "bbox": [
1434
+ 212,
1435
+ 154,
1436
+ 784,
1437
+ 198
1438
+ ],
1439
+ "page_idx": 9
1440
+ },
1441
+ {
1442
+ "type": "text",
1443
+ "text": "where the right equality follows from the standard policy loss decomposition (see, e.g., Lemma 1 in [1]), and $\\mathbb { E } _ { \\pi }$ denotes the expectation taken over sequence $( s _ { 1 } , a _ { 1 } , \\dotsc , s _ { H } , a _ { H } )$ when executing policy $\\pi$ . ",
1444
+ "bbox": [
1445
+ 173,
1446
+ 203,
1447
+ 826,
1448
+ 246
1449
+ ],
1450
+ "page_idx": 9
1451
+ },
1452
+ {
1453
+ "type": "text",
1454
+ "text": "Step 2: Utilize the sharpness of our confidence set. Recall that our construction of the confidence set in Line 6 of GOLF forces $f ^ { k }$ computed in episode $k$ to have a small loss $\\mathcal { L } _ { \\mathcal { D } _ { h } }$ , which is a proxy for empirical squared Bellman error under data $\\mathcal { D } _ { h }$ . Since data $\\mathcal { D } _ { h }$ in episode $k$ are collected by executing each $\\pi ^ { i }$ for one episode for all $i < k$ , by standard martingale concentration arguments and the completeness assumption, we can show that with high probability (Lemma 39 in Appendix E.1) ",
1455
+ "bbox": [
1456
+ 173,
1457
+ 258,
1458
+ 825,
1459
+ 340
1460
+ ],
1461
+ "page_idx": 9
1462
+ },
1463
+ {
1464
+ "type": "equation",
1465
+ "img_path": "images/0fa7cd064dedc9d689f336698477714ab20071e31d29bf1111cb94a90e3a185d.jpg",
1466
+ "text": "$$\n\\sum _ { i = 1 } ^ { k - 1 } \\mathbb { E } _ { \\pi ^ { i } } \\left[ ( f _ { h } ^ { k } - \\mathcal { T } f _ { h + 1 } ^ { k } ) ( s _ { h } , a _ { h } ) \\right] ^ { 2 } \\leq \\mathcal { O } ( \\beta ) , \\mathrm { ~ f o r ~ a l l ~ } ( k , h ) \\in [ K ] \\times [ H ] .\n$$",
1467
+ "text_format": "latex",
1468
+ "bbox": [
1469
+ 266,
1470
+ 334,
1471
+ 735,
1472
+ 377
1473
+ ],
1474
+ "page_idx": 9
1475
+ },
1476
+ {
1477
+ "type": "text",
1478
+ "text": "Step 3: Establish relations between (4) and (5). So far, we want to upper-bound (4), while we know (5). We note that the RHS of (4) is very similar to the LHS of (5), except that the latter is the squared Bellman error, and the expectation is taken under previous policy $\\pi ^ { i }$ for $i < k$ . To establish the connection between these two, it turns out that we need the Bellman Eluder dimension to be small. Concretely, we have the following lemma. ",
1479
+ "bbox": [
1480
+ 173,
1481
+ 390,
1482
+ 825,
1483
+ 460
1484
+ ],
1485
+ "page_idx": 9
1486
+ },
1487
+ {
1488
+ "type": "text",
1489
+ "text": "Lemma 17. Given a function class $\\Phi$ defined on $\\mathcal { X }$ with $| \\phi ( x ) | \\le 1$ for all $( \\phi , x ) \\in \\Phi \\times \\mathcal { X }$ , and $a$ family of probability measures $\\Pi$ over $\\mathcal { X }$ . Suppose sequence $\\{ \\phi _ { k } \\} _ { k = 1 } ^ { K } \\subset \\dot { \\Phi }$ and $\\{ \\mu _ { k } \\} _ { k = 1 } ^ { K } \\subset \\Pi$ satisfy that for all $k \\in [ K ] ,$ , $\\begin{array} { r } { \\sum _ { i = 1 } ^ { k - 1 } ( \\mathbb { E } _ { \\mu _ { i } } [ \\phi _ { k } ] ) ^ { 2 } \\ : \\leq \\ : \\beta } \\end{array}$ . Then for all $k \\in [ K ]$ , $\\begin{array} { r } { \\sum _ { i = 1 } ^ { k } | \\mathbb { E } _ { \\mu _ { i } } [ \\phi _ { i } ] | \\ \\leq } \\end{array}$ $\\mathcal { O } ( \\sqrt { \\mathrm { d i m } _ { \\mathrm { D E } } ( \\Phi , \\Pi , 1 / k ) \\beta k } )$ . ",
1490
+ "bbox": [
1491
+ 173,
1492
+ 463,
1493
+ 825,
1494
+ 527
1495
+ ],
1496
+ "page_idx": 9
1497
+ },
1498
+ {
1499
+ "type": "text",
1500
+ "text": "Lemma 17 is a simplification of Lemma 41 in Appendix E, which is a modification of Lemma 2 in [18]. Intuitively, Lemma 17 can be viewed as an analogue of the pigeon-hole principle for DE dimension. Choose $\\Phi$ to be the function class of Bellman residuals, and $\\mu _ { k }$ to be the distribution under policy $\\pi ^ { k }$ , we finish the proof. ",
1501
+ "bbox": [
1502
+ 173,
1503
+ 536,
1504
+ 825,
1505
+ 593
1506
+ ],
1507
+ "page_idx": 9
1508
+ },
1509
+ {
1510
+ "type": "text",
1511
+ "text": "5 Conclusion ",
1512
+ "text_level": 1,
1513
+ "bbox": [
1514
+ 173,
1515
+ 612,
1516
+ 299,
1517
+ 630
1518
+ ],
1519
+ "page_idx": 9
1520
+ },
1521
+ {
1522
+ "type": "text",
1523
+ "text": "In this paper, we propose a new complexity measure—Bellman Eluder (BE) dimension for reinforcement learning with function approximation. Our new complexity measure identifies a new rich class of RL problems that subsumes a majority of existing tractable problem classes in RL. We design a new optimization-based algorithm—GOLF, and provide a new analysis for algorithm OLIVE. Both algorithms show that the new rich class of RL problems we identified in fact can be learned within a polynomial number of samples. We hope our results shed light on the future research in finding the minimal structural assumptions that allow sample-efficient reinforcement learning. ",
1524
+ "bbox": [
1525
+ 173,
1526
+ 643,
1527
+ 825,
1528
+ 741
1529
+ ],
1530
+ "page_idx": 9
1531
+ },
1532
+ {
1533
+ "type": "text",
1534
+ "text": "Acknowledgement ",
1535
+ "text_level": 1,
1536
+ "bbox": [
1537
+ 176,
1538
+ 760,
1539
+ 330,
1540
+ 777
1541
+ ],
1542
+ "page_idx": 9
1543
+ },
1544
+ {
1545
+ "type": "text",
1546
+ "text": "This work was partial supported by National Science Foundation Grant NSF-IIS-2107304. ",
1547
+ "bbox": [
1548
+ 171,
1549
+ 791,
1550
+ 764,
1551
+ 806
1552
+ ],
1553
+ "page_idx": 9
1554
+ },
1555
+ {
1556
+ "type": "text",
1557
+ "text": "References \n[1] Nan Jiang, Akshay Krishnamurthy, Alekh Agarwal, John Langford, and Robert E Schapire. Contextual decision processes with low bellman rank are pac-learnable. In International Conference on Machine Learning, pages 1704–1713. PMLR, 2017. \n[2] Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. arXiv preprint arXiv:1312.5602, 2013. \n[3] David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. nature, 529 (7587):484–489, 2016. \n[4] Jens Kober, J Andrew Bagnell, and Jan Peters. Reinforcement learning in robotics: A survey. The International Journal of Robotics Research, 32(11):1238–1274, 2013. \n[5] Jiwei Li, Will Monroe, Alan Ritter, Michel Galley, Jianfeng Gao, and Dan Jurafsky. Deep reinforcement learning for dialogue generation. arXiv preprint arXiv:1606.01541, 2016. \n[6] Yining Wang, Ruosong Wang, Simon S Du, and Akshay Krishnamurthy. Optimism in reinforcement learning with generalized linear function approximation. arXiv preprint arXiv:1912.04136, 2019. \n[7] Chi Jin, Zhuoran Yang, Zhaoran Wang, and Michael I Jordan. Provably efficient reinforcement learning with linear function approximation. In Conference on Learning Theory, pages 2137– 2143, 2020. \n[8] Andrea Zanette, Alessandro Lazaric, Mykel Kochenderfer, and Emma Brunskill. Learning near optimal policies with low inherent bellman error. arXiv preprint arXiv:2003.00153, 2020. \n[9] Brian DO Anderson and John B Moore. Optimal control: linear quadratic methods. Courier Corporation, 2007. \n[10] Maryam Fazel, Rong Ge, Sham Kakade, and Mehran Mesbahi. Global convergence of policy gradient methods for the linear quadratic regulator. In International Conference on Machine Learning, pages 1467–1476. PMLR, 2018. \n[11] Sarah Dean, Horia Mania, Nikolai Matni, Benjamin Recht, and Stephen Tu. On the sample complexity of the linear quadratic regulator. Foundations of Computational Mathematics, pages 1–47, 2019. \n[12] Vladimir Vapnik. The nature of statistical learning theory. Springer science & business media, 2013. \n[13] Peter L Bartlett and Shahar Mendelson. Rademacher and gaussian complexities: Risk bounds and structural results. Journal of Machine Learning Research, 3(Nov):463–482, 2002. \n[14] Nick Littlestone. Learning quickly when irrelevant attributes abound: A new linear-threshold algorithm. Machine learning, 2(4):285–318, 1988. \n[15] Alexander Rakhlin, Karthik Sridharan, and Ambuj Tewari. Online learning: Random averages, combinatorial parameters, and learnability. 2010. \n[16] Akshay Krishnamurthy, Alekh Agarwal, and John Langford. Pac reinforcement learning with rich observations. arXiv preprint arXiv:1602.02722, 2016. \n[17] Ruosong Wang, Ruslan Salakhutdinov, and Lin F Yang. Provably efficient reinforcement learning with general value function approximation. arXiv preprint arXiv:2005.10804, 2020. \n[18] Daniel Russo and Benjamin Van Roy. Eluder dimension and the sample complexity of optimistic exploration. In Advances in Neural Information Processing Systems, pages 2256–2264, 2013. \n[19] Csaba Szepesvari and R ´ emi Munos. Finite time bounds for sampling based fitted value it- ´ eration. In Proceedings of the 22nd international conference on Machine learning, pages 880–887, 2005. \n[20] Remi Munos and Csaba Szepesv ´ ari. Finite-time bounds for fitted value iteration. ´ Journal of Machine Learning Research, 9(May):815–857, 2008. \n[21] Jinglin Chen and Nan Jiang. Information-theoretic considerations in batch reinforcement learning. arXiv preprint arXiv:1905.00360, 2019. \n[22] Tengyang Xie and Nan Jiang. Batch value-function approximation with only realizability. arXiv preprint arXiv:2008.04990, 2020. \n[23] Ronen I Brafman and Moshe Tennenholtz. R-max-a general polynomial time algorithm for near-optimal reinforcement learning. Journal of Machine Learning Research, 3(Oct):213–231, 2002. \n[24] Thomas Jaksch, Ronald Ortner, and Peter Auer. Near-optimal regret bounds for reinforcement learning. Journal of Machine Learning Research, 11(4), 2010. \n[25] Christoph Dann and Emma Brunskill. Sample complexity of episodic fixed-horizon reinforcement learning. In Advances in Neural Information Processing Systems, pages 2818–2826, 2015. \n[26] Shipra Agrawal and Randy Jia. Optimistic posterior sampling for reinforcement learning: worst-case regret bounds. In Advances in Neural Information Processing Systems, pages 1184– 1194, 2017. \n[27] Mohammad Gheshlaghi Azar, Ian Osband, and Remi Munos. Minimax regret bounds for ´ reinforcement learning. arXiv preprint arXiv:1703.05449, 2017. \n[28] Andrea Zanette and Emma Brunskill. Tighter problem-dependent regret bounds in reinforcement learning without domain knowledge using value function bounds. arXiv preprint arXiv:1901.00210, 2019. \n[29] Chi Jin, Zeyuan Allen-Zhu, Sebastien Bubeck, and Michael I Jordan. Is q-learning provably efficient? In Advances in Neural Information Processing Systems, pages 4863–4873, 2018. \n[30] Zihan Zhang, Yuan Zhou, and Xiangyang Ji. Almost optimal model-free reinforcement learning via reference-advantage decomposition. arXiv preprint arXiv:2004.10019, 2020. \n[31] Omar Darwiche Domingues, Pierre Menard, Emilie Kaufmann, and Michal Valko. Episodic ´ reinforcement learning in finite mdps: Minimax lower bounds revisited. In Algorithmic Learning Theory, pages 578–598. PMLR, 2021. \n[32] Qi Cai, Zhuoran Yang, Chi Jin, and Zhaoran Wang. Provably efficient exploration in policy optimization. arXiv preprint arXiv:1912.05830, 2019. \n[33] Andrea Zanette, Alessandro Lazaric, Mykel J Kochenderfer, and Emma Brunskill. Provably efficient reward-agnostic navigation with linear value iteration. Advances in Neural Information Processing Systems, 33, 2020. \n[34] Alekh Agarwal, Sham Kakade, Akshay Krishnamurthy, and Wen Sun. Flambe: Structural complexity and representation learning of low rank mdps. Advances in Neural Information Processing Systems, 33, 2020. \n[35] Gergely Neu and Ciara Pike-Burke. A unifying view of optimism in episodic reinforcement learning. Advances in Neural Information Processing Systems, 33, 2020. \n[36] Wen Sun, Nan Jiang, Akshay Krishnamurthy, Alekh Agarwal, and John Langford. Modelbased rl in contextual decision processes: Pac bounds and exponential improvements over model-free approaches. In Conference on Learning Theory, pages 2898–2933, 2019. \n[37] Ian Osband and Benjamin Van Roy. Model-based reinforcement learning and the eluder dimension. In Advances in Neural Information Processing Systems, pages 1466–1474, 2014. \n[38] Kefan Dong, Jian Peng, Yining Wang, and Yuan Zhou. Root-n-regret for learning in markov decision processes with function approximation and low bellman rank. In Conference on Learning Theory, pages 1554–1557. PMLR, 2020. \n[39] Zhuoran Yang, Chi Jin, Zhaoran Wang, Mengdi Wang, and Michael I Jordan. Bridging exploration and general function approximation in reinforcement learning: Provably efficient kernel and neural value iterations. arXiv preprint arXiv:2011.04622, 2020. \n[40] Dylan J Foster, Alexander Rakhlin, David Simchi-Levi, and Yunzong Xu. Instance-dependent complexity of contextual bandits and reinforcement learning: A disagreement-based perspective. arXiv preprint arXiv:2010.03104, 2020. \n[41] Simon S Du, Sham M Kakade, Jason D Lee, Shachar Lovett, Gaurav Mahajan, Wen Sun, and Ruosong Wang. Bilinear classes: A structural framework for provable generalization in rl. arXiv preprint arXiv:2103.10897, 2021. \n[42] Csaba Szepesvari. Algorithms for reinforcement learning. ´ Synthesis lectures on artificial intelligence and machine learning, 4(1):1–103, 2010. \n[43] Martin L Puterman. Markov decision processes: discrete stochastic dynamic programming. John Wiley & Sons, 2014. \n[44] Gellert Weisz, Philip Amortila, and Csaba Szepesvari. Exponential lower bounds for ´ planning in mdps with linearly-realizable optimal action-value functions. arXiv preprint arXiv:2010.01374, 2020. \n[45] Martin J Wainwright. High-dimensional statistics: A non-asymptotic viewpoint, volume 48. Cambridge University Press, 2019. \n[46] Satinder Singh, Michael James, and Matthew Rudary. Predictive state representations: A new theory for modeling dynamical systems. arXiv preprint arXiv:1207.4167, 2012. \n[47] Andras Antos, Csaba Szepesv ´ ari, and R ´ emi Munos. Learning near-optimal policies with ´ bellman-residual minimization based fitted policy iteration and a single sample path. Machine Learning, 71(1):89–129, 2008. \n[48] Christoph Dann, Nan Jiang, Akshay Krishnamurthy, Alekh Agarwal, John Langford, and Robert E Schapire. On oracle-efficient pac rl with rich observations. In Advances in neural information processing systems, pages 1422–1432, 2018. \n[49] Alekh Agarwal, Daniel Hsu, Satyen Kale, John Langford, Lihong Li, and Robert Schapire. Taming the monster: A fast and simple algorithm for contextual bandits. In International Conference on Machine Learning, pages 1638–1646, 2014. ",
1558
+ "bbox": [
1559
+ 173,
1560
+ 87,
1561
+ 826,
1562
+ 915
1563
+ ],
1564
+ "page_idx": 10
1565
+ },
1566
+ {
1567
+ "type": "text",
1568
+ "text": "",
1569
+ "bbox": [
1570
+ 169,
1571
+ 79,
1572
+ 826,
1573
+ 916
1574
+ ],
1575
+ "page_idx": 11
1576
+ },
1577
+ {
1578
+ "type": "text",
1579
+ "text": "",
1580
+ "bbox": [
1581
+ 171,
1582
+ 88,
1583
+ 826,
1584
+ 647
1585
+ ],
1586
+ "page_idx": 12
1587
+ }
1588
+ ]
parse/train/b8Kl8mcK6tb/b8Kl8mcK6tb_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/b8Kl8mcK6tb/b8Kl8mcK6tb_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/rygf-kSYwH/rygf-kSYwH.md ADDED
@@ -0,0 +1,464 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Behaviour Suite for Reinforcement Learning
2
+
3
+ Ian Osband∗, Yotam Doron, Matteo Hessel, John Aslanides Eren Sezener, Andre Saraiva, Katrina McKinney, Tor Lattimore, Csaba Szepesvari Satinder Singh, Benjamin Van Roy, Richard Sutton, David Silver, Hado Van Hasselt
4
+
5
+ DeepMind
6
+
7
+ # Abstract
8
+
9
+ This paper introduces the Behaviour Suite for Reinforcement Learning, or bsuite for short. bsuite is a collection of carefully-designed experiments that investigate core capabilities of reinforcement learning (RL) agents with two objectives. First, to collect clear, informative and scalable problems that capture key issues in the design of general and efficient learning algorithms. Second, to study agent behaviour through their performance on these shared benchmarks. To complement this effort, we open source github.com/deepmind/bsuite, which automates evaluation and analysis of any agent on bsuite. This library facilitates reproducible and accessible research on the core issues in RL, and ultimately the design of superior learning algorithms. Our code is Python, and easy to use within existing projects. We include examples with OpenAI Baselines, Dopamine as well as new reference implementations. Going forward, we hope to incorporate more excellent experiments from the research community, and commit to a periodic review of bsuite from a committee of prominent researchers.
10
+
11
+ # 1 Introduction
12
+
13
+ The reinforcement learning (RL) problem describes an agent interacting with an environment with the goal of maximizing cumulative reward through time (Sutton $\&$ Barto, 2017). Unlike other branches of control, the dynamics of the environment are not fully known to the agent, but can be learned through experience. Unlike other branches of statistics and machine learning, an RL agent must consider the effects of its actions upon future experience. An efficient RL agent must address three challenges simultaneously:
14
+
15
+ 1. Generalization: be able to learn efficiently from data it collects.
16
+ 2. Exploration: prioritize the right experience to learn from.
17
+ 3. Long-term consequences: consider effects beyond a single timestep.
18
+
19
+ The great promise of reinforcement learning are agents that can learn to solve a wide range of important problems. According to some definitions, an agent that can learn to perform at or above human level across a wide variety of tasks is an artificial general intelligence (AGI) (Minsky, 1961; Legg et al., 2007).
20
+
21
+ Interest in artificial intelligence has undergone a resurgence in recent years. Part of this interest is driven by the constant stream of innovation and success on high profile challenges previously deemed impossible for computer systems. Improvements in image recognition are a clear example of these accomplishments, progressing from individual digit recognition (LeCun et al., 1998), to mastering ImageNet in only a few years (Deng et al., 2009; Krizhevsky et al., 2012). The advances in RL systems have been similarly impressive: from checkers (Samuel, 1959), to Backgammon (Tesauro, 1995), to Atari games (Mnih et al., 2015a), to competing with professional players at DOTA (Pachocki et al., 2019) or StarCraft (Vinyals et al., 2019) and beating world champions at Go (Silver et al., 2016). Outside of playing games, decision systems are increasingly guided by AI systems (Evans & Gao, 2016).
22
+
23
+ As we look towards the next great challenges for RL and AI, we need to understand our systems better (Henderson et al., 2017). This includes the scalability of our RL algorithms, the environments where we expect them to perform well, and the key issues outstanding in the design of a general intelligence system. We have the existence proof that a single self-learning RL agent can master the game of Go purely from self-play (Silver et al., 2018). We do not have a clear picture of whether such a learning algorithm will perform well at driving a car, or managing a power plant. If we want to take the next leaps forward, we need to continue to enhance our understanding.
24
+
25
+ # 1.1 Practical theory often lags practical algorithms
26
+
27
+ The practical success of RL algorithms has built upon a base of theory including gradient descent (Bottou, 2010), temporal difference learning (Sutton, 1988) and other foundational algorithms. Good theory provides insight into our algorithms beyond the particular, and a route towards general improvements beyond ad-hoc tinkering. As the psychologist Kurt Lewin said, ‘there is nothing as practical as good theory’ (Lewin, 1943). If we hope to use RL to tackle important problems, then we must continue to solidify these foundations. This need is particularly clear for RL with nonlinear function approximation, or ‘deep RL’. At the same time, theory often lags practice, particularly in difficult problems. We should not avoid practical progress that can be made before we reach a full theoretical understanding. The successful development of algorithms and theory typically moves in tandem, with each side enriched by the insights of the other.
28
+
29
+ The evolution of neural network research, or deep learning, provides a poignant illustration of how theory and practice can develop together (LeCun et al., 2015). Many of the key ideas for deep learning have been around, and with successful demonstrations, for many years before the modern deep learning explosion (Rosenblatt, 1958; Ivakhnenko, 1968; Fukushima, 1979). However, most of these techniques remained outside the scope of developed learning theory, partly due to their complex and non-convex loss functions. Much of the field turned away from these techniques in a ‘neural network winter’, focusing instead of function approximation under convex loss (Cortes & Vapnik, 1995). These convex methods were almost completely dominant until the emergence of benchmark problems, mostly for image recognition, where deep learning methods were able to clearly and objectively demonstrate their superiority (LeCun et al., 1998; Krizhevsky et al., 2012). It is only now, several years after these high profile successes, that learning theory has begun to turn its attention back to deep learning (Kawaguchi, 2016; Bartlett et al., 2017; Belkin et al., 2018). The current theory of deep RL is still in its infancy. In the absence of a comprehensive theory, the community needs principled benchmarks that help to develop an understanding of the strengths and weakenesses of our algorithms.
30
+
31
+ # 1.2 An ‘MNIST’ for reinforcement learning
32
+
33
+ In this paper we introduce the Behaviour Suite for Reinforcement Learning (or bsuite for short): a collection of experiments designed to highlight key aspects of agent scalability. Our aim is that these experiments can help provide a bridge between theory and practice, with benefits to both sides. These experiments embody fundamental issues, such as ‘exploration’ or ‘memory’ in a way that can be easily tested and iterated. For the development of theory, they force us to instantiate measurable and falsifiable hypotheses that we might later formalize into provable guarantees. While a full theory of RL may remain out of reach, the development of clear experiments that instantiate outstanding challenges for the field is a powerful driver for progress. We provide a description of the current suite of experiments and the key issues they identify in Section 2.
34
+
35
+ Our work on bsuite is part of a research process, rather than a final offering. We do not claim to capture all, or even most, of the important issues in RL. Instead, we hope to provide a simple library that collects the best available experiments, and makes them easily accessible to the community. As part of an ongoing commitment, we are forming a bsuite committee that will periodically review the experiments included in the official bsuite release. We provide more details on what makes an ‘excellent’ experiment in Section 2, and on how to engage in their construction for future iterations in Section 5.
36
+
37
+ The Behaviour Suite for Reinforcement Learning is a not a replacement for ‘grand challenge’ undertakings in artificial intelligence, or a leaderboard to climb. Instead it is a collection of diagnostic experiments designed to provide insight into key aspects of agent behaviour. Just as the MNIST dataset offers a clean, sanitised, test of image recognition as a stepping stone to advanced computer vision; so too bsuite aims to instantiate targeted experiments for the development of key RL capabilities.
38
+
39
+ The successful use of illustrative benchmark problems is not unique to machine learning, and our work is similar in spirit to the Mixed Integer Programming Library (MIPLIB) (miplib2017). In mixed integer programming, and unlike linear programming, the majority of algorithmic advances have (so far) eluded theoretical analysis. In this field, MIPLIB serves to instantiate key properties of problems (or types of problems), and evaluation on MIPLIB is a typical component of any new algorithm. We hope that bsuite can grow to perform a similar role in RL research, at least for those parts that continue to elude a unified theory of artificial intelligence. We provide guidelines for how researchers can use bsuite effectively in Section 3.
40
+
41
+ # 1.3 Open source code, reproducible research
42
+
43
+ As part of this project we open source github.com/deepmind/bsuite, which instantiates all experiments in code and automates the evaluation and analysis of any RL agent on bsuite. This library serves to facilitate reproducible and accessible research on the core issues in reinforcement learning. It includes:
44
+
45
+ • Canonical implementations of all experiments, as described in Section 2.
46
+ • Reference implementations of several reinforcement learning algorithms.
47
+ Example usage of bsuite with alternative codebases, including ‘OpenAI Gym’.
48
+ • Launch scripts for Google cloud that automate large scale compute at low cost.1 • A ready-made bsuite Jupyter notebook with analyses for all experiments.
49
+ • Automated LATEX appendix, suitable for inclusion in conference submission.
50
+
51
+ We provide more details on code and usage in Section 4.
52
+
53
+ We hope the Behaviour Suite for Reinforcement Learning, and its open source code, will provide significant value to the RL research community, and help to make key conceptual issues concrete and precise. bsuite can highlight bottlenecks in general algorithms that are not amenable to hacks, and reveal properties and scalings of algorithms outside the scope of current analytical techniques. We believe this offers an avenue towards great leaps on key issues, separate to the challenges of large-scale engineering (Nair et al., 2015). Further, bsuite facilitates clear, targeted and unified experiments across different code frameworks, something that can help to remedy issues of reproducibility in RL research (Tanner & White, 2009; Henderson et al., 2017).
54
+
55
+ # 1.4 Related work
56
+
57
+ The Behaviour Suite for Reinforcement Learning fits into a long history of RL benchmarks. From the beginning, research into general learning algorithms has been grounded by the performance on specific environments (Sutton & Barto, 2017). At first, these environments were typically motivated by small MDPs that instantiate the general learning problem. ‘CartPole’ (Barto et al., 1983) and ‘MountainCar’ (Moore, 1990) are examples of classic benchmarks that has provided a testing ground for RL algorithm development. Similarly, when studying specific capabilities of learning algorithms, it has often been helpful to design diagnostic environments with that capability in mind. Examples of this include ‘RiverSwim’ for exploration (Strehl & Littman, 2008) or ‘Taxi’ for temporal abstraction (Dietterich, 2000). Performance in these environments provide a targeted signal for particular aspects of algorithm development.
58
+
59
+ As the capabilities or RL algorithms have advanced, so has the complexity of the benchmark problems. The Arcade Learning Environment (ALE) has been instrumental in driving progress in deep RL through surfacing dozens of Atari 2600 games as learning environments (Bellemare et al., 2013). Similar projects have been crucial to progress in continuous control (Duan et al., 2016; Tassa et al., 2018), model-based RL (Wang et al., 2019) and even rich 3D games (Beattie et al., 2016). Performing well in these complex environments requires the integration of many core agent capabilities. We might think of these benchmarks as natural successors to ‘CartPole’ or ‘MountainCar’.
60
+
61
+ The Behaviour Suite for Reinforcement Learning offers a complementary approach to existing benchmarks in RL, with several novel components:
62
+
63
+ 1. bsuite experiments enforce a specific methodology for agent evaluation beyond just the environment definition. This is crucial for scientific comparisons and something that has become a major problem for many benchmark suites (Machado et al., 2017) (Section 2). 2. bsuite aims to isolate core capabilities with targeted ‘unit tests’, rather than integrate general learning ability. Other benchmarks evolve by increasing complexity, bsuite aims to remove all confounds from the core agent capabilities of interest (Section 3). 3. bsuite experiments are designed with an emphasis on scalability rather than final performance. Previous ‘unit tests’ (such as ‘Taxi’ or ‘RiverSwim’) are of fixed size, bsuite experiments are specifically designed to vary the complexity smoothly (Section 2). 4. github.com/deepmind/bsuite has an extraordinary emphasis on the ease of use, and compatibility with RL agents not specifically designed for bsuite. Evaluating an agent on bsuite is practical even for agents designed for a different benchmark (Section 4).
64
+
65
+ # 2 Experiments
66
+
67
+ This section outlines the experiments included in the Behaviour Suite for Reinforcement Learning 2019 release. In the context of bsuite, an experiment consists of three parts:
68
+
69
+ 1. Environments: a fixed set of environments determined by some parameters.
70
+ 2. Interaction: a fixed regime of agent/environment interaction (e.g. 100 episodes).
71
+ 3. Analysis: a fixed procedure that maps agent behaviour to results and plots.
72
+
73
+ One crucial part of each bsuite analysis defines a ‘score’ that maps agent performance on the task to $[ 0 , 1 ]$ . This score allows for agent comparison ‘at a glance’, the Jupyter notebook includes further detailed analysis for each experiment. All experiments in bsuite only measure behavioural aspects of RL agents. This means that they only measure properties that can be observed in the environment, and are not internal to the agent. It is this choice that allows bsuite to easily generate and compare results across different algorithms and codebases. Researchers may still find it useful to investigate internal aspects of their agents on bsuite environments, but it is not part of the standard analysis.
74
+
75
+ Every current and future bsuite experiment should target some key issue in RL. We aim for simple behavioural experiments, where agents that implement some concept well score better than those that don’t. For an experiment to be included in bsuite it should embody five key qualities:
76
+
77
+ • Targeted: performance in this task corresponds to a key issue in RL.
78
+ • Simple: strips away confounding/confusing factors in research.
79
+ • Challenging: pushes agents beyond the normal range.
80
+ • Scalable: provides insight on scalability, not performance on one environment.
81
+ • Fast: iteration from launch to results in under 30min on standard CPU.
82
+
83
+ Where our current experiments fall short, we see this as an opportunity to improve the Behaviour Suite for Reinforcement Learning in future iterations. We can do this both through replacing experiments with improved variants, and through broadening the scope of issues that we consider.
84
+
85
+ We maintain the full description of each of our experiments through the code and accompanying documentation at github.com/deepmind/bsuite. In the following subsections, we pick two bsuite experiments to review in detail: ‘memory length’ and ‘deep sea’, and review these examples in detail. By presenting these experiments as examples, we can emphasize what we think makes bsuite a valuable tool for investigating core RL issues. We do provide a high level summary of all other current experiments in Appendix A.
86
+
87
+ To accompany our experiment descriptions, we present results and analysis comparing three baseline algorithms on bsuite: DQN (Mnih et al., 2015a), A2C (Mnih et al., 2016) and Bootstrapped DQN (Osband et al., 2016). As part of our open source effort, we include full code for these agents and more at bsuite/baselines. All plots and analysis are generated through the automated bsuite Jupyter notebook, and give a flavour for the sort of agent comparisons that are made easy by bsuite.
88
+
89
+ # 2.1 Example experiment: memory length
90
+
91
+ Almost everyone agrees that a competent learning system requires memory, and almost everyone finds the concept of memory intuitive. Nevertheless, it can be difficult to provide a rigorous definition for memory. Even in human minds, there is evidence for distinct types of ‘memory’ handled by distinct regions of the brain (Milner et al., 1998). The assessment of memory only becomes more difficult to analyse in the context of general learning algorithms, which may differ greatly from human models of cognition. Which types of memory should we analyse? How can we inspect belief models for arbitrary learning systems? Our approach in bsuite is to sidestep these debates through simple behavioural experiments.
92
+
93
+ We refer to this experiment as memory length; it is designed to test the number of sequential steps an agent can remember a single bit. The underlying environment is based on a stylized T-maze (O’Keefe & Dostrovsky, 1971), parameterized by a length $N \in \mathbb { N }$ . Each episode lasts $N$ steps with observation $o _ { t } = ( c _ { t } , t / N )$ for $t = 1 , . . , N$ and action space $\mathcal { A } = \{ - 1 , + 1 \}$ . The context $c _ { 1 } \sim \mathrm { U n i f } ( \mathcal { A } )$ and $c _ { t } = 0$ for all $t \geq 2$ . The reward $r _ { t } = 0$ for all $t < N$ , but $r _ { N } = \mathrm { S i g n } ( a _ { N } = c _ { 1 } )$ . For the bsuite experiment we run the agent on sizes $N = 1 , . . , 1 0 0$ exponentially spaced and look at the average regret compared to optimal after 10k episodes. The summary ‘score’ is the percentage of runs for which the average regret is less than $7 5 \%$ of that achieved by a uniformly random policy.
94
+
95
+ ![](images/5fba235f7cc9fe8a44f3a05fb6242801bf0737a0878ecf8655fe36dd7b275bb1.jpg)
96
+ Figure 1: Illustration of the ‘memory length’ environment
97
+
98
+ Memory length is a good bsuite experiment because it is targeted, simple, challenging, scalable and fast. By construction, an agent that performs well on this task has mastered some use of memory over multiple timesteps. Our summary ‘score’ provides a quick and dirty way to compare agent performance at a high level. Our sweep over different lengths $N$ provides empirical evidence about the scaling properties of the algorithm beyond a simple pass/fail. Figure 2a gives a quick snapshot of the performance of baseline algorithms. Unsurprisingly, actor-critic with a recurrent neural network greatly outperforms the feedforward DQN and Bootstrapped DQN. Figure 2b gives us a more detailed analysis of the same underlying data. Both DQN and Bootstrapped DQN are unable to learn anything for length $> 1$ , they lack functioning memory. A2C performs well for all $N \ \leq \ 3 0$ and essentially random for all $N > 3 0$ , with quite a sharp cutoff. While it is not surprising that the recurrent agent outperforms feedforward architectures on a memory task, Figure 2b gives an excellent insight into the scaling properties of this architecture. In this case, we have a clear explanation for the observed performance: the RNN agent was trained via backprop-through-time with length 30. bsuite recovers an empirical evaluation of the scaling properties we would expect from theory.
99
+
100
+ # 2.2 Example experiment: deep sea
101
+
102
+ Reinforcement learning calls for a sophisticated form of exploration called deep exploration (Osband et al., 2017). Just as an agent seeking to ‘exploit’ must consider the long term consequences of its actions towards cumulative rewards, an agent seeking to ‘explore’ must consider how its actions can position it to learn more effectively in future timesteps. The literature on efficient exploration broadly states that only agents that perform deep exploration can expect polynomial sample complexity in learning (Kearns & Singh, 2002). This literature has focused, for the most part, on uncovering possible strategies for deep exploration through studying the tabular setting analytically (Jaksch et al., 2010; Azar et al., 2017). Our approach in bsuite is to complement this understanding through a series of behavioural experiments that highlight the need for efficient exploration.
103
+
104
+ ![](images/b14ce0f5f2981daa185a93293264a95c8755b30c32be1507672aedfc51ffbb96.jpg)
105
+ Figure 2: Selected output from bsuite evaluation on ‘memory length’.
106
+
107
+ The deep sea problem is implemented as an $N \times N$ grid with a one-hot encoding for state. The agent begins each episode in the top left corner of the grid and descends one row per timestep. Each episode terminates after $N$ steps, when the agent reaches the bottom row. In each state there is a random but fixed mapping between actions $\mathcal { A } = \{ 0 , 1 \}$ and the transitions ‘left’ and ‘right’. At each timestep there is a small cost $r = - 0 . 0 1 / N$ of moving right, and $r = 0$ for moving left. However, should the agent transition right at every timestep of the episode it will be rewarded with an additional reward of $+ 1$ . This presents a particularly challenging exploration problem for two reasons. First, following the ‘gradient’ of small intermediate rewards leads the agent away from the optimal policy. Second, a policy that explores with actions uniformly at random has probability $2 ^ { - N }$ of reaching the rewarding state in any episode. For the bsuite experiment we run the agent on sizes $N = 1 0 , 1 2 , . . , 5 0$ and look at the average regret compared to optimal after 10k episodes. The summary ‘score’ computes the percentage of runs for which the average regret drops below 0.9 faster than the $2 ^ { N }$ episodes expected by dithering.
108
+
109
+ ![](images/50b2723be4f1b41e9b292fd87a0e75bec57e3986b2f1efb1d914002f9dd94bde.jpg)
110
+ Figure 3: Deep-sea exploration: a simple example where deep exploration is critical.
111
+
112
+ Deep Sea is a good bsuite experiment because it is targeted, simple, challenging, scalable and fast. By construction, an agent that performs well on this task has mastered some key properties of deep exploration. Our summary score provides a ‘quick and dirty’ way to compare agent performance at a high level. Our sweep over different sizes $N$ can help to provide empirical evidence of the scaling properties of an algorithm beyond a simple pass/fail. Figure 3 presents example output comparing A2C, DQN and Bootstrapped DQN on this task. Figure 4a gives a quick snapshot of performance. As expected, only Bootstrapped DQN, which was developed for efficient exploration, scores well. Figure 4b gives a more detailed analysis of the same underlying data. When we compare the scaling of learning with problem size $N$ it is clear that only Bootstrapped DQN scales gracefully to large problem sizes. Although our experiment was only run to size 50, the regular progression of learning times suggest we might expect this algorithm to scale towards $N > 5 0$ .
113
+
114
+ ![](images/2ac0d82a1954f38d9d2ef8e9b96275bedc51bb126fea0c4f4076f61b08c2790c.jpg)
115
+ Figure 4: Selected output from bsuite evaluation on ‘deep sea’.
116
+
117
+ # 3 How to use bsuite
118
+
119
+ This section describes some of the ways you can use bsuite in your research and development of RL algorithms. Our aim is to present a high-level description of some research and engineering use cases, rather than a tutorial for the code installation and use. We provide examples of specific investigations using bsuite in Appendixes C, D and E. Section 4 provides an outline of our code and implementation. Full details and tutorials are available at github.com/deepmind/bsuite.
120
+
121
+ A bsuite experiment is defined by a set of environments and number of episodes of interaction. Since loading the environment via bsuite handles the logging automatically, any agent interacting with that environment will generate the data required for required for analysis through the Jupyter notebook we provide (P´erez & Granger, 2007). Generating plots and analysis via the notebook only requires users to provide the path to the logged data. The ‘radar plot’ (Figure 5) at the start of the notebook provides a snapshot of agent behaviour, based on summary scores. The notebook also contains a complete description of every experiment, summary scoring and in-depth analysis of each experiment. You can interact with the full report at bit.ly/bsuite-agents.
122
+
123
+ ![](images/9b6810dff7ffef5a1c445303c8577c724df91665cf1bec6e6540082eb4987422.jpg)
124
+ Figure 5: We aggregate experiment performance with a snapshot of 7 core capabilities.
125
+
126
+ If you are developing an algorithm to make progress on fundamental issues in RL, running on bsuite provides a simple way to replicate benchmark experiments in the field. Although many of these problems are ‘small’, in the sense that their solution does not necessarily require large neural architecture, they are designed to highlight key challenges in RL. Further, although these experiments do offer a summary ‘score’, the plots and analysis are designed to provide much more information than just a leaderboard ranking. By using this common code and analysis, it is easy to benchmark your agents and provide reproducible and verifiable research.
127
+
128
+ If you are using RL as a tool to crack a ‘grand challenge’ in AI, such as beating a world champion at Go, then taking on bsuite gridworlds might seem like small fry. We argue that one of the most valuable uses of bsuite is as a diagnostic ‘unit-test’ for large-scale algorithm development. Imagine you believe that ‘better exploration’ is key to improving your performance on some challenge, but when you try your ‘improved’ agent, the performance does not improve. Does this mean your agent does not do good exploration? Or maybe that exploration is not the bottleneck in this problem? Worse still, these experiments might take days and thousands of dollars of compute to run, and even then the information you get might not be targeted to the key RL issues. Running on bsuite, you can test key capabilities of your agent and diagnose potential improvements much faster, and more cheaply. For example, you might see that your algorithm completely fails at credit assignment beyond $n = 2 0$ steps. If this is the case, maybe this lack of credit-assignment over long horizons is the bottleneck and not necessarily exploration. This can allow for much faster, and much better informed agent development - just like a good suite of tests for software development.
129
+
130
+ Another benefit of bsuite is to disseminate your results more easily and engage with the research community. For example, if you write a conference paper targeting some improvement to hierarchical reinforcement learning, you will likely provide some justification for your results in terms of theorems or experiments targeted to this setting.2 However, it is typically a large amount of work to evaluate your algorithm according to alternative metrics, such as exploration. This means that some fields may evolve without realising the connections and distinctions between related concepts. If you run on bsuite, you can automatically generate a one-page Appendix, with a link to a notebook report hosted online. This can help provide a scientific evaluation of your algorithmic changes, and help to share your results in an easily-digestible format, compatible with ICML, ICLR and NeurIPS formatting. We provide examples of these experiment reports in Appendices B, C, D and E.
131
+
132
+ # 4 Code structure
133
+
134
+ To avoid discrepancies between this paper and the source code, we suggest that you take practical tutorials directly from github.com/deepmind/bsuite. A good starting point is bit.ly/bsuite-tutorial: a Jupyter notebook where you can play the code right from your browser, without installing anything. The purpose of this section is to provide a high-level overview of the code that we open source. In particular, we want to stress is that bsuite is designed to be a library for RL research, not a framework. We provide implementations for all the environments, analysis, run loop and even baseline agents. However, it is not necessary that you make use of them all in order to make use of bsuite.
135
+
136
+ The recommended method is to implement your RL agent as a class that implements a policy method for action selection, and an update method for learning from transitions and rewards. Then, simply pass your agent to our run loop, which enumerates all the necessary bsuite experiments and logs all the data automatically. If you do this, then all the experiments and analysis will be handled automatically and generate your results via the included Jupyter notebook. We provide examples of running these scripts locally, and via Google cloud through our tutorials.
137
+
138
+ If you have an existing codebase, you can still use bsuite without migrating to our run loop or agent structure. Simply replace your environment with environment $=$ bsuite.load and record(bsuite id) and add the flag bsuite id to your code. You can then complete a full bsuite evaluation by iterating over the bsuite ids defined in sweep.SWEEP. Since the environments handle the logging themselves, your don’t need any additional logging for the standard analysis. Although full bsuite includes many separate evaluations, no single bsuite environment takes more than 30 minutes to run and the sweep is naturally parallel. As such, we recommend launching in parallel using multiple processes or multiple machines. Our examples include a simple approach using Python’s multiprocessing module with Google cloud compute. We also provide examples of running bsuite from OpenAI baselines (Dhariwal et al., 2017) and Dopamine (Castro et al., 2018).
139
+
140
+ Designing a single RL agent compatible with diverse environments can cause problems, particularly for specialized neural networks. bsuite alleviates this problem by specifying an observation spec that surfaces the necessary information for adaptive network creation. By default, bsuite environments implement the dm env standards (Muldal et al., 2017), but we also include a wrapper for use through Openai gym (Brockman et al., 2016). However, if your agent is hardcoded for a format, bsuite offers the option to output each environment with the observation spec of your choosing via linear interpolation. This means that, if you are developing a network suitable for Atari and particular observation spec, you can choose to swap in bsuite without any changes to your agent.
141
+
142
+ # 5 Future iterations
143
+
144
+ This paper introduces the Behaviour Suite for Reinforcement Learning, and marks the start of its ongoing development. With our opensource effort, we chose a specific collection of experiments as the bsuite2019 release, but expect this collection to evolve in future iterations. We are reaching out to researchers and practitioners to help collate the most informative, targeted, scalable and clear experiments possible for reinforcement learning. To do this, submissions should implement a sweep that determines the selection of environments to include and logs the necessary data, together with an analysis that parses this data.
145
+
146
+ In order to review and collate these submissions we will be forming a bsuite committee. The committee will meet annually during the NeurIPS conference to decide which experiments will be included in the bsuite release. We are reaching out to a select group of researchers, and hope to build a strong core formed across industry and academia. If you would like to submit an experiment to bsuite or propose a committee member, you can do this via github pull request, or via email to bsuite.committee@gmail.com.
147
+
148
+ We believe that bsuite can be a valuable tool for the RL community, and particularly for research in deep RL. So far, the great success of deep RL has been to leverage large amounts of computation to improve performance. With bsuite, we hope to leverage largescale computation for improved understanding. By collecting clear, informative and scalable experiments; and providing accessible tools for reproducible evaluation we hope to facilitate progress in reinforcement learning research.
149
+
150
+ # References
151
+
152
+ Mart´ın Abadi et al. TensorFlow: Large-scale machine learning on heterogeneous systems, 2015. URL http://tensorflow.org/. Software available from tensorflow.org.
153
+
154
+ Mohammad Gheshlaghi Azar, Ian Osband, and R´emi Munos. Minimax regret bounds for reinforcement learning. In Proc. of ICML, 2017.
155
+
156
+ Peter L Bartlett, Dylan J Foster, and Matus J Telgarsky. Spectrally-normalized margin bounds for neural networks. In Advances in Neural Information Processing Systems 30, pp. 6241–6250, 2017.
157
+
158
+ Andrew G Barto, Richard S Sutton, and Charles W Anderson. Neuronlike adaptive elements that can solve difficult learning control problems. IEEE transactions on systems, man, and cybernetics, (5):834–846, 1983.
159
+
160
+ Charles Beattie, Joel Z Leibo, Denis Teplyashin, Tom Ward, Marcus Wainwright, Heinrich K¨uttler, Andrew Lefrancq, Simon Green, V´ıctor Vald´es, Amir Sadik, et al. Deepmind lab. arXiv preprint arXiv:1612.03801, 2016.
161
+
162
+ Mikhail Belkin, Daniel Hsu, Siyuan Ma, and Soumik Mandal. Reconciling modern machine learning and the bias-variance trade-off. arXiv preprint arXiv:1812.11118, 2018.
163
+
164
+ Marc G Bellemare, Yavar Naddaf, Joel Veness, and Michael Bowling. The Arcade Learning Environment: An Evaluation Platform for General Agents. Journal of Artificial Intelligence Research, 47:253–279, 2013.
165
+
166
+ L´eon Bottou. Large-scale machine learning with stochastic gradient descent. In Proceedings of COMPSTAT’2010, pp. 177–186. Springer, 2010.
167
+
168
+ Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym. CoRR, abs/1606.01540, 2016. URL http://arxiv.org/abs/ 1606.01540.
169
+
170
+ Pablo Samuel Castro, Subhodeep Moitra, Carles Gelada, Saurabh Kumar, and Marc G. Bellemare. Dopamine: A Research Framework for Deep Reinforcement Learning. 2018. URL http://arxiv. org/abs/1812.06110.
171
+
172
+ Corinna Cortes and Vladimir Vapnik. Support-vector networks. Machine learning, 20(3):273–297, 1995.
173
+
174
+ Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pp. 248–255. Ieee, 2009.
175
+
176
+ Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, Yuhuai Wu, and Peter Zhokhov. Openai baselines. https: //github.com/openai/baselines, 2017.
177
+
178
+ Thomas G Dietterich. Hierarchical reinforcement learning with the maxq value function decomposition. Journal of artificial intelligence research, 13:227–303, 2000.
179
+
180
+ Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep reinforcement learning for continuous control. In International Conference on Machine Learning, pp. 1329–1338, 2016.
181
+
182
+ Richard Evans and Jim Gao. Deepmind AI reduces google data centre cooling bill by 40 https: //deepmind.com/blog/deepmind-ai-reduces-google-data-centre-cooling-bill-40/, 2016.
183
+
184
+ Kunihiko Fukushima. Neural network model for a mechanism of pattern recognition unaffected by shift in position-neocognitron. IEICE Technical Report, A, 62(10):658–665, 1979.
185
+
186
+ John C Gittins. Bandit processes and dynamic allocation indices. Journal of the Royal Statistical Society: Series B (Methodological), 41(2):148–164, 1979.
187
+
188
+ Peter Henderson, Riashat Islam, Philip Bachman, Joelle Pineau, Doina Precup, and David Meger. Deep reinforcement learning that matters. CoRR, abs/1709.06560, 2017. URL http://arxiv. org/abs/1709.06560.
189
+
190
+ Alexey Grigorevich Ivakhnenko. The group method of data of handling; a rival of the method of stochastic approximation. Soviet Automatic Control, 13:43–55, 1968.
191
+
192
+ Thomas Jaksch, Ronald Ortner, and Peter Auer. Near-optimal regret bounds for reinforcement learning. Journal of Machine Learning Research, 11(Apr):1563–1600, 2010.
193
+
194
+ Kenji Kawaguchi. Deep learning without poor local minima. In Advances in neural information processing systems, pp. 586–594, 2016.
195
+
196
+ M. Kearns and S. Singh. Near-optimal reinforcement learning in polynomial time. Machine Learning, 49, 2002.
197
+
198
+ Jeannette Kiefer and Jacob Wolfowitz. Stochastic estimation of the maximum of a regression function. 1952.
199
+
200
+ Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http://arxiv.org/abs/1412.6980.
201
+
202
+ Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems 25, pp. 1097–1105, 2012.
203
+
204
+ Yann LeCun, L´eon Bottou, Yoshua Bengio, Patrick Haffner, et al. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.
205
+
206
+ Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521(7553):436, 2015.
207
+
208
+ Shane Legg, Marcus Hutter, et al. A collection of definitions of intelligence. Frontiers in Artificial Intelligence and applications, 157:17, 2007.
209
+
210
+ Kurt Lewin. Psychology and the process of group living. The Journal of Social Psychology, 17(1): 113–131, 1943.
211
+
212
+ Xiuyuan Lu and Benjamin Van Roy. Ensemble sampling. In Advances in Neural Information Processing Systems, pp. 3260–3268, 2017.
213
+
214
+ Marlos C Machado, Marc G Bellemare, Erik Talvitie, Joel Veness, Matthew Hausknecht, and Michael Bowling. Revisiting the Arcade Learning Environment: Evaluation protocols and open problems for general agents. arXiv preprint arXiv:1709.06009, 2017.
215
+
216
+ Brenda Milner, Larry R Squire, and Eric R Kandel. Cognitive neuroscience and the study of memory. Neuron, 20(3):445–468, 1998.
217
+
218
+ Marvin Minsky. Steps towards artificial intelligence. Proceedings of the IRE, 1961.
219
+
220
+ miplib2017. MIPLIB 2017, 2018. http://miplib.zib.de.
221
+
222
+ Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level Control through Deep Reinforcement Learning. Nature, 518(7540):529–533, 2015a.
223
+
224
+ Volodymyr Mnih, Koray Kavukcuoglu, David Silver, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, 2015b.
225
+
226
+ Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. In Proc. of ICML, 2016.
227
+
228
+ Andrew William Moore. Efficient memory-based learning for robot control. 1990.
229
+
230
+ Alistair Muldal, Yotam Doron, and John Aslanides. dm env. https://github.com/deepmind/dm_ env, 2017.
231
+
232
+ Arun Nair, Praveen Srinivasan, Sam Blackwell, Cagdas Alcicek, Rory Fearon, et al. Massively Parallel Methods for Deep Reinforcement Learning. In ICML Workshop on Deep Learning, 2015.
233
+
234
+ John O’Keefe and Jonathan Dostrovsky. The hippocampus as a spatial map: preliminary evidence from unit activity in the freely-moving rat. Brain research, 1971.
235
+
236
+ Ian Osband, Charles Blundell, Alexander Pritzel, and Benjamin Van Roy. Deep exploration via bootstrapped DQN. In Advances In Neural Information Processing Systems 29, pp. 4026–4034, 2016.
237
+
238
+ Ian Osband, Daniel Russo, Zheng Wen, and Benjamin Van Roy. Deep exploration via randomized value functions. arXiv preprint arXiv:1703.07608, 2017.
239
+
240
+ Ian Osband, John Aslanides, and Albin Cassirer. Randomized prior functions for deep reinforcement learning. In Advances in Neural Information Processing Systems 31, pp. 8617–8629. Curran Associates, Inc., 2018. URL http://papers.nips.cc/paper/ 8080-randomized-prior-functions-for-deep-reinforcement-learning.pdf.
241
+
242
+ Ian Osband, Yotam Doron, Matteo Hessel, John Aslanides, , Eren Sezener, Andre Saraiva, Katrina McKinney, Tor Lattimore, Csaba Szepesvari, Satinder Singh, Benjamin Van Roy, Richard Sutton, David Silver, and Hado Van Hasselt. Behaviour suite for reinforcement learning. 2019.
243
+
244
+ Jakub Pachocki, David Farhi, Szymon Sidor, Greg Brockman, Filip Wolski, Henrique PondÃľ, Jie Tang, Jonathan Raiman, Michael Petrov, Christy Dennison, Brooke Chan, Susan Zhang, RafaÅĆ JÃşzefowicz, and PrzemysÅĆaw DÄŹbiak. Openai five. https://openai.com/five, 2019.
245
+
246
+ Fernando P´erez and Brian E. Granger. IPython: a system for interactive scientific computing. Computing in Science and Engineering, 9(3):21–29, May 2007. ISSN 1521-9615. doi: 10.1109/ MCSE.2007.53. URL https://ipython.org.
247
+
248
+ Frank Rosenblatt. The perceptron: a probabilistic model for information storage and organization in the brain. Psychological review, 65(6):386, 1958.
249
+
250
+ Daniel Russo, Benjamin Van Roy, Abbas Kazerouni, and Ian Osband. A tutorial on Thompson sampling. arXiv preprint arXiv:1707.02038, 2017.
251
+
252
+ AL Samuel. Some studies oin machine learning using the game of checkers. IBM Journal of Researchand Development, 3:211–229, 1959.
253
+
254
+ David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of Go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.
255
+
256
+ David Silver, Thomas Hubert, Julian Schrittwieser, Ioannis Antonoglou, Matthew Lai, Arthur Guez, Marc Lanctot, Laurent Sifre, Dharshan Kumaran, Thore Graepel, Timothy Lillicrap, Karen Simonyan, and Demis Hassabis. A general reinforcement learning algorithm that masters chess, shogi, and go through self-play. Science, 362(6419):1140–1144, 2018. ISSN 0036-8075. doi: 10.1126/science.aar6404. URL https://science.sciencemag.org/content/362/6419/1140.
257
+
258
+ Alexander L Strehl and Michael L Littman. An analysis of model-based interval estimation for markov decision processes. Journal of Computer and System Sciences, 74(8):1309–1331, 2008.
259
+
260
+ Richard Sutton and Andrew Barto. Reinforcement Learning: An Introduction. MIT Press, 2017.
261
+
262
+ R.S. Sutton. Learning to predict by the methods of temporal differences. Machine learning, 3, 1988.
263
+
264
+ Brian Tanner and Adam White. Rl-glue: Language-independent software for reinforcement-learning experiments. Journal of Machine Learning Research, 10(Sep):2133–2136, 2009.
265
+
266
+ Yuval Tassa, Yotam Doron, Alistair Muldal, Tom Erez, Yazhe Li, Diego de Las Casas, David Budden, Abbas Abdolmaleki, Josh Merel, Andrew Lefrancq, et al. Deepmind control suite. arXiv preprint arXiv:1801.00690, 2018.
267
+
268
+ Gerald Tesauro. Temporal difference learning and TD-gammon. Communications of the ACM, 38 (3):58–68, 1995.
269
+
270
+ T. Tieleman and G. Hinton. Lecture 6.5—RmsProp: Divide the gradient by a running average of its recent magnitude. COURSERA: Neural Networks for Machine Learning, 2012.
271
+
272
+ Hado van Hasselt, Arthur Guez, and David Silver. Deep Reinforcement Learning with Double Q-Learning. In Proceedings of the AAAI Conference on Artificial Intelligence, 2016.
273
+
274
+ Oriol Vinyals, Igor Babuschkin, Junyoung Chung, Michael Mathieu, Jaderberg, et al. AlphaStar: Mastering the Real-Time Strategy Game StarCraft II. https://deepmind.com/blog/ alphastar-mastering-real-time-strategy-game-starcraft-ii/, 2019.
275
+
276
+ Tingwu Wang, Xuchan Bao, Ignasi Clavera, Jerrick Hoang, Yeming Wen, Eric Langlois, Shunshi Zhang, Guodong Zhang, Pieter Abbeel, and Jimmy Ba. Benchmarking model-based reinforcement learning. CoRR, abs/1907.02057, 2019. URL http://arxiv.org/abs/1907.02057.
277
+
278
+ # A Experiment summary
279
+
280
+ This appendix outlines the experiments that make up the bsuite 2019 release. In the interests of brevity, we provide only an outline of each experiment here. Full documentation for the environments, interaction and analysis are kept with code at github.com/deepmind/bsuite.
281
+
282
+ # A.1 Basic learning
283
+
284
+ We begin with a collection of very simple decision problems, and standard analysis that confirms an agent’s competence at learning a rewarding policy within them. We call these experiments ‘basic’, since they are not particularly targeted at specific core issues in RL, but instead test a general base level of competence we expect all general agents to attain.
285
+
286
+ # A.1.1 Simple bandit
287
+
288
+ ![](images/ef97416bdbde16221bd45e95e4a9613584874df1212509fb6f68b91a237227e9.jpg)
289
+
290
+ # A.1.2 MNIST
291
+
292
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>Finite-armed bandit with deterministic re- wards [0,0.1,..1] (Gittins, 1979). 20 seeds.</td></tr><tr><td> interaction</td><td>10k episodes, record regret vs optimal.</td></tr><tr><td> score</td><td> regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>basic</td></tr></table>
293
+
294
+ ![](images/a92674e5270923d4c96ecb0a25d54d68a0c0484cb26334715d3e48c4fb453fd9.jpg)
295
+
296
+ A.1.3 Catch
297
+
298
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>Contextual bandit classification of MNIST with ±1 rewards (LeCun et al.,1998). 20 seeds.</td></tr><tr><td>interaction</td><td>10k episodes, record average regret.</td></tr><tr><td> score</td><td> regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>basic, generalization</td></tr></table>
299
+
300
+ ![](images/9abeccfe27e47e808cc80794a4014c47247c21e78e5883527285787b4229e587.jpg)
301
+
302
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>A 10x5 Tetris-grid with single block falling per column. The agent can move left/right in the bottom row to‘catch’ the block. 20 seeds.</td></tr><tr><td>interaction</td><td>10k episodes, record average regret.</td></tr><tr><td>score</td><td> regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>basic, credit assignment</td></tr></table>
303
+
304
+ A.1.4 Cartpole
305
+
306
+ ![](images/6a7a3a4c5c088db232e4cb408366bc089144e0fccf86a7d95a55edec7bafb552.jpg)
307
+
308
+ <table><tr><td>component</td><td>description</td></tr><tr><td> environments</td><td>Agent can move a cart left/right on a plane to keep a balanced pole upright (Barto et al., 1983), 20 seeds.</td></tr><tr><td> interaction</td><td>10k episodes, record average regret.</td></tr><tr><td> score</td><td>regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>basic, credit assignment, generalization</td></tr></table>
309
+
310
+ # A.1.5 Mountain car
311
+
312
+ ![](images/d579b04d0310ca37943a037dd6c3fa19fd7d8d0d8d39d769261bf68b828f0cc2.jpg)
313
+
314
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>Agent drives an underpowered car up a hil (Moore,1990), 20 seeds.</td></tr><tr><td> interaction</td><td>10k episodes, record average regret.</td></tr><tr><td> score</td><td> regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>basic, credit assignment, generalization</td></tr></table>
315
+
316
+ # A.2 Stochasticity
317
+
318
+ To investigate the robustness of RL agents to noisy rewards, we repeat the experiments from Section A.1 under differing levels of Gaussian noise. This time we allocate the 20 different seeds across 5 levels of Gaussian noise $N ( 0 , \sigma ^ { 2 } )$ for $\sigma = [ 0 . 1 , 0 . 3 , 1 , 3 , 1 0 ]$ with 4 seeds each.
319
+
320
+ # A.3 Problem scale
321
+
322
+ To investigate the robustness of RL agents to problem scale, we repeat the experiments from Section A.1 under differing reward scales. This time we allocate the 20 different seeds across 5 levels of reward scaling, where we multiply the observed rewards by $\lambda =$ $[ 0 . 0 1 , 0 . 1 , 1 , 1 0 , 1 0 0 ]$ with 4 seeds each.
323
+
324
+ # A.4 Exploration
325
+
326
+ As an agent interacts with its environment, it observes the outcomes that result from previous states and actions, and learns about the system dynamics. This leads to a fundamental tradeoff: by exploring poorly-understood states and actions the agent can learn to improve future performance, but it may attain better short-run performance by exploiting its existing knowledge. Exploration is the challenge of prioritizing useful information for learning, and the experiments in this section are designed to necessitate efficient exploration for good performance.
327
+
328
+ # A.4.1 Deep sea
329
+
330
+ ![](images/6fb014a631c5ce402f98627f84e2ac7cde7fab432fe04e4ea8251574ea2cf2b0.jpg)
331
+
332
+ # A.4.2 Stochastic deep sea
333
+
334
+ ![](images/32928f4151ef5170229369be92d0e2e4e87ec7b1643370c2e9ce76c64b6f6e3f.jpg)
335
+
336
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>Deep sea chain environments with stochastic transitions, N(O,1) reward noise, size N=[5..50].</td></tr><tr><td> interaction</td><td>10k episodes, record average regret.</td></tr><tr><td> score</td><td>% of runs with ave regret &lt; 90% random</td></tr><tr><td> issues</td><td>exploration, stochasticity</td></tr></table>
337
+
338
+ # A.4.3 Cartpole swingup
339
+
340
+ ![](images/0c3e4c2cca89bc6eb5df8b70e66253f0e23a362b8f20f77f7b0538f0f6f1942d.jpg)
341
+
342
+ <table><tr><td>component</td><td>description</td></tr><tr><td> environments</td><td>Cartpole ‘swing up’ problem with sparse re- ward (Barto et al.,1983), heigh limit x=[0, 0.5, .., 0.95].</td></tr><tr><td> interaction</td><td>1k episodes, record average regret.</td></tr><tr><td> score</td><td>% of runs with average return &gt; 0</td></tr><tr><td> issues</td><td>exploration, generalization</td></tr></table>
343
+
344
+ # A.5 Credit assignment
345
+
346
+ Reinforcement learning extends contextual bandit decision problem to allow long term consequences in decision problems. This means that actions in one timestep can effect dynamics in future timesteps. One of the challenges of this setting is that of credit assignment, and the experiments in this section are designed to highlight these issues.
347
+
348
+ # A.5.1 Umbrella length
349
+
350
+ ![](images/5be62617046129f9a126e1dfe1faef3398971f9e49d8786f855b74a29118d7e2.jpg)
351
+
352
+ # A.5.2 Umbrella features
353
+
354
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>Stylized‘umbrella problem&#x27;,where only the first decision matters and long chain of con- founding variables. Vary length 1..10o loga- rithmically.</td></tr><tr><td> interaction</td><td>1k episodes, record average regret.</td></tr><tr><td>score</td><td>regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>credit assignment, stochasticity</td></tr></table>
355
+
356
+ ![](images/72b3f1164a425f8526bef64ae751dee450926e756eae837f5a4dbba01d650ff7.jpg)
357
+ A.5.3 Discounting chain
358
+
359
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>Stylized ‘umbrella problem&#x27;,where only the first decision matters and long chain of con- founding variables. Vary features 1..10o loga- rithmically.</td></tr><tr><td>interaction</td><td>1k episodes, record average regret .</td></tr><tr><td>score</td><td>regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>credit assignment, stochasticity</td></tr></table>
360
+
361
+ <table><tr><td rowspan="7">oo+ Reward 1 at =- Reward 1.l at t=3 。O Reward 1 at t-10 。o Reward 1 at t=30 oo</td><td>component</td><td>description</td></tr><tr><td> environments</td><td>Experiment designed to highlight issues of dis- counting horizon.</td></tr><tr><td>interaction</td><td>1k episodes, record average regret.</td></tr><tr><td>score Reward l at t=100</td><td>regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>credit assignment</td></tr></table>
362
+
363
+ # A.6 Memory
364
+
365
+ Memory is the challenge that an agent should be able to curate an effective state representation from a series of observations. In this section we review a series of experiments in which agents with memory can perform much better than those that only have access to the immediate observation.
366
+
367
+ # A.6.1 Memory length
368
+
369
+ ![](images/b55cba6830e354ea429514e45d8dae150702387b89be3201fe5eddd8aad71c35.jpg)
370
+ A.6.2 Memory bits
371
+
372
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>T-maze with a single binary context, grow length 1..100 logarithmically.</td></tr><tr><td> interaction</td><td>1k episodes, record average regret.</td></tr><tr><td> score</td><td>regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>credit assignment</td></tr></table>
373
+
374
+ ![](images/97f25769d712b5bee4ecc4ad5179f7d692088854ad3fe3b1a254f79c67b19e04.jpg)
375
+
376
+ <table><tr><td>component</td><td>description</td></tr><tr><td>environments</td><td>T-maze with length 2, vary number of bits to remember 1..100 logarithmically.</td></tr><tr><td> interaction</td><td>1k episodes, record average regret.</td></tr><tr><td> score</td><td>regret normalized [random, optimal] → [0,1]</td></tr><tr><td> issues</td><td>credit assignment</td></tr></table>
377
+
378
+ # B bsuite report as conference appendix
379
+
380
+ If you run an agent on bsuite, and you want to share these results as part of a conference submission, we make it easy to share a single-page ‘bsuite report’ as part of your appendix. We provide a simple LATEXfile that you can copy/paste into your paper, and is compatible out-the-box with ICLR, ICML and NeurIPS style files. This single page summary displays the summary scores for experiment evaluations for one or more agents, with plots generated automatically from the included ipython notebook. In each report, two sections are left for the authors to fill in: one describing the variants of the agents examined and another to give some brief commentary on the results. We suggest that authors promote more in-depth analysis to their main papers, or simply link to a hosted version of the full bsuite analysis online. You can find more details on our automated reports at github.com/deepmind/bsuite.
381
+
382
+ The sections that follow are example bsuite reports, that give some example of how these report appendixes might be used. We believe that these simple reports can be a good complement to conference submissions in RL research, that ‘sanity check’ the elementary properties of algorithmic implementations. An added bonus of bsuite is that it is easy to set up a like for like experiment between agents from different ‘frameworks’ in a way that would be extremely laborious for an individual researcher. If you are writing a conference paper on a new RL algorithm, we believe that it makes sense for you to include a bsuite report in the appendix by default.
383
+
384
+ # C bsuite report: benchmarking baseline agents
385
+
386
+ The Behaviour Suite for Reinforcement Learning, or bsuite for short, is a collection of carefully-designed experiments that investigate core capabilities of a reinforcement learning (RL) agent. The aim of the bsuite project is to collect clear, informative and scalable problems that capture key issues in the design of efficient and general learning algorithms and study agent behaviour through their performance on these shared benchmarks. This report provides a snapshot of agent performance on bsuite2019, obtained by running the experiments from github.com/deepmind/bsuite (Osband et al., 2019).
387
+
388
+ # C.1 Agent definition
389
+
390
+ In this experiment all implementations are taken from bsuite/baselines with default configurations. We provide a brief summary of the agents run on bsuite2019:
391
+
392
+ • random: selects action uniformly at random each timestep.
393
+ • dqn: Deep Q-networks (Mnih et al., 2015b).
394
+ • boot dqn: bootstrapped DQN with prior networks (Osband et al., 2016; 2018).
395
+ • actor critic rnn: an actor critic with recurrent neural network (Mnih et al., 2016).
396
+
397
+ # C.2 Summary scores
398
+
399
+ Each bsuite experiment outputs a summary score in [0,1]. We aggregate these scores by according to key experiment type, according to the standard analysis notebook. A detailed analysis of each of these experiments may be found in a notebook hosted on Colaboratory bit.ly/bsuite-agents.
400
+
401
+ ![](images/42cdd217b4392223ef039dd74cff482c673aa7bfc194372eeb4befaf857a3478.jpg)
402
+ Figure 6: A snapshot of agent behaviour.
403
+
404
+ ![](images/c96f970f02435d58ffeca4e171da11a6fada35ed3986226fb1f5da4e76ccf688.jpg)
405
+ Figure 7: Score for each bsuite experiment.
406
+
407
+ # C.3 Results commentary
408
+
409
+ • random performs uniformly poorly, confirming the scores are working as intended.
410
+
411
+ • dqn performs well on basic tasks, and quite well on credit assignment, generalization, noise and scale. DQN performs extremely poorly across memory and exploration tasks. The feedforward MLP has no mechanism for memory, and $\epsilon { = } 5 \%$ -greedy action selection is inefficient exploration.
412
+
413
+ • boot dqn is mostly identically to DQN, except for exploration where it greatly outperforms. This result matches our understanding of Bootstrapped DQN as a variant of DQN designed to estimate uncertainty and use this to guide deep exploration.
414
+
415
+ • actor critic rnn typically performs worse than either DQN or Bootstrapped DQN on all tasks apart from memory. This agent is the only one able to perform better than random due to its recurrent network architecture.
416
+
417
+ # D bsuite report: optimization algorithm in DQN
418
+
419
+ The Behaviour Suite for Reinforcement Learning, or bsuite for short, is a collection of carefully-designed experiments that investigate core capabilities of a reinforcement learning (RL) agent. The aim of the bsuite project is to collect clear, informative and scalable problems that capture key issues in the design of efficient and general learning algorithms and study agent behaviour through their performance on these shared benchmarks. This report provides a snapshot of agent performance on bsuite2019, obtained by running the experiments from github.com/deepmind/bsuite (Osband et al., 2019).
420
+
421
+ # D.1 Agent definition
422
+
423
+ All agents correspond to different instantiations of the DQN agent (Mnih et al., 2015b), as implemented in bsuite/baselines but with differnet optimizers from Tensorflow (Abadi et al., 2015). In each case we tune a learning rate to optimize performance on ‘basic’ tasks from {1e-1, 1e-2, 1e-3}, keeping all other parameters constant at default value.
424
+
425
+ • sgd: vanilla stochastic gradient descent with learning rate 1e-2 (Kiefer & Wolfowitz, 1952).
426
+ • rmsprop: RMSProp with learning rate 1e-3 (Tieleman & Hinton, 2012).
427
+ • adam: Adam with learning rate 1e-3 (Kingma & Ba, 2015).
428
+
429
+ # D.2 Summary scores
430
+
431
+ Each bsuite experiment outputs a summary score in [0,1]. We aggregate these scores by according to key experiment type, according to the standard analysis notebook. A detailed analysis of each of these experiments may be found in a notebook hosted on Colaboratory: bit.ly/bsuite-optim.
432
+
433
+ ![](images/3970f5b55d39aec9dd37b475a8a48c52557bc12b476d7443288e3855238f2303.jpg)
434
+ Figure 8: A snapshot of agent behaviour.
435
+
436
+ ![](images/29de21ce937e30d387d018c4a6adbd7d4049d57c4a4eeb7d887202c84d55c374.jpg)
437
+ Figure 9: Score for each bsuite experiment.
438
+
439
+ # D.3 Results commentary
440
+
441
+ Both RMSProp and Adam perform better than SGD in every category. In most categories, Adam slightly outperforms RMSprop, although this difference is much more minor. SGD performs particularly badly on environments that require generalization and/or scale. This is not particularly surprising, since we expect the non-adaptive SGD may be more sensitive to learning rate optimization or annealing.
442
+
443
+ In Figure 11 we can see that the differences are particularly pronounced on the cartpole domains. We hypothesize that this task requires more efficient neural network optimization, and the nonadaptive SGD is prone to numerical issues.
444
+
445
+ # E bsuite report: ensemble size in Bootstrapped DQN
446
+
447
+ The Behaviour Suite for Reinforcement Learning, or bsuite for short, is a collection of carefully-designed experiments that investigate core capabilities of a reinforcement learning (RL) agent. The aim of the bsuite project is to collect clear, informative and scalable problems that capture key issues in the design of efficient and general learning algorithms and study agent behaviour through their performance on these shared benchmarks. This report provides a snapshot of agent performance on bsuite2019, obtained by running the experiments from github.com/deepmind/bsuite (Osband et al., 2019).
448
+
449
+ # E.1 Agent definition
450
+
451
+ In this experiment, all agents correspond to different instantiations of a Bootstrapped DQN with prior networks (Osband et al., 2016; 2018). We take the default implementation from bsuite/baselines. We investigate the effect of the number of models used in the ensemble, sweeping over {1, 3, 10, 30}.
452
+
453
+ # E.2 Summary scores
454
+
455
+ Each bsuite experiment outputs a summary score in [0,1]. We aggregate these scores by according to key experiment type, according to the standard analysis notebook. A detailed analysis of each of these experiments may be found in a notebook hosted on Colaboratory: bit.ly/bsuite-ensemble.
456
+
457
+ ![](images/2b54632e488669188b1d36b0e5ff530e9a5a96cdef42321992da3f84c21c1dca.jpg)
458
+ Figure 10: A snapshot of agent behaviour. Figure 11: Score for each bsuite experiment.
459
+
460
+ # E.3 Results commentary
461
+
462
+ Generally, increasing the size of the ensemble improves bsuite performance across the board. However, we do see signficantly decreasing returns to ensemble size, so that ensemble 30 does not perform much better than size 10. These results are not predicted by the theoretical scaling of proven bounds (Lu & Van Roy, 2017), but are consistent with previous empirical findings (Osband et al., 2017; Russo et al., 2017). The gains are most extreme in the exploration tasks, where ensemble sizes less than 10 are not able to solve large ‘deep sea’ tasks, but larger ensembles solve them reliably.
463
+
464
+ Even for large ensemble sizes, our implementation does not completely solve every cartpole swingup instance. Further examination learning curves suggests this may be due to some instability issues, which might be helped by using Double DQN to combat value overestimation (van Hasselt et al., 2016).
parse/train/rygf-kSYwH/rygf-kSYwH_content_list.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/rygf-kSYwH/rygf-kSYwH_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/rygf-kSYwH/rygf-kSYwH_model.json ADDED
The diff for this file is too large to render. See raw diff