ZHANGYUXUAN-zR commited on
Commit
5282416
·
verified ·
1 Parent(s): 96ca4b6

Add files using upload-large-folder tool

Browse files
parse/train/D1E1h-K3jso/D1E1h-K3jso.md ADDED
@@ -0,0 +1,297 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # LEARNING FROM NOISY DATA WITH ROBUST REPRESENTATION LEARNING
2
+
3
+ Anonymous authors Paper under double-blind review
4
+
5
+ # ABSTRACT
6
+
7
+ Learning from noisy data has attracted much attention, where most methods focus on label noise. In this work, we propose a new framework which simultaneously addresses three types of noise commonly seen in real-world data: label noise, outof-distribution input, and input corruption. In contrast to most existing methods, we combat noise by learning robust representation. Specifically, we embed images into a low-dimensional subspace by training an autoencoder on the deep features. We regularize the geometric structure of the subspace with robust contrastive learning, which includes an unsupervised consistency loss and a supervised mixup prototypical loss. Furthermore, we leverage the structure of the learned subspace for noise cleaning, by aggregating information from neighboring samples. Experiments on multiple benchmarks demonstrate state-of-the-art performance of our method and robustness of the learned representation. Our code will be released1.
8
+
9
+ # 1 INTRODUCTION
10
+
11
+ Data in real life is noisy. However, deep models with remarkable performance are mostly trained on clean datasets with high-quality human annotations. Manual data cleaning and labeling is an expensive process that is difficult to scale. On the other hand, there exists almost infinite amount of noisy data online. It is crucial that deep neural networks (DNNs) could harvest noisy training data. However, it has been shown that DNNs are susceptible to overfitting to noise (Zhang et al., 2017).
12
+
13
+ As shown in Figure $\mathbb { L } ,$ a real-world noisy image dataset often consists of multiple types of noise. Label noise refers to samples that are wrongly labeled as another class (e.g. flower labeled as orange). Out-of-distribution input refers to samples that do not belong to any known classes. Input corruption refers to image-level distortion (e.g. low brightness) that causes data shift between training and test.
14
+
15
+ Most of the methods in literature focus on addressing the more detrimental label noise. Two dominant approaches include: (1) find clean samples as those with smaller loss and assign larger weights to them (Han et al., 2018; Yu et al., 2019; Shen & Sanghavi, 2019; Arazo et al., 2019); (2) relabel noisy samples using model’s predictions (Reed et al., 2015; Ma et al., 2018; Tanaka et al., 2018; Yi & Wu, $\dot { \overline { { 2 0 1 9 } } } )$ . The recently proposed DivideMix (Li et al., 2020a) integrates both approaches in a co-training framework, but it also increases computation cost. Previous methods that focus on addressing label noise do not consider out-of-distribution input or input corruption, which limits their performance in real-world scenarios. Furthermore, using a model’s own prediction to relabel samples could cause confirmation bias, where the prediction error accumulates and harms performance.
16
+
17
+ We propose a new direction for effective learning from noisy data. Our method embeds images into noise-robust low-dimensional representations, and regularizes the geometric structure of the representations with contrastive learning. Specifically, our algorithmic contributions include:
18
+
19
+ • We propose noise-robust contrastive learning, which introduces two contrastive losses. The first is an unsupervised consistency contrastive loss. It enforces inputs with perturbations to have similar normalized embeddings, which helps learn robust and discriminative representation.
20
+
21
+ • Our second contrastive loss is a weakly-supervised mixup prototypical loss. We compute class prototypes as normalized mean embeddings, and enforces each sample’s embedding to be closer to its class prototype. Inspired by Mixup (Zhang et al., 2018), we construct virtual training samples as linear interpolation of inputs, and encourage the same linear relationship $w . r . t$ the class prototypes.
22
+
23
+ ![](images/638afbb1829c0fd505bc08ee611be1d2461a4ffc9d0e4631f4710188e435bbd6.jpg)
24
+ Figure 1: Google search images from WebVision (Li et al., 2017) dataset with keyword “orange”.
25
+
26
+ • We train a linear autoencoder to reconstruct the high-dimensional features using low-dimensional embeddings. The autoendoer enables the high-dimensional features to maximally preserve the robustness of the low-dimensional embeddings, thus regularizing the classifier.
27
+
28
+ • We propose a new noise cleaning method which exploits the structure of the learned representations. For each sample, we aggregate information from its top- $k$ neighbors to create a pseudo-label. A subset of training samples with confident pseudo-labels are selected to compute the weaklysupervised losses. This process can effectively clean both label noise and out-of-distribution (OOD) noise.
29
+
30
+ # Our experimental contributions include:
31
+
32
+ • We experimentally show that our method is robust to label noise, OOD input, and input corruption. Experiments are performed on multiple datasets with controlled noise and real-world noise, where our method achieves state-of-the-art performance.
33
+
34
+ • We demonstrate that the proposed noise cleaning method can effectively clean a majority of label noise. It also learns a curriculum that gradually leverages more samples to compute the weakly-supervised losses as the pseudo-labels become more accurate.
35
+
36
+ We validate the robustness of the learned low-dimensional representation by showing (1) $k$ -nearest neighbor classification outperforms the softmax classifier. (2) OOD samples can be separated from in-distribution samples. The efficacy of the proposed autoencoder is also verified.
37
+
38
+ # 2 RELATED WORK
39
+
40
+ Label noise learning. Learning from noisy labels have been extensively studied in the literature. While some methods require access to a small set of clean samples (Xiao et al., 2015; Vahdat, 2017; Veit et al., 2017; Lee et al., 2018; Hendrycks et al., 2018), most methods focus on the more challenging scenario where no clean labels are available. These methods can be categorized into two major types. The first type performs label correction using predictions from the network (Reed et al., 2015; Ma et al., 2018; Tanaka et al., 2018; Yi & Wu, 2019). The second type tries to separate clean samples from corrupted samples, and trains the model on clean samples (Han et al., 2018; Arazo et al., 2019; Jiang et al., 2018; 2020; Wang et al., 2018; Chen et al., 2019; Lyu & Tsang, 2020). The recently proposed DivideMix (Li et al., 2020a) effectively combines label correction and sample selection with the Mixup (Zhang et al., 2018) data augmentation under a co-training framework. However, it cost $2 \times$ the computational resource of our method.
41
+
42
+ Different from existing methods, our method combats noise by learning noise-robust low-dimensional representations. We propose a more effective noise cleaning method by leveraging the structure of the learned representations. Furthermore, our model is robust not only to label noise, but also to out-of-distribution and corrupted input. A previous work has studied open-set noisy labels (Wang et al., 2018), but their method does not enjoy the same level of robustness as ours.
43
+
44
+ Contrastive learning. Contrastive learning is at the core of recent self-supervised representation learning methods (Chen et al., 2020; He et al., 2019; Oord et al., 2018; Wu et al., 2018). In selfsupervised contrastive learning, two randomly augmented images are generated for each input image. Then a contrastive loss is applied to pull embeddings from the same source image closer, while pushing embeddings from different source images apart. Recently, prototypical contrastive learning (PCL) $\left. \underline { { \mathrm { L i } \mathrm { e t a l . } } } , \underline { { \mathrm { 2 0 2 0 b } } } \right.$ has been proposed, which uses cluster centroids as prototypes, and trains the network by pulling an image embedding closer to its assigned prototypes.
45
+
46
+ ![](images/094bf26750724724011e913dd594ec0ad21b0b1476e88ca023c596fd434b01b1.jpg)
47
+ Figure 2: Our proposed framework for noise-robust contrastive learning. We project images into a lowdimensional subspace, and regularize the geometric structure of the subspace with $( 1 ) \mathcal { L } _ { \mathrm { c c } }$ a consistency contrastive loss which enforces images with perturbations to have similar embeddings; $( 2 ) \mathcal { L } _ { \mathrm { p c . m i x } }$ : a prototypical contrastive loss augmented with mixup, which encourages the embedding for a linearly-interpolated input to have the same linear relationship w.r.t the class prototypes. The low-dimensional embeddings are also trained to reconstruct the high-dimensional features, which preserves the learned information and regularizes the classifier.
48
+
49
+ Different from previous methods, our method performs contrastive learning in the principal subspace of the high-dimensional feature space, by training a linear autoencoder. Furthermore, our supervised contrastive loss improves PCL (Li et al., 2020b) with Mixup $\mathrm { ( } \mathbb { Z } \mathrm { h a n g ~ e t ~ a l . } \mathrm { ) } \mathbb { Z } \mathrm { 0 } 1 8 \mathrm { ) }$ . Different from the original Mixup where learning happens at the classification layer, our learning takes places in the low-dimensional subspace.
50
+
51
+ # 3 METHOD
52
+
53
+ Given a noisy training dataset $\mathbf { \mathcal { D } } = \{ ( \mathbf { \mathfrak { x } } _ { i } , y _ { i } ) \} _ { i = 1 } ^ { n }$ , where $\mathbf { \Delta } _ { \mathbf { \mathcal { X } } _ { i } }$ is an image and $y _ { i } \in \{ 1 , . . . , C \}$ is its class label. We aim to train a network that is robust to the noise in training data (i.e. label noise, OOD input, input corruption) and achieves high accuracy on a clean test set. The proposed network consists of three components: (1) a deep encoder (a convolutional neural network) that encodes an image $\mathbf { \Delta } _ { \mathbf { \mathcal { X } } _ { i } }$ to a high-dimensional feature ${ \mathbf { } } v _ { i }$ ; (2) a classifier (a fully-connected layer followed by softmax) that receives ${ \mathbf { } } v _ { i }$ as input and outputs class predictions; (3) a linear autoencoder that projects ${ \bf \nabla } _ { v _ { i } }$ into a low-dimensional embedding $\dot { z } _ { i } \in \mathbb { R } ^ { d }$ . We show an illustration of our method in Figure $^ { 2 , }$ and a pseudo-code in appendix B. Next, we delineate its details.
54
+
55
+ # 3.1 CONTRASTIVE LEARNING IN ROBUST LOW-DIMENSIONAL SUBSPACE
56
+
57
+ Let $z _ { i } = \mathbf { W } _ { \mathrm { e } } { v } _ { i }$ be the linear projection from high-dimensional features to low-dimensional embeddings, and $\hat { z } _ { i } = z _ { i } / \left\| z _ { i } \right\| _ { 2 }$ be the normalized embeddings. We aim to learn robust embeddings with two contrastive losses: unsupervised consistency loss and weakly-supervised mixup prototypical loss.
58
+
59
+ Unsupervised consistency contrastive loss. Following the NT-Xent (Chen et al., 2020) loss for selfsupervised representation learning, our consistency contrastive loss enforces images with semanticpreserving perturbations to have similar embeddings. Specifically, given a miniwe apply weak-augmentation and strong-augmentation to each image, and obtain tch of input $b$ $2 b$ $\{ \pmb { x } _ { i } \} _ { i = 1 } ^ { \breve { 2 } b }$ Weak augmentation is a standard flip-and-shift augmentation strategy, while strong augmentation consists of color and brightness changes with details given in Section 4.
60
+
61
+ We project the inputs into the low-dimensional space to obtain their normalized embeddings $\{ \hat { z } _ { i } \} _ { i = 1 } ^ { 2 b }$ Let be the index of a weakly-augmented input, and $j ( i )$ be the index of the strongaugmented input from the same source image, the consistency contrastive loss is defined as:
62
+
63
+ $$
64
+ \mathcal { L } _ { \mathrm { c c } } = \sum _ { i = 1 } ^ { b } - \log \frac { \exp ( \hat { z } _ { i } \cdot \hat { z } _ { j ( i ) } / \tau ) } { \sum _ { k = 1 } ^ { 2 b } \mathbb { 1 } _ { i \neq k } \exp ( \hat { z } _ { i } \cdot \hat { z } _ { k } / \tau ) } ,
65
+ $$
66
+
67
+ where $\tau$ is a scalar temperature parameter. The consistency contrastive loss maximizes the inner product between the pair of positive embeddings $\hat { z } _ { i }$ and $\hat { z } _ { j ( i ) }$ , while minimizing the inner product between $2 ( b - 1 )$ pairs of negative embeddings. By mapping different views (augmentations) of the same image to neighboring embeddings, the consistency contrastive loss encourages the network to learn discriminative representation that is robust to low-level image corruption.
68
+
69
+ Weakly-supervised mixup prototypical contrastive loss. Our second contrastive loss injects structural knowledge of classes into the embedding space. Let $\mathcal { T } _ { c }$ denote indices for the subset of images in $\mathcal { D }$ labeled with class $c$ , we calculate the class prototype as the normalized mean embedding:
70
+
71
+ $$
72
+ z ^ { c } = \frac { 1 } { \left| \mathbb { Z } _ { c } \right| } \sum _ { i \in \mathbb { Z } _ { c } } \hat { z } _ { i } , \hat { z } ^ { c } = \frac { z ^ { c } } { \left\| z ^ { c } \right\| _ { 2 } } ,
73
+ $$
74
+
75
+ where $\hat { z } _ { i }$ is the embedding of a center-cropped image, and the class prototypes are calculated at the beginning of each epoch.
76
+
77
+ The prototypical contrastive loss enforces an image embedding $\hat { z } _ { i }$ to be more similar to its corresponding class prototype $\hat { z } ^ { y _ { i } }$ , in contrast to other class prototypes:
78
+
79
+ $$
80
+ \mathcal { L } _ { \mathrm { p c } } ( \hat { z } _ { i } , y _ { i } ) = - \log \frac { \exp ( \hat { z } _ { i } \cdot \hat { z } ^ { y _ { i } } / \tau ) } { \sum _ { c = 1 } ^ { C } \exp ( \hat { z } _ { i } \cdot \hat { z } ^ { c } / \tau ) } .
81
+ $$
82
+
83
+ Since the label $y _ { i }$ is noisy, we would like to regularize the encoder from memorizing training labels. Mixup (Zhang et al., $\boxed { 2 0 1 8 }$ has been shown to be an effective method against label noise (Arazo et al., $\mathord { \left. \kern - delimiterspace \right)} \frac { 2 0 1 9 } { \mathrm { ~ L i ~ e t ~ a l . } } \mathord { \left[ 2 0 2 0 \mathrm { a } \right] } $ . Inspired by it, we create virtual training samples by linearly interpolating a sample (indexed by $i$ ) with another sample (indexed by $m ( i ) .$ ) randomly chosen from the same minibatch:
84
+
85
+ $$
86
+ \begin{array} { r } { \pmb { x } _ { i } ^ { m } = \lambda \pmb { x } _ { i } + ( 1 - \lambda ) \pmb { x } _ { m ( i ) } , } \end{array}
87
+ $$
88
+
89
+ where $\lambda \sim \operatorname { B e t a } ( \alpha , \alpha )$
90
+
91
+ Let $\hat { z } _ { i } ^ { m }$ be the normalized embedding for $\pmb { x } _ { i } ^ { m }$ , the mixup version of the prototypical contrastive loss is defined as a weighted combination of the two ${ \mathcal { L } } _ { \mathrm { p c } }$ w.r.t class $y _ { i }$ and $y _ { m ( i ) }$ . It enforces the embedding for the interpolated input to have the same linear relationship $w . r . t .$ . the class prototypes.
92
+
93
+ $$
94
+ \mathcal { L } _ { \mathrm { p c . m i x } } = \sum _ { i = 1 } ^ { 2 b } \lambda \mathcal { L } _ { \mathrm { p c } } ( \hat { z } _ { i } ^ { m } , y _ { i } ) + ( 1 - \lambda ) \mathcal { L } _ { \mathrm { p c } } ( \hat { z } _ { i } ^ { m } , y _ { m ( i ) } ) .
95
+ $$
96
+
97
+ Reconstruction loss. We also train a linear decoder $\mathbf { W } _ { \mathrm { d } }$ to reconstruct the high-dimensional feature ${ \mathbf { } } v _ { i }$ based on $z _ { i }$ . The reconstruction loss is defined as:
98
+
99
+ $$
100
+ \mathcal { L } _ { \mathrm { r e c o n } } = \sum _ { i = 1 } ^ { 2 b } \left\| \pmb { v } _ { i } - \mathbf { W } _ { \mathrm { d } } \pmb { z } _ { i } \right\| _ { 2 } ^ { 2 } .
101
+ $$
102
+
103
+ There are several benefits for training the autoencoder. First, with an optimal linear autoencoder, ${ \bf W } _ { \mathrm { e } }$ will project ${ \mathbf { } } v _ { i }$ into its low-dimensional principal subspace and can be understood as applying PCA $\mathrm { ( \mathbb { B } a l d i \ \& \ H o r n i k | , \frac { } { | 9 8 9 ) } }$ Thus the low-dimensional representation $z _ { i }$ is intrinsically robust to input noise. Second, minimizing the reconstruction error is maximizing a lower bound of the mutual information between ${ \mathbf { } } v _ { i }$ and $z _ { i }$ (Vincent et al., $\boxed { 2 0 1 0 }$ . Therefore, knowledge learned from the proposed contrastive losses can be maximally preserved in the high-dimensional representation, which helps regularize the classifier.
104
+
105
+ Classification loss. Given the softmax output from the classifier, ${ \pmb p } ( { \pmb y } ; { \pmb x } _ { i } )$ , we define the classification loss as the cross-entropy loss. Note that it is only applied to the weakly-augmented inputs.
106
+
107
+ $$
108
+ \mathcal { L } _ { \mathrm { c e } } = - \sum _ { i = 1 } ^ { b } \log p ( y _ { i } ; \pmb { x } _ { i } ) .
109
+ $$
110
+
111
+ ![](images/d37d4c61b89760d47df7abc4d1404e044ee37a5e9c3d002a73d196c2e4369eb5.jpg)
112
+ Figure 3: Curriculum learned by the proposed label correction method for training on CIFAR datasets with $50 \%$ sym. noise. (a) Accuracy of pseudo-labels w.r.t to clean training labels. (b) Number of samples in the weakly-supervised subset $\mathcal { D } _ { \mathrm { s u p } } ^ { t }$ . (c) Label noise ratio in the weakly-supervised subset.
113
+
114
+ The overall training objective is to minimize a weighted sum of all losses:
115
+
116
+ $$
117
+ \mathcal { L } = \mathcal { L } _ { \mathrm { c e } } + \omega _ { \mathrm { c c } } \mathcal { L } _ { \mathrm { c c } } + \omega _ { \mathrm { p c } } \mathcal { L } _ { \mathrm { p c . m i x } } + \omega _ { \mathrm { r e c o n } } \mathcal { L } _ { \mathrm { r e c o n } }
118
+ $$
119
+
120
+ For all experiments, we fix $\omega _ { \mathrm { c c } } = 1$ , $\omega _ { \mathrm { r e c o n } } = 1$ , and change $\omega _ { \mathrm { p c } }$ only across datasets.
121
+
122
+ # 3.2 NOISE CLEANING WITH SMOOTH NEIGHBORS
123
+
124
+ After warming-up the model by training with the noisy labels $\{ y _ { i } \} _ { i = 1 } ^ { n }$ for $t _ { 0 }$ epochs, we aim to clean the noise by generating a soft pseudo-label $\pmb q _ { i }$ for each training sample. Different from previous methods that perform label correction purely using the model’s softmax prediction, our method exploits the structure of the low-dimensional subspace by aggregating information from top- $k$ neighboring samples, which helps alleviate the confirmation bias problem.
125
+
126
+ At the $t$ -th epoch, for each sample $\mathbf { \Delta } _ { \mathbf { \mathcal { X } } _ { i } }$ , let $\mathbf { \Delta } _ { p _ { i } ^ { t } } ^ { t }$ be the classifier’s softmax prediction, let $\pmb q _ { i } ^ { t - 1 }$ be its soft label from the previous epoch, we calculate the soft label for the current epoch as:
127
+
128
+ $$
129
+ \pmb { q } _ { i } ^ { t } = \frac { 1 } { 2 } \pmb { p } _ { i } ^ { t } + \frac { 1 } { 2 } \sum _ { j = 1 } ^ { k } w _ { i j } ^ { t } \pmb { q } _ { j } ^ { t - 1 } ,
130
+ $$
131
+
132
+ where $w _ { i j } ^ { t }$ represents the normalized affinity between a sample and its neighbor and is defined as $\begin{array} { r } { w _ { i j } ^ { t } = \frac { \mathrm { { ' } } \exp ( \hat { z } _ { i } ^ { t } \cdot \hat { z } _ { j } ^ { t } / \tau ) } { \sum _ { j = 1 } ^ { k } \exp ( \hat { z } _ { i } ^ { t } \cdot \hat { z } _ { j } ^ { t } / \tau ) } } \end{array}$ . We set $k = 2 0 0$ in all experiments.
133
+
134
+ The soft label defined by eqn. $( 9 )$ is the minimizer of the following quadratic loss function:
135
+
136
+ $$
137
+ J ( { \pmb q } _ { i } ^ { t } ) = \sum _ { j = 1 } ^ { k } w _ { i j } ^ { t } \left\| { \pmb q } _ { i } ^ { t } - { \pmb q } _ { j } ^ { t - 1 } \right\| _ { 2 } ^ { 2 } + \left\| { \pmb q } _ { i } ^ { t } - { \pmb p } _ { i } ^ { t } \right\| _ { 2 } ^ { 2 } .
138
+ $$
139
+
140
+ The first term is a smoothness constraint which encourages the soft label to take a similar value as its neighbors’ labels, whereas the second term attempts to maintain the model’s class prediction.
141
+
142
+ We construct a weakly-supervised subset which contains (1) clean sample whose soft label score for the original class $y _ { i }$ is higher than a threshold $\eta _ { 0 }$ , (2) pseudo-labeled sample whose maximum soft label score exceeds a threshold $\eta _ { 1 }$ . For pseudo-labeled samples, we convert their soft labels into hard labels by taking the class with the maximum score.
143
+
144
+ $$
145
+ \mathcal { D } _ { \operatorname* { s u p } } ^ { t } = \{ \alpha _ { i } , y _ { i } \mid q _ { i } ^ { t } ( y _ { i } ) > \eta _ { 0 } \} \cup \{ x _ { i } , \hat { y } _ { i } ^ { t } = \arg \operatorname* { m a x } _ { c } q _ { i } ^ { t } ( c ) \mid \forall \operatorname* { m a x } _ { c } q _ { i } ^ { t } ( c ) > \eta _ { 1 } , c \in \{ 1 , . . , C \} \}
146
+ $$
147
+
148
+ Given the weakly-supervised subset, we modify the classification loss $\mathcal { L } _ { \mathrm { c e } }$ , the mixup prototypical contrastive loss $\mathcal { L } _ { \mathrm { p c . m i x } }$ , and the calculation of prototypes $\hat { z } ^ { c }$ , such that they only use samples from $\mathcal { D } _ { \mathrm { s u p } } ^ { t }$ . The unsupervised losses (i.e. ${ \mathcal { L } } _ { \mathrm { c c } }$ and $\mathcal { L } _ { \mathrm { r e c o n } }$ ) still operate on all training samples.
149
+
150
+ Learning curriculum. Our iterative noise cleaning method learns an effective training curriculum, which gradually increases the size of $\mathcal { D } _ { \mathrm { s u p } } ^ { t }$ as the pseudo-labels become more accurate. To demonstrate such curriculum, we analyse the noise cleaning statistics for training our model on CIFAR-10 and CIFAR-100 datasets with $50 \%$ label noise (experimental details explained in the next section). In Figure $\bigtriangledown$ (a), we show the accuracy of the soft pseudo-labels $w . r . t$ to clean training labels (only used for analysis purpose). Our method can significantly reduce the ratio of label noise from $50 \%$ to $5 \%$ (for CIFAR-10) and $17 \%$ (for CIFAR-100). Figure $\dot { 3 }$ (b) shows the size of $\mathcal { D } _ { \mathrm { s u p } } ^ { t }$ as a percentage of the total number of training samples, and Figure $\boxed { 3 }$ (c) shows the effective label noise ratio within the weakly-supervised subset $\mathcal { D } _ { \mathrm { s u p } } ^ { t }$ . Our method maintains a low noise ratio in the weakly-supervised subset, while gradually increasing its size to utilize more samples for the weakly-supervised losses.
151
+
152
+ Table 1: Comparison with state-of-the-art methods on CIFAR datasets with label noise. Numbers indicate average test accuracy $( \% )$ over last 10 epochs. We report results over 3 independent runs with randomly-generated label noise. Results for previous methods are copied from Arazo et al. $\boxed { 2 0 1 9 }$ ; Li et al. $\textcircled { 2 0 2 0 2 }$ We re-run DivideMix (without ensemble) using the publicly available code on the same noisy data as ours.
153
+
154
+ <table><tr><td rowspan=1 colspan=6>Dataset CIFAR-10 CIFAR-100Noise type Sym 20% Sym 50% Asym 40% Sym 20% Sym 50%</td></tr><tr><td rowspan=9 colspan=1>Cross-Entropy (Li et al. 2020a)ForwardPatrini et al.12017Co-teaching+ (Yu et al.12019Mixup(Zhang et al.2018) P-correcuon (Yi&amp; Wu [2019)MLNTLi et al2019)M-correcion (Arazo et al]2019)DivideMix (Li et al.2020a)DivideMix (reproduced)</td><td rowspan=9 colspan=1>82.783.188.292.392.092.093.895.095.1±0.1</td><td rowspan=1 colspan=1>57.9</td><td rowspan=1 colspan=1>72.3</td><td rowspan=1 colspan=1>61.8</td><td rowspan=1 colspan=1>37.3</td></tr><tr><td rowspan=1 colspan=1>59.4</td><td rowspan=1 colspan=1>83.1</td><td rowspan=1 colspan=1>61.4</td><td rowspan=1 colspan=1>37.3</td></tr><tr><td rowspan=1 colspan=1>84.1</td><td rowspan=1 colspan=1>1</td><td rowspan=1 colspan=1>64.1</td><td rowspan=1 colspan=1>45.3</td></tr><tr><td rowspan=1 colspan=1>77.6</td><td rowspan=1 colspan=1>1</td><td rowspan=1 colspan=1>66.0</td><td rowspan=1 colspan=1>46.6</td></tr><tr><td rowspan=1 colspan=1>88.7</td><td rowspan=1 colspan=1>88.1</td><td rowspan=1 colspan=1>68.1</td><td rowspan=1 colspan=1>56.4</td></tr><tr><td rowspan=1 colspan=1>88.8</td><td rowspan=1 colspan=1>88.6</td><td rowspan=1 colspan=1>67.7</td><td rowspan=1 colspan=1>58.0</td></tr><tr><td rowspan=3 colspan=1>91.993.793.6±0.2</td><td rowspan=1 colspan=1>86.3</td><td rowspan=1 colspan=1>73.4</td><td rowspan=1 colspan=1>65.4</td></tr><tr><td rowspan=1 colspan=1>91.4</td><td rowspan=1 colspan=1>74.8</td><td rowspan=1 colspan=1>72.1</td></tr><tr><td rowspan=1 colspan=1>91.3±0.8</td><td rowspan=1 colspan=1>75.1±0.2</td><td rowspan=1 colspan=1>72.1±0.3</td></tr><tr><td rowspan=1 colspan=1>Ours (classifier)Ours (knn)</td><td rowspan=1 colspan=1>95.8±0.195.9±0.1</td><td rowspan=1 colspan=1>94.3±0.294.5±0.1</td><td rowspan=1 colspan=1>91.9±0.892.4±0.9</td><td rowspan=1 colspan=1>79.1±0.179.4±0.1</td><td rowspan=1 colspan=1>74.8±0.475.0±0.4</td></tr></table>
155
+
156
+ # 4 EXPERIMENT
157
+
158
+ In this section, we validate the proposed method on multiple benchmarks with controlled noise and real-world noise. Our method achieves state-of-the-art performance across all benchmarks. For fair comparison, we compare with DivideMix $\mathbb { ( L i ~ e t ~ a l . ) } \index { [ 2 0 2 0 4 ) }$ without ensemble. In appendix A, we report the result of our method with co-training and ensemble, which further improves performance.
159
+
160
+ # 4.1 EXPERIMENTS ON CONTROLLED NOISY LABELS
161
+
162
+ Dataset. Following Tanaka et al. (2018); Li et al. $\textcircled { 1 2 0 2 0 } \textcircled { 2 }$ we corrupt the training data of CIFAR10 and CIFAR-100 (Krizhevsky & Hinton, $\textcircled { 2 0 0 9 }$ with two types of label noise: symmetric and asymmetric. Symmetric noise is injected by randomly selecting a percentage of samples and changing their labels to random labels. Asymmetric noise is class-dependant, where labels are only changed to similar classes (e.g. dog cat, deer horse). We experiment with multiple noise ratios: sym $20 \%$ , sym $50 \%$ , and asym $40 \%$ (see results for sym $80 \%$ and $90 \%$ in appendix $\mathbf { A } )$ . Note that asymmetric noise ratio cannot exceed $50 \%$ because certain classes would become theoretically indistinguishable.
163
+
164
+ Implementation details. Same as previous works $\left( \mathrm { A r a z o ~ e t ~ a l . } \right) \left[ 2 0 1 9 \right. \mathrm { [ L i ~ e t ~ a l . ] } \left. 2 0 2 0 \mathrm { a } \right.$ we use PreAct ResNet-18 (He et al., $\boxed { 2 0 1 6 }$ as our encoder model. We set the dimensionality of the bottleneck layer as $d = 5 0$ . Our model is trained using SGD with a momentum of 0.9, a weight decay of 0.0005, and a batch size of 128. The network is trained for 200 epochs. We set the initial learning rate as 0.02 and use a cosine decay schedule. We apply standard crop and horizontal flip as the weak augmentation. For strong augmentation, we use AugMix $( \mathrm { \overline { { H e n d r y c k s \ e t { a l . } } } } , \mathrm { \overline { { 2 0 2 0 } } } )$ , though other methods (e.g. SimAug (Chen et al., $\boxed { 2 0 2 0 }$ ) work equally well. For all CIFAR experiments, we fix the hyper-parameters as $\omega _ { \mathrm { c c } } = 1 , \omega _ { \mathrm { p c } } = 5$ , $\omega _ { \mathrm { r e c o n } } = 1 , \tau = 0 . 3 , \alpha = 8 , \eta _ { 1 } = 0 . 9$ . For CIFAR-10, we activate noise cleaning at epoch $t _ { 0 } = 5$ , and set $\eta _ { 0 } = 0 . 1$ (sym.) or 0.4 (asym.). For CIFAR-100, we activate noise cleaning at epoch $t _ { 0 } = 1 5$ , and set $\eta _ { 0 } = 0 . 0 2$ . We use faiss-gpu (Johnson et al., 2017) for efficient knn search in the low-dimensional subspace, which finishes within 1 second.
165
+
166
+ Results. Table $^ 1$ shows the comparison with existing methods. Our method outperforms previous methods across all label noise settings. On the more challenging CIFAR-100, we achieve $3- 4 \%$ accuracy improvement compared to the second-best method DivideMix. Moreover, our method is more computational efficient than DivideMix, which needs co-training for noise filtering.
167
+
168
+ <table><tr><td rowspan="2">CIFAR-10 50% sym. noise</td><td rowspan="2">CE</td><td>Iterative</td><td>GCE</td><td rowspan="2">2018</td><td rowspan="2">DivideMix (Li et al. 2020a</td><td rowspan="2">Ours (cls.)</td><td rowspan="2">Ours (knn)</td></tr><tr><td>Wang et al. 2018</td><td>Zhang &amp; Sabuncu</td></tr><tr><td>+ CIFAR-100 20k</td><td>53.6</td><td>87.2</td><td>87.3</td><td></td><td>89.0</td><td>91.5</td><td>93.1±0.3</td></tr><tr><td>+ SVHN 20k</td><td>58.1</td><td>88.6</td><td>88.8</td><td></td><td>91.9</td><td>93.3</td><td>93.9±0.2</td></tr><tr><td>+ Image Corruption</td><td>53.8</td><td>87.7</td><td>87.9</td><td></td><td>89.8</td><td>91.4</td><td>91.6±0.2</td></tr></table>
169
+
170
+ Table 2: Comparison with state-of-the-art methods on datasets with label noise and input noise. Numbers indicate average test accuracy $( \% )$ over last 10 epochs. We report results over 3 independent runs with randomlygenerated noise. We re-run previous methods using publicly available code with the same noisy data and model architecture as ours.
171
+
172
+ In order to demonstrate the advantage of the proposed low-dimensional embeddings, we perform $k$ - nearest neighbor (knn) classification ( $k = 2 0 0$ ), by projecting test images into normalized embeddings. Compared to the trained classifier, knn achieves higher accuracy, which verifies the robustness of the learned low-dimensional representations.
173
+
174
+ # 4.2 EXPERIMENTS ON CONTROLLED NOISY LABELS WITH NOISY IMAGES
175
+
176
+ Dataset. We further corrupt a noisy CIFAR-10 dataset (sym. $50 \%$ ) by injecting two types of input noise: out-of-distribution (OOD) images and input corruption. For OOD noise, we follow Wang et al. (2018) and add $2 0 k$ images from either one of the two other datasets: CIFAR-100 and SVHN (Netzer $\boxed { \mathrm { e t ~ a l . } , \boxed { 2 0 1 1 } }$ , enlarging the training set to $7 0 k$ . A random CIFAR-10 label is assigned to each OOD image. For input corruption, we follow Hendrycks & Dietterich $\textcircled { 2 0 1 9 }$ and corrupt each image in CIFAR-10 with a noise randomly chosen from the following four types: Fog, Snow, Motion blur and Gaussian noise. Examples of both types of input noise are shown in Figure 4. We follow the same implementation details as the CIFAR-10 experiments described in Section 4.1.
177
+
178
+ ![](images/ac822823753a2fac58f6037c832534dcce1705ad8d63b701e0143ca0a0dbf8a7.jpg)
179
+ Figure 4: Examples of input noise injected to CIFAR-10.
180
+
181
+ Results. Table 2 shows the results, where our method consistently outperforms existing methods by a substantial margin. We observe that OOD images from a similar domain (CIFAR-100) are more harmful than OOD images from a more different domain (SVHN). This is because noisy images that are closer to the test data distribution are more likely to distort the decision boundary in a way that negatively affects test performance. Nevertheless, performing knn classification using the learned embeddings demonstrates high robustness to input noise.
182
+
183
+ In Figure $5 ,$ we show the t-SNE (Maaten & Hinton, 2008) visualization of the low-dimensional embeddings for all training samples. As training progresses, our model learns to separate OOD samples (represented as gray points) from in-distribution samples, and cluster samples of the same class together despite their noisy labels.
184
+
185
+ ![](images/7fcaf6998097aa975e3eac8c47e1d176c9a4ea41a30d28612dbc18b3e6873bec.jpg)
186
+ Figure 5: t-SNE visualization of low-dimensional embeddings for CIFAR-10 images (color represents the true class) $+ \mathrm { O O D }$ images (gray points) from CIFAR-100 or SVHN. The model is trained on noisy CIFAR-10 $5 0 k$ images with $50 \%$ label noise) and $2 0 k$ OOD images with random labels. Our method can effectively learn to (1) cluster CIFAR-10 images according to their true class, despite their noisy labels; (2) separate OOD samples from in-distribution samples, such that their harm is reduced.
187
+
188
+ Table 3: Comparison with state-of-the-art methods trained on WebVision (mini).
189
+
190
+ <table><tr><td colspan="2">Test dataset</td><td colspan="2">WebVision</td><td colspan="2">ILSVRC12</td></tr><tr><td colspan="2">Accuracy (%)</td><td>top1</td><td>top5</td><td>top1</td><td>top5</td></tr><tr><td colspan="2"> Forward (Patrini et al.2017)</td><td>61.1</td><td>82.7</td><td>57.4</td><td>82.4</td></tr><tr><td colspan="2">Decoupling (Malach &amp; Shalev-Shwartz 12017</td><td>62.5</td><td>84.7</td><td>58.3</td><td>82.3</td></tr><tr><td colspan="2">D2L (Ma et al12018)</td><td>62.7</td><td>84.0</td><td>57.8</td><td>81.4</td></tr><tr><td colspan="2">MentorNet (Jiang et al. 2018</td><td>63.0</td><td>81.4</td><td>57.8</td><td>79.9</td></tr><tr><td colspan="2">Co-teaching (Han et al. 2018)</td><td>63.6</td><td>85.2</td><td>61.5</td><td>84.7</td></tr><tr><td colspan="2">INCV (Chen et al.,2019)</td><td>65.2</td><td>85.3</td><td>61.0</td><td>85.0</td></tr><tr><td colspan="2">DivideMix (Li et al. 12020a)</td><td>75.9</td><td>90.1</td><td>73.3</td><td>89.2</td></tr><tr><td colspan="2">Ours (w/o noise cleaning)</td><td>75.5</td><td>90.2</td><td>72.0</td><td>90.0</td></tr><tr><td colspan="2">Ours (classifier)</td><td>76.3</td><td>91.5</td><td>73.3</td><td>91.2</td></tr><tr><td colspan="2">Ours (knn)</td><td>77.8</td><td>91.3</td><td>74.4</td><td>90.9</td></tr></table>
191
+
192
+ Table 4: Comparison with state-of-the-art methods on Clothing1M dataset.
193
+
194
+ <table><tr><td>Method</td><td>CE</td><td>Forward</td><td>Joint-Opt</td><td>MLNT</td><td>MentorMix</td><td>SL</td><td>DivideMix</td><td>Ours (cls.)</td><td>Ours (knn)</td></tr><tr><td>Accuracy</td><td>69.21</td><td>69.84</td><td>72.16</td><td>73.47</td><td>74.30</td><td>74.45</td><td>74.48</td><td>74.84</td><td>74.97</td></tr></table>
195
+
196
+ # 4.3 EXPERIMENTS ON REAL-WORLD NOISY DATA
197
+
198
+ Dataset and implementation details. We verify our method on two real-word noisy datasets: WebVision $\mathrm { ( } \mathbf { L i } \mathrm { e t a l . } \mathrm { , } \overline { { 2 0 1 7 } } \mathrm { ) }$ and Clothing1M (Xiao et al., 2015). Webvision contains images crawled from the web using the same concepts from ImageNet ILSVRC12 $( \mathbb { D e n g \ e t \ a l . } ) . 2 0 0 9 )$ . Following previous works (Chen et al., 2019; Li et al., 2020a), we perform experiments on the first 50 classes of the Google image subset. Clothing1M consists of images collected from online shopping websites where labels were generated from surrounding texts. Note that we do not use the additional clean set for training. For both experiments, we use the same model architecture as previous methods. More implementation details are given in the appendix.
199
+
200
+ Results. We report the results for WebVision in Table $\textcircled { 3 }$ and Clothing1M in Table $4 ,$ where we achieve state-of-the-art performance on both datasets. Our method achieves competitive performance on WebVision even without performing noise cleaning, which demonstrates the robustness of the learned representation. Appendix D shows examples of noisy images that are cleaned by our method.
201
+
202
+ # 4.4 ABLATION STUDY
203
+
204
+ Effect of the proposed components. In order to study the effect of the proposed components, we remove each of them and report accuracy of the classifier (knn) across four benchmarks. As shown in Table $\boxed { 5 }$ the mixup prototypical contrastive loss $( \mathcal { L } _ { \mathrm { p c . m i x } } )$ is most crucial to the model’s performance. The consistency contrastive loss $( \mathcal { L } _ { \mathrm { c c } } )$ has a stronger effect with corrupted input or larger number of classes. We also experiment with removing mixup and using the standard prototypical contrastive loss, and using standard data augmentation (crop and horizontal flip) instead of AugMix. The proposed method still achieves state-of-the-art result with standard data augmentation.
205
+
206
+ <table><tr><td></td><td>| CIFAR-10 Sym 50%</td><td>6|+CIFAR-10020k</td><td>+ Image Corruption</td><td>CIFAR-100 Sym 50%</td></tr><tr><td>w/o Lpc_mix</td><td>85.9 (86.1)</td><td>79.7 (81.5)</td><td>81.6 (81.7)</td><td>65.6 (65.9)</td></tr><tr><td>w/o Lcc</td><td>93.7 (93.8)</td><td>91.3 (91.5)</td><td>89.4 (89.5)</td><td>71.9 (71.8)</td></tr><tr><td>w/o Lrecon</td><td>93.3 (94.0)</td><td>90.7 (92.9)</td><td>90.2 (91.0)</td><td>73.2 (73.9)</td></tr><tr><td>w/o mixup</td><td>89.5 (89.9)</td><td>85.4 (87.0)</td><td>84.7 (84.9)</td><td>69.3 (69.7)</td></tr><tr><td> w/ standard aug.</td><td>94.1 (94.3)</td><td>90.8 (92.9)</td><td>90.5 (90.7)</td><td>74.5 (75.0)</td></tr><tr><td>DivideMix</td><td>93.6</td><td>89.0</td><td>89.8</td><td>72.1</td></tr><tr><td>Ours</td><td>94.3 (94.5)</td><td>91.5 (93.1)</td><td>91.4 (91.6)</td><td>74.8 (75.0)</td></tr></table>
207
+
208
+ Table 5: Effect of the proposed components. We show the accuracy of the classifier (knn) on four benchmarks with different noise. Note that DivideMix (Li et al., 2020a) also performs mixup.
209
+
210
+ Effect of bottleneck dimension. We vary the dimensionality of the bottleneck layer, $d$ , and examine the performance change in Table $\boxed { 6 }$ Our model is in general not very sensitive to the change of $d$ .
211
+ Table 6: Classifier’s test accuracy $( \% )$ with different low-dimensions.
212
+
213
+ <table><tr><td>bottleneck dimension |d= 25|d= 50丨d=100|d = 200</td><td></td><td></td><td></td><td></td></tr><tr><td>CIFAR-10 Sym 50%</td><td>93.4</td><td>94.3</td><td>94.2</td><td>93.7</td></tr><tr><td>CIFAR-100 Sym 50%</td><td>73.8</td><td>74.8</td><td>74.4</td><td>73.8</td></tr></table>
214
+
215
+ # 5 CONCLUSION
216
+
217
+ This paper proposes noise-robust contrastive learning, a new method to combat noise in training data by learning robust representation. We demonstrate our model’s state-of-the-art performance with extensive experiments on multiple noisy datasets. For future work, we are interested in adapting our method to other domains such as NLP or speech. We would also like to explore the potential of our method for learning transferable representations that could be useful for down-stream tasks.
218
+
219
+ # REFERENCES
220
+
221
+ Eric Arazo, Diego Ortego, Paul Albert, Noel E. O’Connor, and Kevin McGuinness. Unsupervised label noise modeling and loss correction. In ICML, pp. 312–321, 2019.
222
+
223
+ Pierre Baldi and Kurt Hornik. Neural networks and principal component analysis: Learning from examples without local minima. Neural Networks, 2(1):53–58, 1989.
224
+
225
+ Pengfei Chen, Benben Liao, Guangyong Chen, and Shengyu Zhang. Understanding and utilizing deep neural networks trained with noisy labels. In ICML, pp. 1062–1070, 2019.
226
+
227
+ Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. arXiv preprint arXiv:2002.05709, 2020.
228
+
229
+ Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Fei-Fei Li. Imagenet: A large-scale hierarchical image database. In CVPR, pp. 248–255, 2009.
230
+
231
+ Bo Han, Quanming Yao, Xingrui Yu, Gang Niu, Miao Xu, Weihua Hu, Ivor W. Tsang, and Masashi Sugiyama. Co-teaching: Robust training of deep neural networks with extremely noisy labels. In NeurIPS, pp. 8536–8546, 2018.
232
+
233
+ Jiangfan Han, Ping Luo, and Xiaogang Wang. Deep self-learning from noisy labels. In ICCV, pp. 5137–5146, 2019.
234
+
235
+ Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In ECCV, pp. 630–645, 2016.
236
+
237
+ Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross Girshick. Momentum contrast for unsupervised visual representation learning. arXiv preprint arXiv:1911.05722, 2019.
238
+
239
+ Dan Hendrycks and Thomas Dietterich. Benchmarking neural network robustness to common corruptions and perturbations. In ICLR, 2019.
240
+
241
+ Dan Hendrycks, Mantas Mazeika, Duncan Wilson, and Kevin Gimpel. Using trusted data to train deep networks on labels corrupted by severe noise. In NeurIPS, pp. 10477–10486, 2018.
242
+
243
+ Dan Hendrycks, Norman Mu, Ekin Dogus Cubuk, Barret Zoph, Justin Gilmer, and Balaji Lakshminarayanan. Augmix: A simple data processing method to improve robustness and uncertainty. In ICLR, 2020.
244
+
245
+ Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, and Li Fei-Fei. Mentornet: Learning datadriven curriculum for very deep neural networks on corrupted labels. In ICML, pp. 2309–2318, 2018.
246
+
247
+ Lu Jiang, Di Huang, Mason Liu, and Weilong Yang. Beyond synthetic noise: Deep learning on controlled noisy labels. In ICML, 2020.
248
+
249
+ Jeff Johnson, Matthijs Douze, and Herve J ´ egou. Billion-scale similarity search with gpus. ´ arXiv preprint arXiv:1702.08734, 2017.
250
+
251
+ Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. Mater’s thesis, University of Toronto, 2009.
252
+
253
+ Kuang-Huei Lee, Xiaodong He, Lei Zhang, and Linjun Yang. Cleannet: Transfer learning for scalable image classifier training with label noise. In CVPR, pp. 5447–5456, 2018.
254
+
255
+ Junnan Li, Yongkang Wong, Qi Zhao, and Mohan S. Kankanhalli. Learning to learn from noisy labeled data. In CVPR, pp. 5051–5059, 2019.
256
+
257
+ Junnan Li, Richard Socher, and Steven C.H. Hoi. Dividemix: Learning with noisy labels as semisupervised learning. In ICLR, 2020a.
258
+
259
+ Junnan Li, Pan Zhou, Caiming Xiong, Richard Socher, and Steven C.H. Hoi. Prototypical contrastive learning of unsupervised representations. arXiv preprint arXiv:2005.04966, 2020b.
260
+
261
+ Wen Li, Limin Wang, Wei Li, Eirikur Agustsson, and Luc Van Gool. Webvision database: Visual learning and understanding from web data. arXiv:1708.02862, 2017.
262
+
263
+ Yueming Lyu and Ivor W. Tsang. Curriculum loss: Robust learning and generalization against label corruption. In ICLR, 2020.
264
+
265
+ Xingjun Ma, Yisen Wang, Michael E. Houle, Shuo Zhou, Sarah M. Erfani, Shu-Tao Xia, Sudanthi N. R. Wijewickrema, and James Bailey. Dimensionality-driven learning with noisy labels. In ICML, pp. 3361–3370, 2018.
266
+
267
+ Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9:2579–2605, 2008.
268
+
269
+ Eran Malach and Shai Shalev-Shwartz. Decoupling “when to update” from “how to update”. In NIPS, pp. 960–970, 2017.
270
+
271
+ Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. In NIPS-WS, 2011.
272
+
273
+ Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2018.
274
+
275
+ Giorgio Patrini, Alessandro Rozza, Aditya Krishna Menon, Richard Nock, and Lizhen Qu. Making deep neural networks robust to label noise: A loss correction approach. In CVPR, pp. 2233–2241, 2017.
276
+
277
+ Scott E. Reed, Honglak Lee, Dragomir Anguelov, Christian Szegedy, Dumitru Erhan, and Andrew Rabinovich. Training deep neural networks on noisy labels with bootstrapping. In ICLR, 2015.
278
+
279
+ Yanyao Shen and Sujay Sanghavi. Learning with bad training data via iterative trimmed loss minimization. In ICML, pp. 5739–5748, 2019.
280
+
281
+ Christian Szegedy, Sergey Ioffe, Vincent Vanhoucke, and Alexander A. Alemi. Inception-v4, inception-resnet and the impact of residual connections on learning. In AAAI, pp. 4278–4284, 2017.
282
+
283
+ Daiki Tanaka, Daiki Ikami, Toshihiko Yamasaki, and Kiyoharu Aizawa. Joint optimization framework for learning with noisy labels. In CVPR, pp. 5552–5560, 2018.
284
+
285
+ Arash Vahdat. Toward robustness against label noise in training deep discriminative neural networks. In NIPS, pp. 5601–5610, 2017.
286
+
287
+ Andreas Veit, Neil Alldrin, Gal Chechik, Ivan Krasin, Abhinav Gupta, and Serge J. Belongie. Learning from noisy large-scale datasets with minimal supervision. In CVPR, pp. 6575–6583, 2017.
288
+
289
+ Pascal Vincent, Hugo Larochelle, Isabelle Lajoie, Yoshua Bengio, and Pierre-Antoine Manzagol. Stacked denoising autoencoders: Learning useful representations in a deep network with a local denoising criterion. J. Mach. Learn. Res., 11:3371–3408, 2010.
290
+ Yisen Wang, Weiyang Liu, Xingjun Ma, James Bailey, Hongyuan Zha, Le Song, and Shu-Tao Xia. Iterative learning with open-set noisy labels. In CVPR, pp. 8688–8696, 2018.
291
+ Zhirong Wu, Yuanjun Xiong, Stella X. Yu, and Dahua Lin. Unsupervised feature learning via non-parametric instance discrimination. In CVPR, pp. 3733–3742, 2018.
292
+ Tong Xiao, Tian Xia, Yi Yang, Chang Huang, and Xiaogang Wang. Learning from massive noisy labeled data for image classification. In CVPR, pp. 2691–2699, 2015.
293
+ Kun Yi and Jianxin Wu. Probabilistic end-to-end noise correction for learning with noisy labels. In CVPR, 2019.
294
+ Xingrui Yu, Bo Han, Jiangchao Yao, Gang Niu, Ivor W. Tsang, and Masashi Sugiyama. How does disagreement help generalization against label corruption? In ICML, pp. 7164–7173, 2019.
295
+ Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. In ICLR, 2017.
296
+ Hongyi Zhang, Moustapha Cisse, Yann N. Dauphin, and David Lopez-Paz. mixup: Beyond empirical ´ risk minimization. In ICLR, 2018.
297
+ Zhilu Zhang and Mert R. Sabuncu. Generalized cross entropy loss for training deep neural networks with noisy labels. In NeurIPS, pp. 8792–8802, 2018.
parse/train/D1E1h-K3jso/D1E1h-K3jso_content_list.json ADDED
@@ -0,0 +1,1507 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "LEARNING FROM NOISY DATA WITH ROBUST REPRESENTATION LEARNING ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 176,
8
+ 101,
9
+ 826,
10
+ 145
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Anonymous authors Paper under double-blind review ",
17
+ "bbox": [
18
+ 183,
19
+ 170,
20
+ 398,
21
+ 198
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "ABSTRACT ",
28
+ "text_level": 1,
29
+ "bbox": [
30
+ 454,
31
+ 234,
32
+ 544,
33
+ 251
34
+ ],
35
+ "page_idx": 0
36
+ },
37
+ {
38
+ "type": "text",
39
+ "text": "Learning from noisy data has attracted much attention, where most methods focus on label noise. In this work, we propose a new framework which simultaneously addresses three types of noise commonly seen in real-world data: label noise, outof-distribution input, and input corruption. In contrast to most existing methods, we combat noise by learning robust representation. Specifically, we embed images into a low-dimensional subspace by training an autoencoder on the deep features. We regularize the geometric structure of the subspace with robust contrastive learning, which includes an unsupervised consistency loss and a supervised mixup prototypical loss. Furthermore, we leverage the structure of the learned subspace for noise cleaning, by aggregating information from neighboring samples. Experiments on multiple benchmarks demonstrate state-of-the-art performance of our method and robustness of the learned representation. Our code will be released1. ",
40
+ "bbox": [
41
+ 233,
42
+ 268,
43
+ 766,
44
+ 435
45
+ ],
46
+ "page_idx": 0
47
+ },
48
+ {
49
+ "type": "text",
50
+ "text": "1 INTRODUCTION ",
51
+ "text_level": 1,
52
+ "bbox": [
53
+ 176,
54
+ 467,
55
+ 336,
56
+ 482
57
+ ],
58
+ "page_idx": 0
59
+ },
60
+ {
61
+ "type": "text",
62
+ "text": "Data in real life is noisy. However, deep models with remarkable performance are mostly trained on clean datasets with high-quality human annotations. Manual data cleaning and labeling is an expensive process that is difficult to scale. On the other hand, there exists almost infinite amount of noisy data online. It is crucial that deep neural networks (DNNs) could harvest noisy training data. However, it has been shown that DNNs are susceptible to overfitting to noise (Zhang et al., 2017). ",
63
+ "bbox": [
64
+ 174,
65
+ 500,
66
+ 825,
67
+ 570
68
+ ],
69
+ "page_idx": 0
70
+ },
71
+ {
72
+ "type": "text",
73
+ "text": "As shown in Figure $\\mathbb { L } ,$ a real-world noisy image dataset often consists of multiple types of noise. Label noise refers to samples that are wrongly labeled as another class (e.g. flower labeled as orange). Out-of-distribution input refers to samples that do not belong to any known classes. Input corruption refers to image-level distortion (e.g. low brightness) that causes data shift between training and test. ",
74
+ "bbox": [
75
+ 174,
76
+ 577,
77
+ 825,
78
+ 632
79
+ ],
80
+ "page_idx": 0
81
+ },
82
+ {
83
+ "type": "text",
84
+ "text": "Most of the methods in literature focus on addressing the more detrimental label noise. Two dominant approaches include: (1) find clean samples as those with smaller loss and assign larger weights to them (Han et al., 2018; Yu et al., 2019; Shen & Sanghavi, 2019; Arazo et al., 2019); (2) relabel noisy samples using model’s predictions (Reed et al., 2015; Ma et al., 2018; Tanaka et al., 2018; Yi & Wu, $\\dot { \\overline { { 2 0 1 9 } } } )$ . The recently proposed DivideMix (Li et al., 2020a) integrates both approaches in a co-training framework, but it also increases computation cost. Previous methods that focus on addressing label noise do not consider out-of-distribution input or input corruption, which limits their performance in real-world scenarios. Furthermore, using a model’s own prediction to relabel samples could cause confirmation bias, where the prediction error accumulates and harms performance. ",
85
+ "bbox": [
86
+ 173,
87
+ 638,
88
+ 825,
89
+ 765
90
+ ],
91
+ "page_idx": 0
92
+ },
93
+ {
94
+ "type": "text",
95
+ "text": "We propose a new direction for effective learning from noisy data. Our method embeds images into noise-robust low-dimensional representations, and regularizes the geometric structure of the representations with contrastive learning. Specifically, our algorithmic contributions include: ",
96
+ "bbox": [
97
+ 174,
98
+ 772,
99
+ 825,
100
+ 814
101
+ ],
102
+ "page_idx": 0
103
+ },
104
+ {
105
+ "type": "text",
106
+ "text": "• We propose noise-robust contrastive learning, which introduces two contrastive losses. The first is an unsupervised consistency contrastive loss. It enforces inputs with perturbations to have similar normalized embeddings, which helps learn robust and discriminative representation. ",
107
+ "bbox": [
108
+ 174,
109
+ 820,
110
+ 825,
111
+ 863
112
+ ],
113
+ "page_idx": 0
114
+ },
115
+ {
116
+ "type": "text",
117
+ "text": "• Our second contrastive loss is a weakly-supervised mixup prototypical loss. We compute class prototypes as normalized mean embeddings, and enforces each sample’s embedding to be closer to its class prototype. Inspired by Mixup (Zhang et al., 2018), we construct virtual training samples as linear interpolation of inputs, and encourage the same linear relationship $w . r . t$ the class prototypes. ",
118
+ "bbox": [
119
+ 178,
120
+ 866,
121
+ 823,
122
+ 895
123
+ ],
124
+ "page_idx": 0
125
+ },
126
+ {
127
+ "type": "image",
128
+ "img_path": "images/638afbb1829c0fd505bc08ee611be1d2461a4ffc9d0e4631f4710188e435bbd6.jpg",
129
+ "image_caption": [
130
+ "Figure 1: Google search images from WebVision (Li et al., 2017) dataset with keyword “orange”. "
131
+ ],
132
+ "image_footnote": [],
133
+ "bbox": [
134
+ 176,
135
+ 102,
136
+ 820,
137
+ 200
138
+ ],
139
+ "page_idx": 1
140
+ },
141
+ {
142
+ "type": "text",
143
+ "text": "",
144
+ "bbox": [
145
+ 178,
146
+ 238,
147
+ 823,
148
+ 268
149
+ ],
150
+ "page_idx": 1
151
+ },
152
+ {
153
+ "type": "text",
154
+ "text": "• We train a linear autoencoder to reconstruct the high-dimensional features using low-dimensional embeddings. The autoendoer enables the high-dimensional features to maximally preserve the robustness of the low-dimensional embeddings, thus regularizing the classifier. ",
155
+ "bbox": [
156
+ 174,
157
+ 272,
158
+ 825,
159
+ 313
160
+ ],
161
+ "page_idx": 1
162
+ },
163
+ {
164
+ "type": "text",
165
+ "text": "• We propose a new noise cleaning method which exploits the structure of the learned representations. For each sample, we aggregate information from its top- $k$ neighbors to create a pseudo-label. A subset of training samples with confident pseudo-labels are selected to compute the weaklysupervised losses. This process can effectively clean both label noise and out-of-distribution (OOD) noise. ",
166
+ "bbox": [
167
+ 174,
168
+ 315,
169
+ 826,
170
+ 385
171
+ ],
172
+ "page_idx": 1
173
+ },
174
+ {
175
+ "type": "text",
176
+ "text": "Our experimental contributions include: ",
177
+ "text_level": 1,
178
+ "bbox": [
179
+ 176,
180
+ 392,
181
+ 449,
182
+ 406
183
+ ],
184
+ "page_idx": 1
185
+ },
186
+ {
187
+ "type": "text",
188
+ "text": "• We experimentally show that our method is robust to label noise, OOD input, and input corruption. Experiments are performed on multiple datasets with controlled noise and real-world noise, where our method achieves state-of-the-art performance. ",
189
+ "bbox": [
190
+ 178,
191
+ 414,
192
+ 823,
193
+ 455
194
+ ],
195
+ "page_idx": 1
196
+ },
197
+ {
198
+ "type": "text",
199
+ "text": "• We demonstrate that the proposed noise cleaning method can effectively clean a majority of label noise. It also learns a curriculum that gradually leverages more samples to compute the weakly-supervised losses as the pseudo-labels become more accurate. ",
200
+ "bbox": [
201
+ 176,
202
+ 459,
203
+ 821,
204
+ 501
205
+ ],
206
+ "page_idx": 1
207
+ },
208
+ {
209
+ "type": "text",
210
+ "text": "We validate the robustness of the learned low-dimensional representation by showing (1) $k$ -nearest neighbor classification outperforms the softmax classifier. (2) OOD samples can be separated from in-distribution samples. The efficacy of the proposed autoencoder is also verified. ",
211
+ "bbox": [
212
+ 176,
213
+ 503,
214
+ 823,
215
+ 546
216
+ ],
217
+ "page_idx": 1
218
+ },
219
+ {
220
+ "type": "text",
221
+ "text": "2 RELATED WORK ",
222
+ "text_level": 1,
223
+ "bbox": [
224
+ 176,
225
+ 563,
226
+ 341,
227
+ 579
228
+ ],
229
+ "page_idx": 1
230
+ },
231
+ {
232
+ "type": "text",
233
+ "text": "Label noise learning. Learning from noisy labels have been extensively studied in the literature. While some methods require access to a small set of clean samples (Xiao et al., 2015; Vahdat, 2017; Veit et al., 2017; Lee et al., 2018; Hendrycks et al., 2018), most methods focus on the more challenging scenario where no clean labels are available. These methods can be categorized into two major types. The first type performs label correction using predictions from the network (Reed et al., 2015; Ma et al., 2018; Tanaka et al., 2018; Yi & Wu, 2019). The second type tries to separate clean samples from corrupted samples, and trains the model on clean samples (Han et al., 2018; Arazo et al., 2019; Jiang et al., 2018; 2020; Wang et al., 2018; Chen et al., 2019; Lyu & Tsang, 2020). The recently proposed DivideMix (Li et al., 2020a) effectively combines label correction and sample selection with the Mixup (Zhang et al., 2018) data augmentation under a co-training framework. However, it cost $2 \\times$ the computational resource of our method. ",
234
+ "bbox": [
235
+ 173,
236
+ 589,
237
+ 825,
238
+ 742
239
+ ],
240
+ "page_idx": 1
241
+ },
242
+ {
243
+ "type": "text",
244
+ "text": "Different from existing methods, our method combats noise by learning noise-robust low-dimensional representations. We propose a more effective noise cleaning method by leveraging the structure of the learned representations. Furthermore, our model is robust not only to label noise, but also to out-of-distribution and corrupted input. A previous work has studied open-set noisy labels (Wang et al., 2018), but their method does not enjoy the same level of robustness as ours. ",
245
+ "bbox": [
246
+ 173,
247
+ 750,
248
+ 825,
249
+ 819
250
+ ],
251
+ "page_idx": 1
252
+ },
253
+ {
254
+ "type": "text",
255
+ "text": "Contrastive learning. Contrastive learning is at the core of recent self-supervised representation learning methods (Chen et al., 2020; He et al., 2019; Oord et al., 2018; Wu et al., 2018). In selfsupervised contrastive learning, two randomly augmented images are generated for each input image. Then a contrastive loss is applied to pull embeddings from the same source image closer, while pushing embeddings from different source images apart. Recently, prototypical contrastive learning (PCL) $\\left. \\underline { { \\mathrm { L i } \\mathrm { e t a l . } } } , \\underline { { \\mathrm { 2 0 2 0 b } } } \\right.$ has been proposed, which uses cluster centroids as prototypes, and trains the network by pulling an image embedding closer to its assigned prototypes. ",
256
+ "bbox": [
257
+ 173,
258
+ 827,
259
+ 825,
260
+ 924
261
+ ],
262
+ "page_idx": 1
263
+ },
264
+ {
265
+ "type": "image",
266
+ "img_path": "images/094bf26750724724011e913dd594ec0ad21b0b1476e88ca023c596fd434b01b1.jpg",
267
+ "image_caption": [
268
+ "Figure 2: Our proposed framework for noise-robust contrastive learning. We project images into a lowdimensional subspace, and regularize the geometric structure of the subspace with $( 1 ) \\mathcal { L } _ { \\mathrm { c c } }$ a consistency contrastive loss which enforces images with perturbations to have similar embeddings; $( 2 ) \\mathcal { L } _ { \\mathrm { p c . m i x } }$ : a prototypical contrastive loss augmented with mixup, which encourages the embedding for a linearly-interpolated input to have the same linear relationship w.r.t the class prototypes. The low-dimensional embeddings are also trained to reconstruct the high-dimensional features, which preserves the learned information and regularizes the classifier. "
269
+ ],
270
+ "image_footnote": [],
271
+ "bbox": [
272
+ 173,
273
+ 101,
274
+ 818,
275
+ 324
276
+ ],
277
+ "page_idx": 2
278
+ },
279
+ {
280
+ "type": "text",
281
+ "text": "Different from previous methods, our method performs contrastive learning in the principal subspace of the high-dimensional feature space, by training a linear autoencoder. Furthermore, our supervised contrastive loss improves PCL (Li et al., 2020b) with Mixup $\\mathrm { ( } \\mathbb { Z } \\mathrm { h a n g ~ e t ~ a l . } \\mathrm { ) } \\mathbb { Z } \\mathrm { 0 } 1 8 \\mathrm { ) }$ . Different from the original Mixup where learning happens at the classification layer, our learning takes places in the low-dimensional subspace. ",
282
+ "bbox": [
283
+ 173,
284
+ 449,
285
+ 825,
286
+ 520
287
+ ],
288
+ "page_idx": 2
289
+ },
290
+ {
291
+ "type": "text",
292
+ "text": "3 METHOD ",
293
+ "text_level": 1,
294
+ "bbox": [
295
+ 174,
296
+ 549,
297
+ 282,
298
+ 565
299
+ ],
300
+ "page_idx": 2
301
+ },
302
+ {
303
+ "type": "text",
304
+ "text": "Given a noisy training dataset $\\mathbf { \\mathcal { D } } = \\{ ( \\mathbf { \\mathfrak { x } } _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }$ , where $\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { i } }$ is an image and $y _ { i } \\in \\{ 1 , . . . , C \\}$ is its class label. We aim to train a network that is robust to the noise in training data (i.e. label noise, OOD input, input corruption) and achieves high accuracy on a clean test set. The proposed network consists of three components: (1) a deep encoder (a convolutional neural network) that encodes an image $\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { i } }$ to a high-dimensional feature ${ \\mathbf { } } v _ { i }$ ; (2) a classifier (a fully-connected layer followed by softmax) that receives ${ \\mathbf { } } v _ { i }$ as input and outputs class predictions; (3) a linear autoencoder that projects ${ \\bf \\nabla } _ { v _ { i } }$ into a low-dimensional embedding $\\dot { z } _ { i } \\in \\mathbb { R } ^ { d }$ . We show an illustration of our method in Figure $^ { 2 , }$ and a pseudo-code in appendix B. Next, we delineate its details. ",
305
+ "bbox": [
306
+ 173,
307
+ 585,
308
+ 825,
309
+ 699
310
+ ],
311
+ "page_idx": 2
312
+ },
313
+ {
314
+ "type": "text",
315
+ "text": "3.1 CONTRASTIVE LEARNING IN ROBUST LOW-DIMENSIONAL SUBSPACE ",
316
+ "text_level": 1,
317
+ "bbox": [
318
+ 176,
319
+ 727,
320
+ 687,
321
+ 739
322
+ ],
323
+ "page_idx": 2
324
+ },
325
+ {
326
+ "type": "text",
327
+ "text": "Let $z _ { i } = \\mathbf { W } _ { \\mathrm { e } } { v } _ { i }$ be the linear projection from high-dimensional features to low-dimensional embeddings, and $\\hat { z } _ { i } = z _ { i } / \\left\\| z _ { i } \\right\\| _ { 2 }$ be the normalized embeddings. We aim to learn robust embeddings with two contrastive losses: unsupervised consistency loss and weakly-supervised mixup prototypical loss. ",
328
+ "bbox": [
329
+ 174,
330
+ 756,
331
+ 826,
332
+ 797
333
+ ],
334
+ "page_idx": 2
335
+ },
336
+ {
337
+ "type": "text",
338
+ "text": "Unsupervised consistency contrastive loss. Following the NT-Xent (Chen et al., 2020) loss for selfsupervised representation learning, our consistency contrastive loss enforces images with semanticpreserving perturbations to have similar embeddings. Specifically, given a miniwe apply weak-augmentation and strong-augmentation to each image, and obtain tch of input $b$ $2 b$ $\\{ \\pmb { x } _ { i } \\} _ { i = 1 } ^ { \\breve { 2 } b }$ Weak augmentation is a standard flip-and-shift augmentation strategy, while strong augmentation consists of color and brightness changes with details given in Section 4. ",
339
+ "bbox": [
340
+ 174,
341
+ 804,
342
+ 825,
343
+ 890
344
+ ],
345
+ "page_idx": 2
346
+ },
347
+ {
348
+ "type": "text",
349
+ "text": "We project the inputs into the low-dimensional space to obtain their normalized embeddings $\\{ \\hat { z } _ { i } \\} _ { i = 1 } ^ { 2 b }$ Let be the index of a weakly-augmented input, and $j ( i )$ be the index of the strongaugmented input from the same source image, the consistency contrastive loss is defined as: ",
350
+ "bbox": [
351
+ 173,
352
+ 895,
353
+ 825,
354
+ 924
355
+ ],
356
+ "page_idx": 2
357
+ },
358
+ {
359
+ "type": "text",
360
+ "text": "",
361
+ "bbox": [
362
+ 169,
363
+ 103,
364
+ 774,
365
+ 119
366
+ ],
367
+ "page_idx": 3
368
+ },
369
+ {
370
+ "type": "equation",
371
+ "img_path": "images/0f7eb55fb1b2d86706c41435b72a94fae783caa0f25ecee2c1ad8db9b4069043.jpg",
372
+ "text": "$$\n\\mathcal { L } _ { \\mathrm { c c } } = \\sum _ { i = 1 } ^ { b } - \\log \\frac { \\exp ( \\hat { z } _ { i } \\cdot \\hat { z } _ { j ( i ) } / \\tau ) } { \\sum _ { k = 1 } ^ { 2 b } \\mathbb { 1 } _ { i \\neq k } \\exp ( \\hat { z } _ { i } \\cdot \\hat { z } _ { k } / \\tau ) } ,\n$$",
373
+ "text_format": "latex",
374
+ "bbox": [
375
+ 348,
376
+ 122,
377
+ 648,
378
+ 166
379
+ ],
380
+ "page_idx": 3
381
+ },
382
+ {
383
+ "type": "text",
384
+ "text": "where $\\tau$ is a scalar temperature parameter. The consistency contrastive loss maximizes the inner product between the pair of positive embeddings $\\hat { z } _ { i }$ and $\\hat { z } _ { j ( i ) }$ , while minimizing the inner product between $2 ( b - 1 )$ pairs of negative embeddings. By mapping different views (augmentations) of the same image to neighboring embeddings, the consistency contrastive loss encourages the network to learn discriminative representation that is robust to low-level image corruption. ",
385
+ "bbox": [
386
+ 173,
387
+ 169,
388
+ 825,
389
+ 241
390
+ ],
391
+ "page_idx": 3
392
+ },
393
+ {
394
+ "type": "text",
395
+ "text": "Weakly-supervised mixup prototypical contrastive loss. Our second contrastive loss injects structural knowledge of classes into the embedding space. Let $\\mathcal { T } _ { c }$ denote indices for the subset of images in $\\mathcal { D }$ labeled with class $c$ , we calculate the class prototype as the normalized mean embedding: ",
396
+ "bbox": [
397
+ 173,
398
+ 247,
399
+ 825,
400
+ 290
401
+ ],
402
+ "page_idx": 3
403
+ },
404
+ {
405
+ "type": "equation",
406
+ "img_path": "images/10b306aed60e4511feb3b9104f8a39914a1c1b856e433dfc7100d89a3f0f78aa.jpg",
407
+ "text": "$$\nz ^ { c } = \\frac { 1 } { \\left| \\mathbb { Z } _ { c } \\right| } \\sum _ { i \\in \\mathbb { Z } _ { c } } \\hat { z } _ { i } , \\hat { z } ^ { c } = \\frac { z ^ { c } } { \\left\\| z ^ { c } \\right\\| _ { 2 } } ,\n$$",
408
+ "text_format": "latex",
409
+ "bbox": [
410
+ 387,
411
+ 292,
412
+ 609,
413
+ 332
414
+ ],
415
+ "page_idx": 3
416
+ },
417
+ {
418
+ "type": "text",
419
+ "text": "where $\\hat { z } _ { i }$ is the embedding of a center-cropped image, and the class prototypes are calculated at the beginning of each epoch. ",
420
+ "bbox": [
421
+ 174,
422
+ 335,
423
+ 823,
424
+ 364
425
+ ],
426
+ "page_idx": 3
427
+ },
428
+ {
429
+ "type": "text",
430
+ "text": "The prototypical contrastive loss enforces an image embedding $\\hat { z } _ { i }$ to be more similar to its corresponding class prototype $\\hat { z } ^ { y _ { i } }$ , in contrast to other class prototypes: ",
431
+ "bbox": [
432
+ 174,
433
+ 371,
434
+ 821,
435
+ 400
436
+ ],
437
+ "page_idx": 3
438
+ },
439
+ {
440
+ "type": "equation",
441
+ "img_path": "images/8a80b7782b2f036098044d74087f47f4c8faaed8b925f2fdcd9d3f696fd86006.jpg",
442
+ "text": "$$\n\\mathcal { L } _ { \\mathrm { p c } } ( \\hat { z } _ { i } , y _ { i } ) = - \\log \\frac { \\exp ( \\hat { z } _ { i } \\cdot \\hat { z } ^ { y _ { i } } / \\tau ) } { \\sum _ { c = 1 } ^ { C } \\exp ( \\hat { z } _ { i } \\cdot \\hat { z } ^ { c } / \\tau ) } .\n$$",
443
+ "text_format": "latex",
444
+ "bbox": [
445
+ 354,
446
+ 404,
447
+ 642,
448
+ 441
449
+ ],
450
+ "page_idx": 3
451
+ },
452
+ {
453
+ "type": "text",
454
+ "text": "Since the label $y _ { i }$ is noisy, we would like to regularize the encoder from memorizing training labels. Mixup (Zhang et al., $\\boxed { 2 0 1 8 }$ has been shown to be an effective method against label noise (Arazo et al., $\\mathord { \\left. \\kern - delimiterspace \\right)} \\frac { 2 0 1 9 } { \\mathrm { ~ L i ~ e t ~ a l . } } \\mathord { \\left[ 2 0 2 0 \\mathrm { a } \\right] } $ . Inspired by it, we create virtual training samples by linearly interpolating a sample (indexed by $i$ ) with another sample (indexed by $m ( i ) .$ ) randomly chosen from the same minibatch: ",
455
+ "bbox": [
456
+ 173,
457
+ 450,
458
+ 826,
459
+ 520
460
+ ],
461
+ "page_idx": 3
462
+ },
463
+ {
464
+ "type": "equation",
465
+ "img_path": "images/f8348dc8f0d599f75944d6f2437abf3cbddb975623be1a7079eb875982c1c237.jpg",
466
+ "text": "$$\n\\begin{array} { r } { \\pmb { x } _ { i } ^ { m } = \\lambda \\pmb { x } _ { i } + ( 1 - \\lambda ) \\pmb { x } _ { m ( i ) } , } \\end{array}\n$$",
467
+ "text_format": "latex",
468
+ "bbox": [
469
+ 405,
470
+ 520,
471
+ 591,
472
+ 537
473
+ ],
474
+ "page_idx": 3
475
+ },
476
+ {
477
+ "type": "text",
478
+ "text": "where $\\lambda \\sim \\operatorname { B e t a } ( \\alpha , \\alpha )$ ",
479
+ "bbox": [
480
+ 174,
481
+ 539,
482
+ 328,
483
+ 554
484
+ ],
485
+ "page_idx": 3
486
+ },
487
+ {
488
+ "type": "text",
489
+ "text": "Let $\\hat { z } _ { i } ^ { m }$ be the normalized embedding for $\\pmb { x } _ { i } ^ { m }$ , the mixup version of the prototypical contrastive loss is defined as a weighted combination of the two ${ \\mathcal { L } } _ { \\mathrm { p c } }$ w.r.t class $y _ { i }$ and $y _ { m ( i ) }$ . It enforces the embedding for the interpolated input to have the same linear relationship $w . r . t .$ . the class prototypes. ",
490
+ "bbox": [
491
+ 174,
492
+ 560,
493
+ 825,
494
+ 603
495
+ ],
496
+ "page_idx": 3
497
+ },
498
+ {
499
+ "type": "equation",
500
+ "img_path": "images/375d9036a21353e296d4c1470bdab269fdeb1b654baa48527d3ec5a44f2277fc.jpg",
501
+ "text": "$$\n\\mathcal { L } _ { \\mathrm { p c . m i x } } = \\sum _ { i = 1 } ^ { 2 b } \\lambda \\mathcal { L } _ { \\mathrm { p c } } ( \\hat { z } _ { i } ^ { m } , y _ { i } ) + ( 1 - \\lambda ) \\mathcal { L } _ { \\mathrm { p c } } ( \\hat { z } _ { i } ^ { m } , y _ { m ( i ) } ) .\n$$",
502
+ "text_format": "latex",
503
+ "bbox": [
504
+ 312,
505
+ 607,
506
+ 684,
507
+ 651
508
+ ],
509
+ "page_idx": 3
510
+ },
511
+ {
512
+ "type": "text",
513
+ "text": "Reconstruction loss. We also train a linear decoder $\\mathbf { W } _ { \\mathrm { d } }$ to reconstruct the high-dimensional feature ${ \\mathbf { } } v _ { i }$ based on $z _ { i }$ . The reconstruction loss is defined as: ",
514
+ "bbox": [
515
+ 171,
516
+ 661,
517
+ 825,
518
+ 689
519
+ ],
520
+ "page_idx": 3
521
+ },
522
+ {
523
+ "type": "equation",
524
+ "img_path": "images/a0b1c7df2ccdb44a545abfc79bfe00fe1eae93d9f33b4be3a3e404b8169b2dfa.jpg",
525
+ "text": "$$\n\\mathcal { L } _ { \\mathrm { r e c o n } } = \\sum _ { i = 1 } ^ { 2 b } \\left\\| \\pmb { v } _ { i } - \\mathbf { W } _ { \\mathrm { d } } \\pmb { z } _ { i } \\right\\| _ { 2 } ^ { 2 } .\n$$",
526
+ "text_format": "latex",
527
+ "bbox": [
528
+ 397,
529
+ 693,
530
+ 599,
531
+ 737
532
+ ],
533
+ "page_idx": 3
534
+ },
535
+ {
536
+ "type": "text",
537
+ "text": "There are several benefits for training the autoencoder. First, with an optimal linear autoencoder, ${ \\bf W } _ { \\mathrm { e } }$ will project ${ \\mathbf { } } v _ { i }$ into its low-dimensional principal subspace and can be understood as applying PCA $\\mathrm { ( \\mathbb { B } a l d i \\ \\& \\ H o r n i k | , \\frac { } { | 9 8 9 ) } }$ Thus the low-dimensional representation $z _ { i }$ is intrinsically robust to input noise. Second, minimizing the reconstruction error is maximizing a lower bound of the mutual information between ${ \\mathbf { } } v _ { i }$ and $z _ { i }$ (Vincent et al., $\\boxed { 2 0 1 0 }$ . Therefore, knowledge learned from the proposed contrastive losses can be maximally preserved in the high-dimensional representation, which helps regularize the classifier. ",
538
+ "bbox": [
539
+ 173,
540
+ 746,
541
+ 826,
542
+ 845
543
+ ],
544
+ "page_idx": 3
545
+ },
546
+ {
547
+ "type": "text",
548
+ "text": "Classification loss. Given the softmax output from the classifier, ${ \\pmb p } ( { \\pmb y } ; { \\pmb x } _ { i } )$ , we define the classification loss as the cross-entropy loss. Note that it is only applied to the weakly-augmented inputs. ",
549
+ "bbox": [
550
+ 171,
551
+ 852,
552
+ 823,
553
+ 881
554
+ ],
555
+ "page_idx": 3
556
+ },
557
+ {
558
+ "type": "equation",
559
+ "img_path": "images/1b8646e30548293f6065dfedb26b690d9949fc7e349c1a63cbde5875cfe0e99e.jpg",
560
+ "text": "$$\n\\mathcal { L } _ { \\mathrm { c e } } = - \\sum _ { i = 1 } ^ { b } \\log p ( y _ { i } ; \\pmb { x } _ { i } ) .\n$$",
561
+ "text_format": "latex",
562
+ "bbox": [
563
+ 410,
564
+ 885,
565
+ 588,
566
+ 928
567
+ ],
568
+ "page_idx": 3
569
+ },
570
+ {
571
+ "type": "image",
572
+ "img_path": "images/d37d4c61b89760d47df7abc4d1404e044ee37a5e9c3d002a73d196c2e4369eb5.jpg",
573
+ "image_caption": [
574
+ "Figure 3: Curriculum learned by the proposed label correction method for training on CIFAR datasets with $50 \\%$ sym. noise. (a) Accuracy of pseudo-labels w.r.t to clean training labels. (b) Number of samples in the weakly-supervised subset $\\mathcal { D } _ { \\mathrm { s u p } } ^ { t }$ . (c) Label noise ratio in the weakly-supervised subset. "
575
+ ],
576
+ "image_footnote": [],
577
+ "bbox": [
578
+ 176,
579
+ 102,
580
+ 821,
581
+ 256
582
+ ],
583
+ "page_idx": 4
584
+ },
585
+ {
586
+ "type": "text",
587
+ "text": "The overall training objective is to minimize a weighted sum of all losses: ",
588
+ "bbox": [
589
+ 176,
590
+ 315,
591
+ 656,
592
+ 330
593
+ ],
594
+ "page_idx": 4
595
+ },
596
+ {
597
+ "type": "equation",
598
+ "img_path": "images/680bbf7c3e98744943bc2d460cf6354d60da7d257db7ffd79ea09e49f0e20207.jpg",
599
+ "text": "$$\n\\mathcal { L } = \\mathcal { L } _ { \\mathrm { c e } } + \\omega _ { \\mathrm { c c } } \\mathcal { L } _ { \\mathrm { c c } } + \\omega _ { \\mathrm { p c } } \\mathcal { L } _ { \\mathrm { p c . m i x } } + \\omega _ { \\mathrm { r e c o n } } \\mathcal { L } _ { \\mathrm { r e c o n } }\n$$",
600
+ "text_format": "latex",
601
+ "bbox": [
602
+ 334,
603
+ 337,
604
+ 661,
605
+ 356
606
+ ],
607
+ "page_idx": 4
608
+ },
609
+ {
610
+ "type": "text",
611
+ "text": "For all experiments, we fix $\\omega _ { \\mathrm { c c } } = 1$ , $\\omega _ { \\mathrm { r e c o n } } = 1$ , and change $\\omega _ { \\mathrm { p c } }$ only across datasets. ",
612
+ "bbox": [
613
+ 176,
614
+ 368,
615
+ 735,
616
+ 385
617
+ ],
618
+ "page_idx": 4
619
+ },
620
+ {
621
+ "type": "text",
622
+ "text": "3.2 NOISE CLEANING WITH SMOOTH NEIGHBORS",
623
+ "text_level": 1,
624
+ "bbox": [
625
+ 174,
626
+ 400,
627
+ 529,
628
+ 415
629
+ ],
630
+ "page_idx": 4
631
+ },
632
+ {
633
+ "type": "text",
634
+ "text": "After warming-up the model by training with the noisy labels $\\{ y _ { i } \\} _ { i = 1 } ^ { n }$ for $t _ { 0 }$ epochs, we aim to clean the noise by generating a soft pseudo-label $\\pmb q _ { i }$ for each training sample. Different from previous methods that perform label correction purely using the model’s softmax prediction, our method exploits the structure of the low-dimensional subspace by aggregating information from top- $k$ neighboring samples, which helps alleviate the confirmation bias problem. ",
635
+ "bbox": [
636
+ 173,
637
+ 425,
638
+ 825,
639
+ 496
640
+ ],
641
+ "page_idx": 4
642
+ },
643
+ {
644
+ "type": "text",
645
+ "text": "At the $t$ -th epoch, for each sample $\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { i } }$ , let $\\mathbf { \\Delta } _ { p _ { i } ^ { t } } ^ { t }$ be the classifier’s softmax prediction, let $\\pmb q _ { i } ^ { t - 1 }$ be its soft label from the previous epoch, we calculate the soft label for the current epoch as: ",
646
+ "bbox": [
647
+ 171,
648
+ 502,
649
+ 823,
650
+ 531
651
+ ],
652
+ "page_idx": 4
653
+ },
654
+ {
655
+ "type": "equation",
656
+ "img_path": "images/3322cd0af1a38a3ce114078ea6eb186ea0b07a20a22a3395f7e5be470fe4d9c4.jpg",
657
+ "text": "$$\n\\pmb { q } _ { i } ^ { t } = \\frac { 1 } { 2 } \\pmb { p } _ { i } ^ { t } + \\frac { 1 } { 2 } \\sum _ { j = 1 } ^ { k } w _ { i j } ^ { t } \\pmb { q } _ { j } ^ { t - 1 } ,\n$$",
658
+ "text_format": "latex",
659
+ "bbox": [
660
+ 403,
661
+ 535,
662
+ 593,
663
+ 580
664
+ ],
665
+ "page_idx": 4
666
+ },
667
+ {
668
+ "type": "text",
669
+ "text": "where $w _ { i j } ^ { t }$ represents the normalized affinity between a sample and its neighbor and is defined as $\\begin{array} { r } { w _ { i j } ^ { t } = \\frac { \\mathrm { { ' } } \\exp ( \\hat { z } _ { i } ^ { t } \\cdot \\hat { z } _ { j } ^ { t } / \\tau ) } { \\sum _ { j = 1 } ^ { k } \\exp ( \\hat { z } _ { i } ^ { t } \\cdot \\hat { z } _ { j } ^ { t } / \\tau ) } } \\end{array}$ . We set $k = 2 0 0$ in all experiments. ",
670
+ "bbox": [
671
+ 174,
672
+ 590,
673
+ 825,
674
+ 633
675
+ ],
676
+ "page_idx": 4
677
+ },
678
+ {
679
+ "type": "text",
680
+ "text": "The soft label defined by eqn. $( 9 )$ is the minimizer of the following quadratic loss function: ",
681
+ "bbox": [
682
+ 171,
683
+ 640,
684
+ 764,
685
+ 656
686
+ ],
687
+ "page_idx": 4
688
+ },
689
+ {
690
+ "type": "equation",
691
+ "img_path": "images/615e008559a184f8c3c2432b1502894b4bd7542f7124e04c3890d7ee4785d0c7.jpg",
692
+ "text": "$$\nJ ( { \\pmb q } _ { i } ^ { t } ) = \\sum _ { j = 1 } ^ { k } w _ { i j } ^ { t } \\left\\| { \\pmb q } _ { i } ^ { t } - { \\pmb q } _ { j } ^ { t - 1 } \\right\\| _ { 2 } ^ { 2 } + \\left\\| { \\pmb q } _ { i } ^ { t } - { \\pmb p } _ { i } ^ { t } \\right\\| _ { 2 } ^ { 2 } .\n$$",
693
+ "text_format": "latex",
694
+ "bbox": [
695
+ 343,
696
+ 660,
697
+ 655,
698
+ 705
699
+ ],
700
+ "page_idx": 4
701
+ },
702
+ {
703
+ "type": "text",
704
+ "text": "The first term is a smoothness constraint which encourages the soft label to take a similar value as its neighbors’ labels, whereas the second term attempts to maintain the model’s class prediction. ",
705
+ "bbox": [
706
+ 171,
707
+ 717,
708
+ 823,
709
+ 746
710
+ ],
711
+ "page_idx": 4
712
+ },
713
+ {
714
+ "type": "text",
715
+ "text": "We construct a weakly-supervised subset which contains (1) clean sample whose soft label score for the original class $y _ { i }$ is higher than a threshold $\\eta _ { 0 }$ , (2) pseudo-labeled sample whose maximum soft label score exceeds a threshold $\\eta _ { 1 }$ . For pseudo-labeled samples, we convert their soft labels into hard labels by taking the class with the maximum score. ",
716
+ "bbox": [
717
+ 173,
718
+ 752,
719
+ 825,
720
+ 809
721
+ ],
722
+ "page_idx": 4
723
+ },
724
+ {
725
+ "type": "equation",
726
+ "img_path": "images/cd6f9d3dd779b00d937d58b34b838797ca8ff3f171a9a3329912bf47f3e09436.jpg",
727
+ "text": "$$\n\\mathcal { D } _ { \\operatorname* { s u p } } ^ { t } = \\{ \\alpha _ { i } , y _ { i } \\mid q _ { i } ^ { t } ( y _ { i } ) > \\eta _ { 0 } \\} \\cup \\{ x _ { i } , \\hat { y } _ { i } ^ { t } = \\arg \\operatorname* { m a x } _ { c } q _ { i } ^ { t } ( c ) \\mid \\forall \\operatorname* { m a x } _ { c } q _ { i } ^ { t } ( c ) > \\eta _ { 1 } , c \\in \\{ 1 , . . , C \\} \\}\n$$",
728
+ "text_format": "latex",
729
+ "bbox": [
730
+ 179,
731
+ 814,
732
+ 789,
733
+ 839
734
+ ],
735
+ "page_idx": 4
736
+ },
737
+ {
738
+ "type": "text",
739
+ "text": "Given the weakly-supervised subset, we modify the classification loss $\\mathcal { L } _ { \\mathrm { c e } }$ , the mixup prototypical contrastive loss $\\mathcal { L } _ { \\mathrm { p c . m i x } }$ , and the calculation of prototypes $\\hat { z } ^ { c }$ , such that they only use samples from $\\mathcal { D } _ { \\mathrm { s u p } } ^ { t }$ . The unsupervised losses (i.e. ${ \\mathcal { L } } _ { \\mathrm { c c } }$ and $\\mathcal { L } _ { \\mathrm { r e c o n } }$ ) still operate on all training samples. ",
740
+ "bbox": [
741
+ 174,
742
+ 845,
743
+ 825,
744
+ 890
745
+ ],
746
+ "page_idx": 4
747
+ },
748
+ {
749
+ "type": "text",
750
+ "text": "Learning curriculum. Our iterative noise cleaning method learns an effective training curriculum, which gradually increases the size of $\\mathcal { D } _ { \\mathrm { s u p } } ^ { t }$ as the pseudo-labels become more accurate. To demonstrate such curriculum, we analyse the noise cleaning statistics for training our model on CIFAR-10 and CIFAR-100 datasets with $50 \\%$ label noise (experimental details explained in the next section). In Figure $\\bigtriangledown$ (a), we show the accuracy of the soft pseudo-labels $w . r . t$ to clean training labels (only used for analysis purpose). Our method can significantly reduce the ratio of label noise from $50 \\%$ to $5 \\%$ (for CIFAR-10) and $17 \\%$ (for CIFAR-100). Figure $\\dot { 3 }$ (b) shows the size of $\\mathcal { D } _ { \\mathrm { s u p } } ^ { t }$ as a percentage of the total number of training samples, and Figure $\\boxed { 3 }$ (c) shows the effective label noise ratio within the weakly-supervised subset $\\mathcal { D } _ { \\mathrm { s u p } } ^ { t }$ . Our method maintains a low noise ratio in the weakly-supervised subset, while gradually increasing its size to utilize more samples for the weakly-supervised losses. ",
751
+ "bbox": [
752
+ 173,
753
+ 895,
754
+ 825,
755
+ 924
756
+ ],
757
+ "page_idx": 4
758
+ },
759
+ {
760
+ "type": "table",
761
+ "img_path": "images/f8a4d188940af3f9de9d2c06aa0eb042229452bdef87bae96045d29702b74c82.jpg",
762
+ "table_caption": [
763
+ "Table 1: Comparison with state-of-the-art methods on CIFAR datasets with label noise. Numbers indicate average test accuracy $( \\% )$ over last 10 epochs. We report results over 3 independent runs with randomly-generated label noise. Results for previous methods are copied from Arazo et al. $\\boxed { 2 0 1 9 }$ ; Li et al. $\\textcircled { 2 0 2 0 2 }$ We re-run DivideMix (without ensemble) using the publicly available code on the same noisy data as ours. "
764
+ ],
765
+ "table_footnote": [],
766
+ "table_body": "<table><tr><td rowspan=1 colspan=6>Dataset CIFAR-10 CIFAR-100Noise type Sym 20% Sym 50% Asym 40% Sym 20% Sym 50%</td></tr><tr><td rowspan=9 colspan=1>Cross-Entropy (Li et al. 2020a)ForwardPatrini et al.12017Co-teaching+ (Yu et al.12019Mixup(Zhang et al.2018) P-correcuon (Yi&amp; Wu [2019)MLNTLi et al2019)M-correcion (Arazo et al]2019)DivideMix (Li et al.2020a)DivideMix (reproduced)</td><td rowspan=9 colspan=1>82.783.188.292.392.092.093.895.095.1±0.1</td><td rowspan=1 colspan=1>57.9</td><td rowspan=1 colspan=1>72.3</td><td rowspan=1 colspan=1>61.8</td><td rowspan=1 colspan=1>37.3</td></tr><tr><td rowspan=1 colspan=1>59.4</td><td rowspan=1 colspan=1>83.1</td><td rowspan=1 colspan=1>61.4</td><td rowspan=1 colspan=1>37.3</td></tr><tr><td rowspan=1 colspan=1>84.1</td><td rowspan=1 colspan=1>1</td><td rowspan=1 colspan=1>64.1</td><td rowspan=1 colspan=1>45.3</td></tr><tr><td rowspan=1 colspan=1>77.6</td><td rowspan=1 colspan=1>1</td><td rowspan=1 colspan=1>66.0</td><td rowspan=1 colspan=1>46.6</td></tr><tr><td rowspan=1 colspan=1>88.7</td><td rowspan=1 colspan=1>88.1</td><td rowspan=1 colspan=1>68.1</td><td rowspan=1 colspan=1>56.4</td></tr><tr><td rowspan=1 colspan=1>88.8</td><td rowspan=1 colspan=1>88.6</td><td rowspan=1 colspan=1>67.7</td><td rowspan=1 colspan=1>58.0</td></tr><tr><td rowspan=3 colspan=1>91.993.793.6±0.2</td><td rowspan=1 colspan=1>86.3</td><td rowspan=1 colspan=1>73.4</td><td rowspan=1 colspan=1>65.4</td></tr><tr><td rowspan=1 colspan=1>91.4</td><td rowspan=1 colspan=1>74.8</td><td rowspan=1 colspan=1>72.1</td></tr><tr><td rowspan=1 colspan=1>91.3±0.8</td><td rowspan=1 colspan=1>75.1±0.2</td><td rowspan=1 colspan=1>72.1±0.3</td></tr><tr><td rowspan=1 colspan=1>Ours (classifier)Ours (knn)</td><td rowspan=1 colspan=1>95.8±0.195.9±0.1</td><td rowspan=1 colspan=1>94.3±0.294.5±0.1</td><td rowspan=1 colspan=1>91.9±0.892.4±0.9</td><td rowspan=1 colspan=1>79.1±0.179.4±0.1</td><td rowspan=1 colspan=1>74.8±0.475.0±0.4</td></tr></table>",
767
+ "bbox": [
768
+ 186,
769
+ 101,
770
+ 812,
771
+ 279
772
+ ],
773
+ "page_idx": 5
774
+ },
775
+ {
776
+ "type": "text",
777
+ "text": "",
778
+ "bbox": [
779
+ 173,
780
+ 357,
781
+ 825,
782
+ 469
783
+ ],
784
+ "page_idx": 5
785
+ },
786
+ {
787
+ "type": "text",
788
+ "text": "4 EXPERIMENT ",
789
+ "text_level": 1,
790
+ "bbox": [
791
+ 174,
792
+ 489,
793
+ 318,
794
+ 505
795
+ ],
796
+ "page_idx": 5
797
+ },
798
+ {
799
+ "type": "text",
800
+ "text": "In this section, we validate the proposed method on multiple benchmarks with controlled noise and real-world noise. Our method achieves state-of-the-art performance across all benchmarks. For fair comparison, we compare with DivideMix $\\mathbb { ( L i ~ e t ~ a l . ) } \\index { [ 2 0 2 0 4 ) }$ without ensemble. In appendix A, we report the result of our method with co-training and ensemble, which further improves performance. ",
801
+ "bbox": [
802
+ 174,
803
+ 510,
804
+ 825,
805
+ 565
806
+ ],
807
+ "page_idx": 5
808
+ },
809
+ {
810
+ "type": "text",
811
+ "text": "4.1 EXPERIMENTS ON CONTROLLED NOISY LABELS ",
812
+ "text_level": 1,
813
+ "bbox": [
814
+ 174,
815
+ 578,
816
+ 545,
817
+ 592
818
+ ],
819
+ "page_idx": 5
820
+ },
821
+ {
822
+ "type": "text",
823
+ "text": "Dataset. Following Tanaka et al. (2018); Li et al. $\\textcircled { 1 2 0 2 0 } \\textcircled { 2 }$ we corrupt the training data of CIFAR10 and CIFAR-100 (Krizhevsky & Hinton, $\\textcircled { 2 0 0 9 }$ with two types of label noise: symmetric and asymmetric. Symmetric noise is injected by randomly selecting a percentage of samples and changing their labels to random labels. Asymmetric noise is class-dependant, where labels are only changed to similar classes (e.g. dog cat, deer horse). We experiment with multiple noise ratios: sym $20 \\%$ , sym $50 \\%$ , and asym $40 \\%$ (see results for sym $80 \\%$ and $90 \\%$ in appendix $\\mathbf { A } )$ . Note that asymmetric noise ratio cannot exceed $50 \\%$ because certain classes would become theoretically indistinguishable. ",
824
+ "bbox": [
825
+ 173,
826
+ 602,
827
+ 826,
828
+ 702
829
+ ],
830
+ "page_idx": 5
831
+ },
832
+ {
833
+ "type": "text",
834
+ "text": "Implementation details. Same as previous works $\\left( \\mathrm { A r a z o ~ e t ~ a l . } \\right) \\left[ 2 0 1 9 \\right. \\mathrm { [ L i ~ e t ~ a l . ] } \\left. 2 0 2 0 \\mathrm { a } \\right.$ we use PreAct ResNet-18 (He et al., $\\boxed { 2 0 1 6 }$ as our encoder model. We set the dimensionality of the bottleneck layer as $d = 5 0$ . Our model is trained using SGD with a momentum of 0.9, a weight decay of 0.0005, and a batch size of 128. The network is trained for 200 epochs. We set the initial learning rate as 0.02 and use a cosine decay schedule. We apply standard crop and horizontal flip as the weak augmentation. For strong augmentation, we use AugMix $( \\mathrm { \\overline { { H e n d r y c k s \\ e t { a l . } } } } , \\mathrm { \\overline { { 2 0 2 0 } } } )$ , though other methods (e.g. SimAug (Chen et al., $\\boxed { 2 0 2 0 }$ ) work equally well. For all CIFAR experiments, we fix the hyper-parameters as $\\omega _ { \\mathrm { c c } } = 1 , \\omega _ { \\mathrm { p c } } = 5$ , $\\omega _ { \\mathrm { r e c o n } } = 1 , \\tau = 0 . 3 , \\alpha = 8 , \\eta _ { 1 } = 0 . 9$ . For CIFAR-10, we activate noise cleaning at epoch $t _ { 0 } = 5$ , and set $\\eta _ { 0 } = 0 . 1$ (sym.) or 0.4 (asym.). For CIFAR-100, we activate noise cleaning at epoch $t _ { 0 } = 1 5$ , and set $\\eta _ { 0 } = 0 . 0 2$ . We use faiss-gpu (Johnson et al., 2017) for efficient knn search in the low-dimensional subspace, which finishes within 1 second. ",
835
+ "bbox": [
836
+ 173,
837
+ 707,
838
+ 825,
839
+ 861
840
+ ],
841
+ "page_idx": 5
842
+ },
843
+ {
844
+ "type": "text",
845
+ "text": "Results. Table $^ 1$ shows the comparison with existing methods. Our method outperforms previous methods across all label noise settings. On the more challenging CIFAR-100, we achieve $3- 4 \\%$ accuracy improvement compared to the second-best method DivideMix. Moreover, our method is more computational efficient than DivideMix, which needs co-training for noise filtering. ",
846
+ "bbox": [
847
+ 174,
848
+ 867,
849
+ 825,
850
+ 924
851
+ ],
852
+ "page_idx": 5
853
+ },
854
+ {
855
+ "type": "table",
856
+ "img_path": "images/0251f502128246396fbc2f30b3b68d174004c1413f584f6403b329828842819e.jpg",
857
+ "table_caption": [],
858
+ "table_footnote": [],
859
+ "table_body": "<table><tr><td rowspan=\"2\">CIFAR-10 50% sym. noise</td><td rowspan=\"2\">CE</td><td>Iterative</td><td>GCE</td><td rowspan=\"2\">2018</td><td rowspan=\"2\">DivideMix (Li et al. 2020a</td><td rowspan=\"2\">Ours (cls.)</td><td rowspan=\"2\">Ours (knn)</td></tr><tr><td>Wang et al. 2018</td><td>Zhang &amp; Sabuncu</td></tr><tr><td>+ CIFAR-100 20k</td><td>53.6</td><td>87.2</td><td>87.3</td><td></td><td>89.0</td><td>91.5</td><td>93.1±0.3</td></tr><tr><td>+ SVHN 20k</td><td>58.1</td><td>88.6</td><td>88.8</td><td></td><td>91.9</td><td>93.3</td><td>93.9±0.2</td></tr><tr><td>+ Image Corruption</td><td>53.8</td><td>87.7</td><td>87.9</td><td></td><td>89.8</td><td>91.4</td><td>91.6±0.2</td></tr></table>",
860
+ "bbox": [
861
+ 173,
862
+ 101,
863
+ 821,
864
+ 174
865
+ ],
866
+ "page_idx": 6
867
+ },
868
+ {
869
+ "type": "text",
870
+ "text": "Table 2: Comparison with state-of-the-art methods on datasets with label noise and input noise. Numbers indicate average test accuracy $( \\% )$ over last 10 epochs. We report results over 3 independent runs with randomlygenerated noise. We re-run previous methods using publicly available code with the same noisy data and model architecture as ours. ",
871
+ "bbox": [
872
+ 173,
873
+ 185,
874
+ 825,
875
+ 237
876
+ ],
877
+ "page_idx": 6
878
+ },
879
+ {
880
+ "type": "text",
881
+ "text": "In order to demonstrate the advantage of the proposed low-dimensional embeddings, we perform $k$ - nearest neighbor (knn) classification ( $k = 2 0 0$ ), by projecting test images into normalized embeddings. Compared to the trained classifier, knn achieves higher accuracy, which verifies the robustness of the learned low-dimensional representations. ",
882
+ "bbox": [
883
+ 173,
884
+ 248,
885
+ 826,
886
+ 305
887
+ ],
888
+ "page_idx": 6
889
+ },
890
+ {
891
+ "type": "text",
892
+ "text": "4.2 EXPERIMENTS ON CONTROLLED NOISY LABELS WITH NOISY IMAGES ",
893
+ "text_level": 1,
894
+ "bbox": [
895
+ 174,
896
+ 323,
897
+ 692,
898
+ 337
899
+ ],
900
+ "page_idx": 6
901
+ },
902
+ {
903
+ "type": "text",
904
+ "text": "Dataset. We further corrupt a noisy CIFAR-10 dataset (sym. $50 \\%$ ) by injecting two types of input noise: out-of-distribution (OOD) images and input corruption. For OOD noise, we follow Wang et al. (2018) and add $2 0 k$ images from either one of the two other datasets: CIFAR-100 and SVHN (Netzer $\\boxed { \\mathrm { e t ~ a l . } , \\boxed { 2 0 1 1 } }$ , enlarging the training set to $7 0 k$ . A random CIFAR-10 label is assigned to each OOD image. For input corruption, we follow Hendrycks & Dietterich $\\textcircled { 2 0 1 9 }$ and corrupt each image in CIFAR-10 with a noise randomly chosen from the following four types: Fog, Snow, Motion blur and Gaussian noise. Examples of both types of input noise are shown in Figure 4. We follow the same implementation details as the CIFAR-10 experiments described in Section 4.1. ",
905
+ "bbox": [
906
+ 173,
907
+ 342,
908
+ 828,
909
+ 454
910
+ ],
911
+ "page_idx": 6
912
+ },
913
+ {
914
+ "type": "image",
915
+ "img_path": "images/ac822823753a2fac58f6037c832534dcce1705ad8d63b701e0143ca0a0dbf8a7.jpg",
916
+ "image_caption": [
917
+ "Figure 4: Examples of input noise injected to CIFAR-10. "
918
+ ],
919
+ "image_footnote": [],
920
+ "bbox": [
921
+ 254,
922
+ 462,
923
+ 732,
924
+ 544
925
+ ],
926
+ "page_idx": 6
927
+ },
928
+ {
929
+ "type": "text",
930
+ "text": "Results. Table 2 shows the results, where our method consistently outperforms existing methods by a substantial margin. We observe that OOD images from a similar domain (CIFAR-100) are more harmful than OOD images from a more different domain (SVHN). This is because noisy images that are closer to the test data distribution are more likely to distort the decision boundary in a way that negatively affects test performance. Nevertheless, performing knn classification using the learned embeddings demonstrates high robustness to input noise. ",
931
+ "bbox": [
932
+ 173,
933
+ 571,
934
+ 825,
935
+ 656
936
+ ],
937
+ "page_idx": 6
938
+ },
939
+ {
940
+ "type": "text",
941
+ "text": "In Figure $5 ,$ we show the t-SNE (Maaten & Hinton, 2008) visualization of the low-dimensional embeddings for all training samples. As training progresses, our model learns to separate OOD samples (represented as gray points) from in-distribution samples, and cluster samples of the same class together despite their noisy labels. ",
942
+ "bbox": [
943
+ 174,
944
+ 662,
945
+ 825,
946
+ 718
947
+ ],
948
+ "page_idx": 6
949
+ },
950
+ {
951
+ "type": "image",
952
+ "img_path": "images/7fcaf6998097aa975e3eac8c47e1d176c9a4ea41a30d28612dbc18b3e6873bec.jpg",
953
+ "image_caption": [
954
+ "Figure 5: t-SNE visualization of low-dimensional embeddings for CIFAR-10 images (color represents the true class) $+ \\mathrm { O O D }$ images (gray points) from CIFAR-100 or SVHN. The model is trained on noisy CIFAR-10 $5 0 k$ images with $50 \\%$ label noise) and $2 0 k$ OOD images with random labels. Our method can effectively learn to (1) cluster CIFAR-10 images according to their true class, despite their noisy labels; (2) separate OOD samples from in-distribution samples, such that their harm is reduced. "
955
+ ],
956
+ "image_footnote": [],
957
+ "bbox": [
958
+ 179,
959
+ 728,
960
+ 818,
961
+ 847
962
+ ],
963
+ "page_idx": 6
964
+ },
965
+ {
966
+ "type": "table",
967
+ "img_path": "images/2c35f29fc3f32546e2d2ca435e23290f87290ba8ead775c4998ba9a5aa65cadc.jpg",
968
+ "table_caption": [
969
+ "Table 3: Comparison with state-of-the-art methods trained on WebVision (mini). "
970
+ ],
971
+ "table_footnote": [],
972
+ "table_body": "<table><tr><td colspan=\"2\">Test dataset</td><td colspan=\"2\">WebVision</td><td colspan=\"2\">ILSVRC12</td></tr><tr><td colspan=\"2\">Accuracy (%)</td><td>top1</td><td>top5</td><td>top1</td><td>top5</td></tr><tr><td colspan=\"2\"> Forward (Patrini et al.2017)</td><td>61.1</td><td>82.7</td><td>57.4</td><td>82.4</td></tr><tr><td colspan=\"2\">Decoupling (Malach &amp; Shalev-Shwartz 12017</td><td>62.5</td><td>84.7</td><td>58.3</td><td>82.3</td></tr><tr><td colspan=\"2\">D2L (Ma et al12018)</td><td>62.7</td><td>84.0</td><td>57.8</td><td>81.4</td></tr><tr><td colspan=\"2\">MentorNet (Jiang et al. 2018</td><td>63.0</td><td>81.4</td><td>57.8</td><td>79.9</td></tr><tr><td colspan=\"2\">Co-teaching (Han et al. 2018)</td><td>63.6</td><td>85.2</td><td>61.5</td><td>84.7</td></tr><tr><td colspan=\"2\">INCV (Chen et al.,2019)</td><td>65.2</td><td>85.3</td><td>61.0</td><td>85.0</td></tr><tr><td colspan=\"2\">DivideMix (Li et al. 12020a)</td><td>75.9</td><td>90.1</td><td>73.3</td><td>89.2</td></tr><tr><td colspan=\"2\">Ours (w/o noise cleaning)</td><td>75.5</td><td>90.2</td><td>72.0</td><td>90.0</td></tr><tr><td colspan=\"2\">Ours (classifier)</td><td>76.3</td><td>91.5</td><td>73.3</td><td>91.2</td></tr><tr><td colspan=\"2\">Ours (knn)</td><td>77.8</td><td>91.3</td><td>74.4</td><td>90.9</td></tr></table>",
973
+ "bbox": [
974
+ 254,
975
+ 101,
976
+ 738,
977
+ 280
978
+ ],
979
+ "page_idx": 7
980
+ },
981
+ {
982
+ "type": "table",
983
+ "img_path": "images/4c59545cb2f0a54f1cda14b14c5f9abd004a624f95e412d4af14317acca6a416.jpg",
984
+ "table_caption": [
985
+ "Table 4: Comparison with state-of-the-art methods on Clothing1M dataset. "
986
+ ],
987
+ "table_footnote": [],
988
+ "table_body": "<table><tr><td>Method</td><td>CE</td><td>Forward</td><td>Joint-Opt</td><td>MLNT</td><td>MentorMix</td><td>SL</td><td>DivideMix</td><td>Ours (cls.)</td><td>Ours (knn)</td></tr><tr><td>Accuracy</td><td>69.21</td><td>69.84</td><td>72.16</td><td>73.47</td><td>74.30</td><td>74.45</td><td>74.48</td><td>74.84</td><td>74.97</td></tr></table>",
989
+ "bbox": [
990
+ 171,
991
+ 318,
992
+ 826,
993
+ 358
994
+ ],
995
+ "page_idx": 7
996
+ },
997
+ {
998
+ "type": "text",
999
+ "text": "4.3 EXPERIMENTS ON REAL-WORLD NOISY DATA ",
1000
+ "text_level": 1,
1001
+ "bbox": [
1002
+ 174,
1003
+ 414,
1004
+ 529,
1005
+ 428
1006
+ ],
1007
+ "page_idx": 7
1008
+ },
1009
+ {
1010
+ "type": "text",
1011
+ "text": "Dataset and implementation details. We verify our method on two real-word noisy datasets: WebVision $\\mathrm { ( } \\mathbf { L i } \\mathrm { e t a l . } \\mathrm { , } \\overline { { 2 0 1 7 } } \\mathrm { ) }$ and Clothing1M (Xiao et al., 2015). Webvision contains images crawled from the web using the same concepts from ImageNet ILSVRC12 $( \\mathbb { D e n g \\ e t \\ a l . } ) . 2 0 0 9 )$ . Following previous works (Chen et al., 2019; Li et al., 2020a), we perform experiments on the first 50 classes of the Google image subset. Clothing1M consists of images collected from online shopping websites where labels were generated from surrounding texts. Note that we do not use the additional clean set for training. For both experiments, we use the same model architecture as previous methods. More implementation details are given in the appendix. ",
1012
+ "bbox": [
1013
+ 173,
1014
+ 435,
1015
+ 825,
1016
+ 547
1017
+ ],
1018
+ "page_idx": 7
1019
+ },
1020
+ {
1021
+ "type": "text",
1022
+ "text": "Results. We report the results for WebVision in Table $\\textcircled { 3 }$ and Clothing1M in Table $4 ,$ where we achieve state-of-the-art performance on both datasets. Our method achieves competitive performance on WebVision even without performing noise cleaning, which demonstrates the robustness of the learned representation. Appendix D shows examples of noisy images that are cleaned by our method. ",
1023
+ "bbox": [
1024
+ 174,
1025
+ 554,
1026
+ 825,
1027
+ 611
1028
+ ],
1029
+ "page_idx": 7
1030
+ },
1031
+ {
1032
+ "type": "text",
1033
+ "text": "4.4 ABLATION STUDY ",
1034
+ "text_level": 1,
1035
+ "bbox": [
1036
+ 174,
1037
+ 627,
1038
+ 339,
1039
+ 641
1040
+ ],
1041
+ "page_idx": 7
1042
+ },
1043
+ {
1044
+ "type": "text",
1045
+ "text": "Effect of the proposed components. In order to study the effect of the proposed components, we remove each of them and report accuracy of the classifier (knn) across four benchmarks. As shown in Table $\\boxed { 5 }$ the mixup prototypical contrastive loss $( \\mathcal { L } _ { \\mathrm { p c . m i x } } )$ is most crucial to the model’s performance. The consistency contrastive loss $( \\mathcal { L } _ { \\mathrm { c c } } )$ has a stronger effect with corrupted input or larger number of classes. We also experiment with removing mixup and using the standard prototypical contrastive loss, and using standard data augmentation (crop and horizontal flip) instead of AugMix. The proposed method still achieves state-of-the-art result with standard data augmentation. ",
1046
+ "bbox": [
1047
+ 173,
1048
+ 650,
1049
+ 826,
1050
+ 747
1051
+ ],
1052
+ "page_idx": 7
1053
+ },
1054
+ {
1055
+ "type": "table",
1056
+ "img_path": "images/4ceeab743d30b1b04118d2ab693327fed8fedc05a44164228804334107bd0b1f.jpg",
1057
+ "table_caption": [],
1058
+ "table_footnote": [
1059
+ "Table 5: Effect of the proposed components. We show the accuracy of the classifier (knn) on four benchmarks with different noise. Note that DivideMix (Li et al., 2020a) also performs mixup. "
1060
+ ],
1061
+ "table_body": "<table><tr><td></td><td>| CIFAR-10 Sym 50%</td><td>6|+CIFAR-10020k</td><td>+ Image Corruption</td><td>CIFAR-100 Sym 50%</td></tr><tr><td>w/o Lpc_mix</td><td>85.9 (86.1)</td><td>79.7 (81.5)</td><td>81.6 (81.7)</td><td>65.6 (65.9)</td></tr><tr><td>w/o Lcc</td><td>93.7 (93.8)</td><td>91.3 (91.5)</td><td>89.4 (89.5)</td><td>71.9 (71.8)</td></tr><tr><td>w/o Lrecon</td><td>93.3 (94.0)</td><td>90.7 (92.9)</td><td>90.2 (91.0)</td><td>73.2 (73.9)</td></tr><tr><td>w/o mixup</td><td>89.5 (89.9)</td><td>85.4 (87.0)</td><td>84.7 (84.9)</td><td>69.3 (69.7)</td></tr><tr><td> w/ standard aug.</td><td>94.1 (94.3)</td><td>90.8 (92.9)</td><td>90.5 (90.7)</td><td>74.5 (75.0)</td></tr><tr><td>DivideMix</td><td>93.6</td><td>89.0</td><td>89.8</td><td>72.1</td></tr><tr><td>Ours</td><td>94.3 (94.5)</td><td>91.5 (93.1)</td><td>91.4 (91.6)</td><td>74.8 (75.0)</td></tr></table>",
1062
+ "bbox": [
1063
+ 173,
1064
+ 765,
1065
+ 821,
1066
+ 887
1067
+ ],
1068
+ "page_idx": 7
1069
+ },
1070
+ {
1071
+ "type": "table",
1072
+ "img_path": "images/e1e815f2b57f32da5fb5e656e68a68f69bdeecf860fb3fa5907c1d9d43f8f672.jpg",
1073
+ "table_caption": [
1074
+ "Effect of bottleneck dimension. We vary the dimensionality of the bottleneck layer, $d$ , and examine the performance change in Table $\\boxed { 6 }$ Our model is in general not very sensitive to the change of $d$ . ",
1075
+ "Table 6: Classifier’s test accuracy $( \\% )$ with different low-dimensions. "
1076
+ ],
1077
+ "table_footnote": [],
1078
+ "table_body": "<table><tr><td>bottleneck dimension |d= 25|d= 50丨d=100|d = 200</td><td></td><td></td><td></td><td></td></tr><tr><td>CIFAR-10 Sym 50%</td><td>93.4</td><td>94.3</td><td>94.2</td><td>93.7</td></tr><tr><td>CIFAR-100 Sym 50%</td><td>73.8</td><td>74.8</td><td>74.4</td><td>73.8</td></tr></table>",
1079
+ "bbox": [
1080
+ 292,
1081
+ 145,
1082
+ 699,
1083
+ 198
1084
+ ],
1085
+ "page_idx": 8
1086
+ },
1087
+ {
1088
+ "type": "text",
1089
+ "text": "5 CONCLUSION ",
1090
+ "text_level": 1,
1091
+ "bbox": [
1092
+ 174,
1093
+ 234,
1094
+ 320,
1095
+ 251
1096
+ ],
1097
+ "page_idx": 8
1098
+ },
1099
+ {
1100
+ "type": "text",
1101
+ "text": "This paper proposes noise-robust contrastive learning, a new method to combat noise in training data by learning robust representation. We demonstrate our model’s state-of-the-art performance with extensive experiments on multiple noisy datasets. For future work, we are interested in adapting our method to other domains such as NLP or speech. We would also like to explore the potential of our method for learning transferable representations that could be useful for down-stream tasks. ",
1102
+ "bbox": [
1103
+ 174,
1104
+ 260,
1105
+ 825,
1106
+ 330
1107
+ ],
1108
+ "page_idx": 8
1109
+ },
1110
+ {
1111
+ "type": "text",
1112
+ "text": "REFERENCES ",
1113
+ "text_level": 1,
1114
+ "bbox": [
1115
+ 174,
1116
+ 349,
1117
+ 287,
1118
+ 366
1119
+ ],
1120
+ "page_idx": 8
1121
+ },
1122
+ {
1123
+ "type": "text",
1124
+ "text": "Eric Arazo, Diego Ortego, Paul Albert, Noel E. O’Connor, and Kevin McGuinness. Unsupervised label noise modeling and loss correction. In ICML, pp. 312–321, 2019. ",
1125
+ "bbox": [
1126
+ 176,
1127
+ 372,
1128
+ 823,
1129
+ 402
1130
+ ],
1131
+ "page_idx": 8
1132
+ },
1133
+ {
1134
+ "type": "text",
1135
+ "text": "Pierre Baldi and Kurt Hornik. Neural networks and principal component analysis: Learning from examples without local minima. Neural Networks, 2(1):53–58, 1989. ",
1136
+ "bbox": [
1137
+ 176,
1138
+ 410,
1139
+ 823,
1140
+ 439
1141
+ ],
1142
+ "page_idx": 8
1143
+ },
1144
+ {
1145
+ "type": "text",
1146
+ "text": "Pengfei Chen, Benben Liao, Guangyong Chen, and Shengyu Zhang. Understanding and utilizing deep neural networks trained with noisy labels. In ICML, pp. 1062–1070, 2019. ",
1147
+ "bbox": [
1148
+ 173,
1149
+ 446,
1150
+ 821,
1151
+ 477
1152
+ ],
1153
+ "page_idx": 8
1154
+ },
1155
+ {
1156
+ "type": "text",
1157
+ "text": "Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. arXiv preprint arXiv:2002.05709, 2020. ",
1158
+ "bbox": [
1159
+ 174,
1160
+ 483,
1161
+ 823,
1162
+ 513
1163
+ ],
1164
+ "page_idx": 8
1165
+ },
1166
+ {
1167
+ "type": "text",
1168
+ "text": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Fei-Fei Li. Imagenet: A large-scale hierarchical image database. In CVPR, pp. 248–255, 2009. ",
1169
+ "bbox": [
1170
+ 173,
1171
+ 520,
1172
+ 823,
1173
+ 550
1174
+ ],
1175
+ "page_idx": 8
1176
+ },
1177
+ {
1178
+ "type": "text",
1179
+ "text": "Bo Han, Quanming Yao, Xingrui Yu, Gang Niu, Miao Xu, Weihua Hu, Ivor W. Tsang, and Masashi Sugiyama. Co-teaching: Robust training of deep neural networks with extremely noisy labels. In NeurIPS, pp. 8536–8546, 2018. ",
1180
+ "bbox": [
1181
+ 176,
1182
+ 558,
1183
+ 823,
1184
+ 601
1185
+ ],
1186
+ "page_idx": 8
1187
+ },
1188
+ {
1189
+ "type": "text",
1190
+ "text": "Jiangfan Han, Ping Luo, and Xiaogang Wang. Deep self-learning from noisy labels. In ICCV, pp. 5137–5146, 2019. ",
1191
+ "bbox": [
1192
+ 173,
1193
+ 608,
1194
+ 823,
1195
+ 637
1196
+ ],
1197
+ "page_idx": 8
1198
+ },
1199
+ {
1200
+ "type": "text",
1201
+ "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In ECCV, pp. 630–645, 2016. ",
1202
+ "bbox": [
1203
+ 173,
1204
+ 645,
1205
+ 823,
1206
+ 675
1207
+ ],
1208
+ "page_idx": 8
1209
+ },
1210
+ {
1211
+ "type": "text",
1212
+ "text": "Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross Girshick. Momentum contrast for unsupervised visual representation learning. arXiv preprint arXiv:1911.05722, 2019. ",
1213
+ "bbox": [
1214
+ 173,
1215
+ 681,
1216
+ 823,
1217
+ 712
1218
+ ],
1219
+ "page_idx": 8
1220
+ },
1221
+ {
1222
+ "type": "text",
1223
+ "text": "Dan Hendrycks and Thomas Dietterich. Benchmarking neural network robustness to common corruptions and perturbations. In ICLR, 2019. ",
1224
+ "bbox": [
1225
+ 174,
1226
+ 719,
1227
+ 821,
1228
+ 748
1229
+ ],
1230
+ "page_idx": 8
1231
+ },
1232
+ {
1233
+ "type": "text",
1234
+ "text": "Dan Hendrycks, Mantas Mazeika, Duncan Wilson, and Kevin Gimpel. Using trusted data to train deep networks on labels corrupted by severe noise. In NeurIPS, pp. 10477–10486, 2018. ",
1235
+ "bbox": [
1236
+ 176,
1237
+ 756,
1238
+ 821,
1239
+ 786
1240
+ ],
1241
+ "page_idx": 8
1242
+ },
1243
+ {
1244
+ "type": "text",
1245
+ "text": "Dan Hendrycks, Norman Mu, Ekin Dogus Cubuk, Barret Zoph, Justin Gilmer, and Balaji Lakshminarayanan. Augmix: A simple data processing method to improve robustness and uncertainty. In ICLR, 2020. ",
1246
+ "bbox": [
1247
+ 174,
1248
+ 792,
1249
+ 825,
1250
+ 835
1251
+ ],
1252
+ "page_idx": 8
1253
+ },
1254
+ {
1255
+ "type": "text",
1256
+ "text": "Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, and Li Fei-Fei. Mentornet: Learning datadriven curriculum for very deep neural networks on corrupted labels. In ICML, pp. 2309–2318, 2018. ",
1257
+ "bbox": [
1258
+ 173,
1259
+ 843,
1260
+ 823,
1261
+ 887
1262
+ ],
1263
+ "page_idx": 8
1264
+ },
1265
+ {
1266
+ "type": "text",
1267
+ "text": "Lu Jiang, Di Huang, Mason Liu, and Weilong Yang. Beyond synthetic noise: Deep learning on controlled noisy labels. In ICML, 2020. ",
1268
+ "bbox": [
1269
+ 174,
1270
+ 895,
1271
+ 820,
1272
+ 924
1273
+ ],
1274
+ "page_idx": 8
1275
+ },
1276
+ {
1277
+ "type": "text",
1278
+ "text": "Jeff Johnson, Matthijs Douze, and Herve J ´ egou. Billion-scale similarity search with gpus. ´ arXiv preprint arXiv:1702.08734, 2017. ",
1279
+ "bbox": [
1280
+ 169,
1281
+ 103,
1282
+ 823,
1283
+ 132
1284
+ ],
1285
+ "page_idx": 9
1286
+ },
1287
+ {
1288
+ "type": "text",
1289
+ "text": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. Mater’s thesis, University of Toronto, 2009. ",
1290
+ "bbox": [
1291
+ 171,
1292
+ 141,
1293
+ 823,
1294
+ 171
1295
+ ],
1296
+ "page_idx": 9
1297
+ },
1298
+ {
1299
+ "type": "text",
1300
+ "text": "Kuang-Huei Lee, Xiaodong He, Lei Zhang, and Linjun Yang. Cleannet: Transfer learning for scalable image classifier training with label noise. In CVPR, pp. 5447–5456, 2018. ",
1301
+ "bbox": [
1302
+ 169,
1303
+ 180,
1304
+ 823,
1305
+ 210
1306
+ ],
1307
+ "page_idx": 9
1308
+ },
1309
+ {
1310
+ "type": "text",
1311
+ "text": "Junnan Li, Yongkang Wong, Qi Zhao, and Mohan S. Kankanhalli. Learning to learn from noisy labeled data. In CVPR, pp. 5051–5059, 2019. ",
1312
+ "bbox": [
1313
+ 173,
1314
+ 219,
1315
+ 821,
1316
+ 248
1317
+ ],
1318
+ "page_idx": 9
1319
+ },
1320
+ {
1321
+ "type": "text",
1322
+ "text": "Junnan Li, Richard Socher, and Steven C.H. Hoi. Dividemix: Learning with noisy labels as semisupervised learning. In ICLR, 2020a. ",
1323
+ "bbox": [
1324
+ 171,
1325
+ 257,
1326
+ 821,
1327
+ 287
1328
+ ],
1329
+ "page_idx": 9
1330
+ },
1331
+ {
1332
+ "type": "text",
1333
+ "text": "Junnan Li, Pan Zhou, Caiming Xiong, Richard Socher, and Steven C.H. Hoi. Prototypical contrastive learning of unsupervised representations. arXiv preprint arXiv:2005.04966, 2020b. ",
1334
+ "bbox": [
1335
+ 173,
1336
+ 296,
1337
+ 823,
1338
+ 327
1339
+ ],
1340
+ "page_idx": 9
1341
+ },
1342
+ {
1343
+ "type": "text",
1344
+ "text": "Wen Li, Limin Wang, Wei Li, Eirikur Agustsson, and Luc Van Gool. Webvision database: Visual learning and understanding from web data. arXiv:1708.02862, 2017. ",
1345
+ "bbox": [
1346
+ 174,
1347
+ 335,
1348
+ 823,
1349
+ 366
1350
+ ],
1351
+ "page_idx": 9
1352
+ },
1353
+ {
1354
+ "type": "text",
1355
+ "text": "Yueming Lyu and Ivor W. Tsang. Curriculum loss: Robust learning and generalization against label corruption. In ICLR, 2020. ",
1356
+ "bbox": [
1357
+ 174,
1358
+ 375,
1359
+ 823,
1360
+ 404
1361
+ ],
1362
+ "page_idx": 9
1363
+ },
1364
+ {
1365
+ "type": "text",
1366
+ "text": "Xingjun Ma, Yisen Wang, Michael E. Houle, Shuo Zhou, Sarah M. Erfani, Shu-Tao Xia, Sudanthi N. R. Wijewickrema, and James Bailey. Dimensionality-driven learning with noisy labels. In ICML, pp. 3361–3370, 2018. ",
1367
+ "bbox": [
1368
+ 174,
1369
+ 412,
1370
+ 823,
1371
+ 457
1372
+ ],
1373
+ "page_idx": 9
1374
+ },
1375
+ {
1376
+ "type": "text",
1377
+ "text": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9:2579–2605, 2008. ",
1378
+ "bbox": [
1379
+ 169,
1380
+ 465,
1381
+ 825,
1382
+ 494
1383
+ ],
1384
+ "page_idx": 9
1385
+ },
1386
+ {
1387
+ "type": "text",
1388
+ "text": "Eran Malach and Shai Shalev-Shwartz. Decoupling “when to update” from “how to update”. In NIPS, pp. 960–970, 2017. ",
1389
+ "bbox": [
1390
+ 171,
1391
+ 503,
1392
+ 825,
1393
+ 534
1394
+ ],
1395
+ "page_idx": 9
1396
+ },
1397
+ {
1398
+ "type": "text",
1399
+ "text": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. In NIPS-WS, 2011. ",
1400
+ "bbox": [
1401
+ 169,
1402
+ 542,
1403
+ 823,
1404
+ 573
1405
+ ],
1406
+ "page_idx": 9
1407
+ },
1408
+ {
1409
+ "type": "text",
1410
+ "text": "Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2018. ",
1411
+ "bbox": [
1412
+ 173,
1413
+ 582,
1414
+ 820,
1415
+ 612
1416
+ ],
1417
+ "page_idx": 9
1418
+ },
1419
+ {
1420
+ "type": "text",
1421
+ "text": "Giorgio Patrini, Alessandro Rozza, Aditya Krishna Menon, Richard Nock, and Lizhen Qu. Making deep neural networks robust to label noise: A loss correction approach. In CVPR, pp. 2233–2241, 2017. ",
1422
+ "bbox": [
1423
+ 173,
1424
+ 621,
1425
+ 825,
1426
+ 664
1427
+ ],
1428
+ "page_idx": 9
1429
+ },
1430
+ {
1431
+ "type": "text",
1432
+ "text": "Scott E. Reed, Honglak Lee, Dragomir Anguelov, Christian Szegedy, Dumitru Erhan, and Andrew Rabinovich. Training deep neural networks on noisy labels with bootstrapping. In ICLR, 2015. ",
1433
+ "bbox": [
1434
+ 174,
1435
+ 672,
1436
+ 823,
1437
+ 703
1438
+ ],
1439
+ "page_idx": 9
1440
+ },
1441
+ {
1442
+ "type": "text",
1443
+ "text": "Yanyao Shen and Sujay Sanghavi. Learning with bad training data via iterative trimmed loss minimization. In ICML, pp. 5739–5748, 2019. ",
1444
+ "bbox": [
1445
+ 173,
1446
+ 712,
1447
+ 823,
1448
+ 742
1449
+ ],
1450
+ "page_idx": 9
1451
+ },
1452
+ {
1453
+ "type": "text",
1454
+ "text": "Christian Szegedy, Sergey Ioffe, Vincent Vanhoucke, and Alexander A. Alemi. Inception-v4, inception-resnet and the impact of residual connections on learning. In AAAI, pp. 4278–4284, 2017. ",
1455
+ "bbox": [
1456
+ 174,
1457
+ 751,
1458
+ 825,
1459
+ 794
1460
+ ],
1461
+ "page_idx": 9
1462
+ },
1463
+ {
1464
+ "type": "text",
1465
+ "text": "Daiki Tanaka, Daiki Ikami, Toshihiko Yamasaki, and Kiyoharu Aizawa. Joint optimization framework for learning with noisy labels. In CVPR, pp. 5552–5560, 2018. ",
1466
+ "bbox": [
1467
+ 171,
1468
+ 804,
1469
+ 823,
1470
+ 833
1471
+ ],
1472
+ "page_idx": 9
1473
+ },
1474
+ {
1475
+ "type": "text",
1476
+ "text": "Arash Vahdat. Toward robustness against label noise in training deep discriminative neural networks. In NIPS, pp. 5601–5610, 2017. ",
1477
+ "bbox": [
1478
+ 173,
1479
+ 842,
1480
+ 825,
1481
+ 872
1482
+ ],
1483
+ "page_idx": 9
1484
+ },
1485
+ {
1486
+ "type": "text",
1487
+ "text": "Andreas Veit, Neil Alldrin, Gal Chechik, Ivan Krasin, Abhinav Gupta, and Serge J. Belongie. Learning from noisy large-scale datasets with minimal supervision. In CVPR, pp. 6575–6583, 2017. ",
1488
+ "bbox": [
1489
+ 176,
1490
+ 882,
1491
+ 826,
1492
+ 922
1493
+ ],
1494
+ "page_idx": 9
1495
+ },
1496
+ {
1497
+ "type": "text",
1498
+ "text": "Pascal Vincent, Hugo Larochelle, Isabelle Lajoie, Yoshua Bengio, and Pierre-Antoine Manzagol. Stacked denoising autoencoders: Learning useful representations in a deep network with a local denoising criterion. J. Mach. Learn. Res., 11:3371–3408, 2010. \nYisen Wang, Weiyang Liu, Xingjun Ma, James Bailey, Hongyuan Zha, Le Song, and Shu-Tao Xia. Iterative learning with open-set noisy labels. In CVPR, pp. 8688–8696, 2018. \nZhirong Wu, Yuanjun Xiong, Stella X. Yu, and Dahua Lin. Unsupervised feature learning via non-parametric instance discrimination. In CVPR, pp. 3733–3742, 2018. \nTong Xiao, Tian Xia, Yi Yang, Chang Huang, and Xiaogang Wang. Learning from massive noisy labeled data for image classification. In CVPR, pp. 2691–2699, 2015. \nKun Yi and Jianxin Wu. Probabilistic end-to-end noise correction for learning with noisy labels. In CVPR, 2019. \nXingrui Yu, Bo Han, Jiangchao Yao, Gang Niu, Ivor W. Tsang, and Masashi Sugiyama. How does disagreement help generalization against label corruption? In ICML, pp. 7164–7173, 2019. \nChiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. In ICLR, 2017. \nHongyi Zhang, Moustapha Cisse, Yann N. Dauphin, and David Lopez-Paz. mixup: Beyond empirical ´ risk minimization. In ICLR, 2018. \nZhilu Zhang and Mert R. Sabuncu. Generalized cross entropy loss for training deep neural networks with noisy labels. In NeurIPS, pp. 8792–8802, 2018. ",
1499
+ "bbox": [
1500
+ 171,
1501
+ 103,
1502
+ 826,
1503
+ 452
1504
+ ],
1505
+ "page_idx": 10
1506
+ }
1507
+ ]
parse/train/D1E1h-K3jso/D1E1h-K3jso_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/D1E1h-K3jso/D1E1h-K3jso_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/H1edEyBKDS/H1edEyBKDS.md ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/H1edEyBKDS/H1edEyBKDS_content_list.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/H1edEyBKDS/H1edEyBKDS_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/H1edEyBKDS/H1edEyBKDS_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/HyxFF34FPr/HyxFF34FPr.md ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FOVEABOX: BEYOUND ANCHOR-BASED OBJECT DETECTION
2
+
3
+ Anonymous authors Paper under double-blind review
4
+
5
+ # ABSTRACT
6
+
7
+ We present FoveaBox, an accurate, flexible, and completely anchor-free framework for object detection. While almost all state-of-the-art object detectors utilize predefined anchors to enumerate possible locations, scales and aspect ratios for the search of the objects, their performance and generalization ability are also limited to the design of anchors. Instead, FoveaBox directly learns the object existing possibility and the bounding box coordinates without anchor reference. This is achieved by: (a) predicting category-sensitive semantic maps for the object existing possibility, and (b) producing category-agnostic bounding box for each position that potentially contains an object. The scales of target boxes are naturally associated with feature pyramid representations. We demonstrate its effectiveness on standard benchmarks and report extensive experimental analysis. Without bells and whistles, FoveaBox achieves state-of-the-art single model performance on the standard COCO detection benchmark. More importantly, FoveaBox avoids all computation and hyper-parameters related to anchor boxes, which are often sensitive to the final detection performance. We believe the simple and effective approach will serve as a solid baseline and help ease future research for object detection.
8
+
9
+ # 1 INTRODUCTION
10
+
11
+ Object detection requires the solution of two main tasks: recognition and localization. Given an arbitrary image, an object detection system needs to determine whether there are any instances of semantic objects from predefined categories and, if present, to return the spatial location and extent. To add the localization functionality to generic object detection systems, sliding window approaches have been the method of choice for many years (Lampert et al., 2008; Felzenszwalb et al., 2010; Liu et al., 2018).
12
+
13
+ Recently, deep learning techniques have emerged as powerful methods for learning feature representations automatically from data (Simonyan & Zisserman, 2014; He et al., 2016; Huang et al., 2017a). For object detection, the anchor-based Region Proposal Networks (Ren et al., 2015) are widely used to serve as a common component for searching possible regions of interest for modern object detection frameworks (Liu et al., 2016; He et al., 2017; Lin et al., 2018). In short, anchor method suggests dividing the box space into discrete bins and refining the object box in the corresponding bin. Most state-of-the-art detectors rely on anchors to enumerate the possible locations, scales, and aspect ratios for target objects (Liu et al., 2018). Anchors are regression references and classification candidates to predict proposals for two-stage detectors or final bounding boxes for single-stage detectors. Nevertheless, anchors can be regarded as a feature-sharing sliding window scheme to cover the possible locations of objects.
14
+
15
+ ![](images/ee0090c10ecb98878b6e27f6bf8f893fea6ad40f1a694c27deeeb73a6acadbf6.jpg)
16
+ Figure 1: The anchor-based object detection frameworks need to (a) design anchors according to the ground-truth box distributions; (b) match anchors with ground-truth boxes to generate training target (anchor classification and refinement); and (c) utilize the target generated by (b) for training.
17
+
18
+ However, anchors must be carefully designed and used in object detection frameworks. (a) One of the most important factors in designing anchors is how densely it covers the instance location space. To achieve a good recall rate, anchors are carefully designed based on the statistics computed from the training/validation set (Lin et al., 2018). (b) One design choice based on a particular dataset is not always applicable to other applications, which harms the generality (Yang et al., 2018). (c) At training phase, anchor-methods rely on the intersection-over-union (IoU) to define the positive/negative samples, which introduces additional computation and hyper-parameters for an object detection system (Wang et al., 2019).
19
+
20
+ In contrast, our human vision system can recognize the instance in space and predict the boundary given the visual cortex map, without any pre-defined shape template (Bear et al., 2007). In other words, we human naturally recognize the object in the visual scene without enumerating the candidate boxes. Inspired by this, an intuitive question to ask is, is the anchor scheme the optimal way to guide the search of objects? And further, could we design an accurate object detection framework without anchors or candidate boxes? Without anchors, one may expect a complex method is required to achieve comparable performance. However, we show that a surprisingly simple and flexible system can match, even surpass the prior state-of-the-art object detection results without any requirement of candidate boxes.
21
+
22
+ ![](images/8bc10160a13d4b5beae54d063f3736f43c31f1b08a0bcf27e4fd650d2e4b7115.jpg)
23
+ Figure 2: FoveaBox object detector. For each output spacial position that potentially presents an object, FoveaBox directly predicts the confidences for all target categories and the bounding box.
24
+
25
+ To this end, we present FoveaBox, a completely anchor-free framework for object detection. FoveaBox is motivated from the fovea of human eyes: the center of the vision field is with the highest visual acuity (Fig.2 left), which is necessary for activities where visual detail is of primary importance (Iwasaki & Inomata, 1986). FoveaBox jointly predicts the locations where the object’s center area is likely to exist as well as the bounding box at each valid location.
26
+
27
+ In FoveaBox, each target object is predicted by category scores at center area, associated with 4-d bounding box, as shown in Fig.2 right. At training phase, we do not need to utilize anchors, or IoU matching to generate training target. Instead, the training target is directly generated by ground-truth boxes.
28
+
29
+ To demonstrate the effectiveness of the proposed detection scheme, we combine the recent progress of feature pyramid networks and our detection head to form the framework of FoveaBox. Without bells and whistles, FoveaBox gets state-of-the-art single-model results on the COCO object detection task. Compared with the anchor-based RetinaNet, FoveaBox gets 2.2 AP gains, which also surpasses most of previously published anchor based single-model results. We believe the simple training/inference manner of FoveaBox, together with the flexibility and accuracy, will benefit future research on object detection and relevant topics.
30
+
31
+ # 2 FOVEABOX
32
+
33
+ FoveaBox is conceptually simple: It contains a backbone network and a fovea head network. The backbone is responsible for computing a convolutional feature map over an entire input image and is an off-the-shelf convolutional network. The fovea head is composed of two sub-branches, the first branch performs per pixel classification on the backbone’s output; the second branch performs box prediction for each position that potentially covered by an object.
34
+
35
+ # 2.1 REVIEW OF FPN AND ANCHORS:
36
+
37
+ We begin by briefly reviewing the Feature Pyramid Network (FPN) used for object detection (Lin et al., 2017). In general, FPN uses a top-down architecture with lateral connections to build an in-network feature pyramid from a single-scale input. FPN is independent of a specific task. For object detection, each level of the pyramid in FPN is used for detecting objects at a specific scale. On each feature pyramid, anchor-based methods uniformly place $A$ anchors on each of the $H \times W$ spacial position. After computing the IoU overlap between all anchors and the ground-truth boxes, the anchor-based methods can define training targets. Finally, the pyramid features are utilized to optimize the targets.
38
+
39
+ ![](images/dfe718192bcb34f1770531c855ee5fe6c07a0cef4ffd8a59e987bfc67478e369.jpg)
40
+ Figure 3: Anchor-based object detection v.s. FoveaBox object detection. left: The anchor-based method uniformly places $A$ ( $A = 3$ in this example) anchors on each output spacial position, and utilizes IoU to define the positive/negative anchors; right: FoveaBox directly define positive/negative samples for each output spacial position by ground-truth boxes, and predicts the box boundaries from the corresponding position.
41
+
42
+ # 2.2 FOVEABOX
43
+
44
+ FoveaBox directly predicts the object existing possibility and the corresponding boundary for each position potential contained by an instance. In this section, we introduce the key components stepby-step.
45
+
46
+ # 2.2.1 OBJECT OCCURRENCE POSSIBILITY
47
+
48
+ Given a valid ground-truth box denoted as $( x _ { 1 } , y _ { 1 } , x _ { 2 } , y _ { 2 } )$ . We first map the box into the target feature pyramid $P _ { l }$
49
+
50
+ $$
51
+ \begin{array} { c } { { x _ { 1 } ^ { ' } = \frac { x _ { 1 } } { s _ { l } } , y _ { 1 } ^ { ' } = \frac { y _ { 1 } } { s _ { l } } , x _ { 2 } ^ { ' } = \frac { x _ { 2 } } { s _ { l } } , y _ { 2 } ^ { ' } = \frac { y _ { 2 } } { s _ { l } } , } } \\ { { { } } } \\ { { c _ { x } ^ { ' } = 0 . 5 ( x _ { 2 } ^ { ' } + x _ { 1 } ^ { ' } ) , c _ { y } ^ { ' } = 0 . 5 ( y _ { 2 } ^ { ' } + y _ { 1 } ^ { ' } ) , w ^ { ' } = x _ { 2 } ^ { ' } - x _ { 1 } ^ { ' } , h ^ { ' } = y _ { 2 } ^ { ' } - y _ { 1 } ^ { ' } , } } \end{array}
52
+ $$
53
+
54
+ where $s _ { l }$ is the down-sample factor. The positive area $R ^ { p o s }$ on the score map is designed to be roughly a shrunk version of the original one (Fig.3 right):
55
+
56
+ $$
57
+ \begin{array} { r } { x _ { 1 } ^ { p o s } = c _ { x } ^ { ' } - 0 . 5 \sigma w ^ { ' } , y _ { 1 } ^ { p o s } = c _ { y } ^ { ' } - 0 . 5 \sigma h ^ { ' } , } \\ { x _ { 2 } ^ { p o s } = c _ { x } ^ { ' } + 0 . 5 \sigma w ^ { ' } , y _ { 2 } ^ { p o s } = c _ { y } ^ { ' } + 0 . 5 \sigma h ^ { ' } , } \end{array}
58
+ $$
59
+
60
+ where $\sigma$ is the shrunk factor. At training phase, each cell inside the positive area is annotated with the corresponding target class label. The negative area is the whole feature map excluding area in $R ^ { p o s }$ . For predicting, each output set of pyramidal heat-map has $C$ channels, where $C$ is the number of categories, and is of size $H \times W$ . Each channel is a binary mask indicating the possibility for a class, like FCNs in semantic segmentation (Long et al., 2015). The positive area usually accounts for a small portion of the whole feature map, so we adopt Focal Loss (Lin et al., 2018) to train this branch.
61
+
62
+ # 2.2.2 SCALE ASSIGNMENT
63
+
64
+ While our goal is to predict the boundary of the target objects, directly predicting these numbers is not stable, due to the large scale variations of the objects. Instead, we divide the scales of objects into several bins, according to the number of feature pyramidal levels. Each pyramid has a basic scale $r _ { l }$ ranging from 32 to 512 on pyramid levels $P _ { 3 }$ to $P _ { 7 }$ , respectively. The valid scale range of the target boxes for pyramid level $l$ is computed as
65
+
66
+ $$
67
+ [ r _ { l } / \eta , r _ { l } \cdot \eta ] ,
68
+ $$
69
+
70
+ where $\eta$ is set empirically to control the scale range for each pyramid. Target objects not in the corresponding scale range are ignored during training. Note that an object may be detected by multiple pyramids of the networks, which is different from previous practice that maps objects to only one feature pyramid (He et al., 2017).
71
+
72
+ # 2.2.3 BOX PREDICTION
73
+
74
+ Each ground-truth bounding box is specified in the way $G \ : = \ : ( x _ { 1 } , y _ { 1 } , x _ { 2 } , y _ { 2 } )$ . Starting from a positive point $( x , y )$ in $R ^ { p o s }$ , FoveaBox directly computes the normalized offset between $( x , y )$ and four boundaries:
75
+
76
+ $$
77
+ \begin{array} { l l } { { t _ { x } } _ { 1 } = \log \frac { s _ { l } ( x + 0 . 5 ) - x _ { 1 } } { r _ { l } } , t _ { y _ { 1 } } = \log \frac { s _ { l } ( y + 0 . 5 ) - y _ { 1 } } { r _ { l } } , } \\ { { t _ { x } } _ { 2 } = \log \frac { x _ { 2 } - s _ { l } ( x + 0 . 5 ) } { r _ { l } } , t _ { y _ { 2 } } = \log \frac { y _ { 2 } - s _ { l } ( y + 0 . 5 ) } { r _ { l } } . } \end{array}
78
+ $$
79
+
80
+ This function first maps the coordinate $( x , y )$ to the input image, then computes the normalized offset between the projected coordinate and $G$ . Finally the targets are regularized with the log-space function. $r _ { l }$ is the basic scale defined in section 2.2.2.
81
+
82
+ For simplicity, we adopt the widely used Smooth $L _ { 1 }$ loss (Ren et al., 2015) to train the box prediction $L _ { b o x }$ . After targets being optimized, we can generate the box boundary for each cell $( x , y )$ on the output feature maps1. In box branch, each output set of pyramidal heatmap has 4 channels, for jointly prediction of $( t _ { x _ { 1 } } , t _ { y _ { 1 } } , t _ { x _ { 2 } } , t _ { y _ { 2 } } )$ .
83
+
84
+ # 2.2.4 NETWORK ARCHITECTURE
85
+
86
+ To demonstrate the generality of our approach, we instantiate FoveaBox with multiple architectures. For clarity, we differentiate between: (i) the convolutional backbone architecture used for feature extraction over an entire image, and (ii) the network head for computing the final results.
87
+
88
+ ![](images/862b43123997d3662af060569300731534469cd4e3d82efd5890e75b12ee4bee.jpg)
89
+ Figure 4: On each FPN feature level, FoveaBox attaches two subnetworks, one for classifying the corresponding cells and one for predict the $( x _ { 1 } , y _ { 1 } , x _ { 2 } , y _ { 2 } )$ of ground-truth object box. Right is the score output map with their corresponding predicted boxes before feeding into non-maximum suppression (NMS). The score probability in each position is denoted by the color density. More examples are shown in Fig.5.
90
+
91
+ Most of the experiments are based on the head architecture as shown in Fig.4. We also utilize different head variants to further study the generality. More complex designs have the potential to improve performance but are not the focus of this work.
92
+
93
+ # 2.2.5 IMPLEMENTATIONS
94
+
95
+ We adopt the widely used FPN networks for fair comparison. Concretely, we construct a pyramid with levels $\{ P _ { l } \} , l \ = \ 3 , 4 , \cdots , 7$ , where $l$ indicates pyramid level. $P _ { l }$ has $1 / 2 ^ { l }$ resolution of the input. All pyramid levels have $C = 2 5 6$ channels. Fovea head is attached on each pyramid level. Parameters are shared across all pyramid levels.
96
+
97
+ FoveaBox is trained with stochastic gradient descent (SGD). We use synchronized SGD over 4 GPUs with a total of 16 images per minibatch (4 images per GPU). Unless otherwise specified, all models are trained for 12 epochs with an initial learning rate of 0.01, which is then divided by 10 at 8th and again at 11th epochs. Weight decay of 0.0001 and momentum of 0.9 are used. Only standard horizontal image flipping is used for data augmentation. During inference, we first use a confidence threshold of 0.05 to filter out predictions with low confidence. Then, we select the top 1000 scoring boxes from each prediction layer. Next, NMS with threshold 0.5 is applied for each class separately. Finally, the top-100 scoring predictions are selected for each image. Although there are more intelligent ways to perform post-processing, such as bbox voting (Gidaris & Komodakis, 2015), Soft-NMS (Bodla et al., 2017) or test-time image augmentations, in order to keep simplicity and to fairly compare against the baseline models, we do not use those tricks here.
98
+
99
+ # 3 EXPERIMENTS
100
+
101
+ We present experimental results on the bounding box detection track of the MS COCO benchmark. All models are trained on MS COCO trainval35k. If not specified, ResNet-50-FPN backbone and a 600 pixel train and test image scale are used to do the ablation study. We report lesion and sensitivity studies by evaluating on the minival split. For our main results, we report COCO AP on the test-dev split, which has no public labels and requires use of the evaluation server.
102
+
103
+ # 3.1 ABLATION STUDY
104
+
105
+ Various anchor densities and FoveaBox: One of the most important design factors in an anchorbased detection system is how densely it covers the space of possible objects. As anchor-based detectors use a fixed sampling grid, a popular approach for achieving high coverage of boxes is to use multiple anchors at each spatial position. One may expect that we can always get better performance when attaching denser anchors on each position. To verify this assumption, we sweep over the number of scale and aspect ratio anchors used at each spatial position and each pyramid level in RetinaNet, including a single square anchor at each location to 12 anchors per location (Table.1(a)). Increasing beyond 6-9 anchors does not show further gains. The saturation of performance w.r.t. density implies the handcrafted, over-density anchors do not offer an advantage.
106
+
107
+ Over-density anchors not only increase the foreground-background optimization difficulty, but also likely to cause the ambiguous position definition problem. For each output spatial location, there are $A$ anchors whose labels are defined by the IoU with the ground-truth. Among them, some of the anchors are defined as positive samples, while others are negatives. However they are sharing the same input features. The classifier needs to not only distinguish the samples from different positions, but also different anchors at the same position.
108
+
109
+ In contrast, FoveaBox explicitly predicts one target at each position and gets no worse performance than the best anchor-based model. Compare with the anchor based scheme, FoveaBox enjoys several advantages. (a) Since we only predict one target at each position, the output space has been reduced to $1 / A$ of the anchor-based method. (b) There is no ambiguous problem and the optimization target is more straightforward. (c) FoveaBox has fewer hyper-parameters, and is more flexible, since we do not need to extensively design anchors to see a relatively better choice.
110
+
111
+ FoveaBox is more robust to box distribution: One of the major benefits of FoveaBox is the robust prediction of bounding boxes. To verify this, we divide the boxes in the validation set into three groups according to the ground-truth aspect ratios $\begin{array} { r } { u = \operatorname* { m a x } ( \frac { h } { w } , \frac { w } { h } ) } \end{array}$ . We compare FoveaBox and
112
+
113
+ Table 1: Ablation experiments for FoveaBox. All models are trained on trainval35k, test on minival. If not specified, default values are $\eta = 2 . 0$ and $\sigma = 0 . 4$ . (a) Our anchor-free FoveaBox get $0 . 9 \mathrm { \ A P }$ gains compared with the best model of anchor-based RetinaNet; (b) FoveaBox is more robust to bounding box distributions; (c) FoveaBox could also generate high-quality region proposals; (d) Accuracy of FoveaBox for various network depths and image scales; (e) and (f): FoveaBox gets best performance with $\eta = 2 . 0$ and $\sigma = 0 . 4$ . See Section 3.1 for details.
114
+
115
+ (a) Varying anchor density and FoveaBox.
116
+
117
+ <table><tr><td>method</td><td>#sc</td><td>#ar</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>RetinaNet</td><td>1</td><td>1</td><td>30.2</td><td>49.0</td><td>31.7</td></tr><tr><td>RetinaNet</td><td>2</td><td></td><td>31.9</td><td>50.0</td><td>34.1</td></tr><tr><td>RetinaNet</td><td>3</td><td></td><td>31.9</td><td>49.4</td><td>33.8</td></tr><tr><td>RetinaNet</td><td>2</td><td>113</td><td>34.2</td><td>53.1</td><td>36.5</td></tr><tr><td>RetinaNet</td><td>3</td><td>33</td><td>34.2</td><td>53.2</td><td>36.9</td></tr><tr><td>RetinaNet</td><td>4</td><td></td><td>33.9</td><td>52.1</td><td>36.2</td></tr><tr><td>FoveaBox</td><td>-</td><td>-</td><td>35.1</td><td>54.3</td><td>37.1</td></tr></table>
118
+
119
+ (b) Detection with different aspect ratios
120
+
121
+ <table><tr><td>method</td><td>AP</td><td>APu&lt;3</td><td>AP3≤u&lt;5</td><td>APu&gt;5</td></tr><tr><td>RetinaNet</td><td>34.2</td><td>36.5</td><td>24.5</td><td>10.2</td></tr><tr><td>FoveaBox</td><td>35.1</td><td>36.8</td><td>26.8</td><td>16.4</td></tr></table>
122
+
123
+ (c) Region proposal performance.
124
+
125
+ <table><tr><td>method</td><td>backbone</td><td>AR100</td><td>AR300</td><td>AR1000</td></tr><tr><td>RPN</td><td>ResNet-50</td><td>44.5</td><td>51.1</td><td>56.6</td></tr><tr><td>FoveaBox</td><td>ResNet-50</td><td>52.9</td><td>57.3</td><td>61.5</td></tr></table>
126
+
127
+ (d) Different input resolutions and models.
128
+ (e) Varying η $( \sigma = 0 . 4 )$ . (f) Varying σ $( \eta = 2 . 0 )$ ).
129
+
130
+ <table><tr><td>net-depth-scale</td><td>AP</td><td>AP50</td><td>AP75</td><td>m</td><td>AP</td><td>AP50</td><td>AP75</td><td>0</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>FoveaBox-50-400</td><td>31.9+1.4</td><td>49.6</td><td>33.8</td><td>1.0</td><td>32.0</td><td>50.4</td><td>31.8</td><td>0.2</td><td>34.1</td><td>53.2</td><td>36.0</td></tr><tr><td>FoveaBox-50-600</td><td>35.1+0.9</td><td>54.3</td><td>37.1</td><td>1.5</td><td>34.1</td><td>53.3</td><td>36.0</td><td>0.3</td><td>34.8</td><td>54.0</td><td>36.7</td></tr><tr><td>FoveaBox-50-800</td><td>36.4+0.9</td><td>56.2</td><td>38.7</td><td>2.0</td><td>35.1</td><td>54.4</td><td>37.0</td><td>0.4</td><td>35.1</td><td>54.4</td><td>37.0</td></tr><tr><td>FoveaBox-101-400</td><td>33.3+1.4</td><td>51.0</td><td>35.0</td><td>2.5</td><td>35.0</td><td>54.2</td><td>36.8</td><td>0.5</td><td>34.8</td><td>53.9</td><td>36.6</td></tr><tr><td>FoveaBox-101-600</td><td>37.0+1.0</td><td>56.4</td><td>39.3</td><td>3.0</td><td>34.3</td><td>53.3</td><td>36.5</td><td>0.6</td><td>34.1</td><td>53.1</td><td>36.0</td></tr><tr><td>FoveaBox-101-800</td><td>38.6+0.9</td><td>58.0</td><td>41.2</td><td>4.0</td><td>32.8</td><td>51.0</td><td>34.5</td><td>0.7</td><td>33.3</td><td>52.5</td><td>34.9</td></tr></table>
131
+
132
+ RetinaNet at different aspect ratio thresholds, as shown in Table 1(b). We see that both methods get best performance when $u$ is low. Although FoveaBox also suffers performance decrease when $u$ increases, it is much better than the baseline model.
133
+
134
+ Generating high-quality region proposals: Changing the classification target to class-agnostic head is straightforward and could generate region proposals. We compare the proposal performance against FPN-based RPN (Lin et al., 2017) and evaluate average recalls (AR) with different numbers of proposals on minival set, as shown in Table 1(c). Surprisingly, our method outperforms the RPN baseline by a large margin, among all criteria. Specifically, with top 100 region proposals, FoveaBox gets 52.9 AR, outperforming RPN by 8.4 points. This validates that our model’s capacity in generating high quality region proposals.
135
+
136
+ Across model depth and scale: Table 1(d) shows FoveaBox utilizing different backbone networks and input resolutions. The train/inference settings are exactly the same as the baseline method (Lin et al., 2018). Under the same settings, FoveaBox consistently gets $0 . 9 { \sim } 1 . 4$ higher AP. When comparing the inference speed, we find that FoveaBox models are about $1 . 1 { \sim } 1 . 3$ times faster than the RetinaNet counterparts.
137
+
138
+ Analysis of $\eta$ and $\sigma$ : In Eq.(3), $\eta$ controls the scale assignment extent for each pyramid. As $\eta$ increases, each pyramid will response to more scales of objects. Table 1(e) shows the impact of $\eta$ on the final detection performance. Another important hyper-parameter is the shrunk factor $\sigma$ which controls the positive/negative samples. Table 1(f) shows the model performance with respect to $\sigma$ changes. In this paper, $\sigma = 0 . 4$ and $\eta = 2$ are used in other experiments.
139
+
140
+ IoU-based assignment v.s. fovea area: Another choice of defining the positive/negative samples is firstly gets the predicted box from the box branch, and then assign the target labels based on the IoU between the predicted boxes and ground-truth boxes. As shown in Table 2, the shrunk version gets better performance $( + 0 . 4$ AP) than the IoU-based assignment process.
141
+
142
+ Better head and feature alignment: The most recent works (Chen et al., 2019; Yang et al., 2019) suggest to align the features in one-stage object detection frameworks with anchors. In FoveaBox, we adopt deformable convolution (Dai et al., 2017) based on the box offset learned by Eq.(4) to refine the classification branch2. FoveaBox works well when adding such techniques. Specifically, when we change the classification branch to a heavier head, together with feature alignment and GN, FoveaBox gets 40.1 AP using ResNet-50 as backbone! This experiment demonstrates the generality of our approach to the network design (Table 3).
143
+
144
+ Table 2: Label assignment strategy (ResNet-50, 800 scale).
145
+
146
+ <table><tr><td>assign method</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>IoU (0.5/0.4) IoU (0.6/0.5)</td><td>35.6 35.9</td><td>54.7 54.7</td><td>37.7 38.4</td></tr><tr><td>IoU (0.5/0.5)</td><td>36.0</td><td>54.9</td><td>38.4</td></tr><tr><td>Fovea (σ = 0.4)</td><td>36.4</td><td>56.2</td><td>38.7</td></tr></table>
147
+
148
+ Table 3: Feature alignment and group normalization (ResNet-50, 800 scale).
149
+
150
+ <table><tr><td>cls branch</td><td>alignment</td><td>GN</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>256(3×3) -→256(3×3)-→256(3×3)-&gt;256(3×3)</td><td></td><td></td><td>36.4</td><td>56.2</td><td>38.7</td></tr><tr><td>256(3×3)→&gt;256(3×3)-&gt;256(3×3)-→256(3×3)</td><td>√</td><td></td><td>36.8</td><td>56.5</td><td>38.9</td></tr><tr><td>256(3×3)-→256(3×3)-→256(3×3)-&gt;256(3×3)</td><td>√</td><td>一</td><td>37.1</td><td>56.7</td><td>39.2</td></tr><tr><td>1024(3×3)-→1024(1×1)</td><td></td><td></td><td>36.7</td><td>57.0</td><td>39.1</td></tr><tr><td>1024(3×3)-→&gt;1024(1×1)</td><td>√</td><td></td><td>37.2</td><td>57.4</td><td>39.4</td></tr><tr><td>1024(3×3) -→1024(1×1)</td><td></td><td></td><td>37.5</td><td>58.2</td><td>39.5</td></tr><tr><td>1024(3×3) -→1024(1×1),2× epochs</td><td></td><td></td><td>37.9</td><td>58.4</td><td>40.4</td></tr><tr><td>1024(3×3)-→&gt;1024(1×1),2× epochs,mstrain</td><td></td><td></td><td>40.1</td><td>60.8</td><td>42.5</td></tr></table>
151
+
152
+ # 3.2 MAIN RESULTS
153
+
154
+ We compare FoveaBox to the state-of-the-art methods in Table 4. All instantiations of our model outperform baseline variants of previous state-of-the-art models. The first group of detectors on Table 4 are two-stage detectors, the second group one-stage detectors, and the last group the FoveaBox detector. FoveaBox outperforms all single-stage detectors under ResNet-101 backbone, under all evaluation metrics. This includes the recent one-stage CornerNet and ExtremeNet (Law & Deng, 2018; Zhou et al., 2019b). FoveaBox also outperforms most of two-stage detectors, including FPN (Lin et al., 2017), Mask R-CNN (He et al., 2017) and IoU-Net (Jiang et al., 2018).
155
+
156
+ Two-stage detectors rely on region-wise sub-networks to further classify the sparse region proposals. Since FoveaBox could also generate region proposals by changing the model head to class agnostic scheme (Table 1(c)), we believe it could further improve the performance of two-stage detectors, which beyond the focus of this paper.
157
+
158
+ # 4 IN CONTEXT OF RELATED WORK
159
+
160
+ Our work is related to previous works in different aspects. Before closing, we discuss the relations and differences in details.
161
+
162
+ Anchor-based Object Detection: The anchor-based object detection frameworks can be generally grouped into two factions: two-stage, proposal driven detectors and one-stage, proposal free methods. Anchors are regression references and classification candidates to predict proposals for two-stage detectors(Ren et al., 2015; Lin et al., 2017; He et al., 2017; Cai & Vasconcelos, 2018) or final bounding boxes for single-stage detectors (Liu et al., 2016; Lin et al., 2018; Redmon & Farhadi, 2017). Most top one-stage detectors rely on the anchor boxes to enumerate the possible locations of target objects.
163
+
164
+ Anchor-Free Explorations: There are also some prior works trying to remove the dependence of anchors. Due to the absence of anchors or region proposals, usually they lack the ability to deal with complex scenes and cases (Huang et al., 2015; Redmon et al., 2016). In text detection, the score mask technique has been used due to the arbitrary shape of target text (Zhang et al., 2016; Hu et al., 2017; Zhou et al., 2017). Such works usually utilize the fully convolutional networks to predict the existence of target scene text and the quadrilateral shapes. Guided-Anchoring (Wang et al., 2019) jointly predicts the locations where the center of objects are likely to exist as well as the scales and aspect ratios centered at the corresponding locations. Guided-Anchoring still relies on predefined anchors to optimize the object shape, and utilizes the center points to give the best predictions. In contrast, FoveaBox predicts the (left, top, right, bottom) boundaries of the object for each foreground position.
165
+
166
+ Table 4: Object detection single-model results v.s. state-of-the-arts on COCO test-dev. We show results for our FoveaBox models with 800 input scale. FoveaBox-align indicates utilizing feature alignment discussed in Section 3.1.
167
+
168
+ <table><tr><td></td><td>backbone</td><td>AP</td><td>AP50</td><td>AP75</td><td>APs</td><td>APM</td><td>APL</td></tr><tr><td>two-stage methods Faster R-CNN w FPN (Lin et al., 2017)</td><td>ResNet-101</td><td rowspan="8">36.2 38.2 34.7</td><td rowspan="8">59.1</td><td rowspan="8">39.0 41.7</td><td rowspan="8">18.2 20.1</td><td rowspan="8"></td><td rowspan="8"></td><td>48.2 50.2 52.0</td></tr><tr><td>Mask R-CNN(He et al.,2017) Faster R-CNN by G-RMI(Huang et al.,2017b)</td><td>ResNet-101 Inception-ResNet-v2 Inception-ResNet-v2</td><td>60.3 55.5 57.7</td><td>36.7 13.5</td><td>39.0 41.1 38.1</td></tr><tr><td>Faster R-CNN w TDM(Shrivastava et al.,2016)</td></tr><tr><td>Relation Network (Hu et al.,2018)</td><td>36.8 DCN-101 39.0</td><td>39.2 58.6 42.9 59.0</td><td>16.2 39.8 - -</td></tr><tr><td>IoU-Net (Jiang et al.,2018)</td><td>ResNet-101 40.6 ResNet-101 42.8 62.1</td><td>■ ■ 46.3 23.7 45.5</td></tr><tr><td>CascadeR-CNN(Cai&amp; Vasconcelos,2018)</td></tr><tr><td>one-stagemethods YOLOv2 (Redmon et al., 2016)</td></tr><tr><td>YOLOv3 (Redmon &amp; Farhadi,2018) SSD513 (Fu et al.,2017)</td></tr><tr><td>DSSD513 (Fu et al., 2017) RetinaNet (Lin et al.,2018) RetinaNet (Lin et al., 2018) RPDet (Yang et al.,2019) FCOS (Tian et al.,2019)</td><td>Darknet-53 ResNet-101 ResNet-101 ResNet-101 ResNeXt-101 ResNeXt-101</td><td colspan="9">33.0 57.9 31.2 50.4 33.2 53.3 39.1 59.1 40.8</td></tr><tr><td></td><td>ResNeXt-101 Hourglass-104</td><td>41.0 42.1</td><td>61.1 62.9 62.1</td><td>44.1 44.3 45.2</td><td>24.1 23.6 25.6</td><td>44.2 44.1 44.9 42.7</td><td>51.2 51.7 52.0 53.9</td></tr><tr><td>CornerNet (Law&amp; Deng,2018) ExtremeNet (Zhou et al.,2019b)</td><td>Hourglass-104</td><td>40.5 40.1</td><td>56.5 55.3</td><td>43.1 43.2</td><td>19.4 20.3</td><td>43.2</td><td></td></tr><tr><td>CenterNet (Duan et al.,2019)</td><td>Hourglass-104</td><td>42.1</td><td>61.1</td><td>45.9</td><td>24.1</td><td>45.5</td><td>53.1 52.8</td></tr><tr><td>ours</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>FoveaBox</td><td>ResNet-101</td><td>40.8</td><td>61.4</td><td>44.0</td><td>24.1</td><td></td><td>45.3</td><td>53.2</td></tr><tr><td>FoveaBox</td><td>ResNeXt-101</td><td>42.3</td><td>62.9</td><td>45.4</td><td></td><td>25.3</td><td></td><td></td></tr><tr><td>FoveaBox-align</td><td>ResNet-101</td><td>42.1</td><td></td><td></td><td></td><td></td><td>46.8</td><td>55.0</td></tr><tr><td></td><td>ResNeXt-101</td><td>43.9</td><td>62.7</td><td>45.5</td><td></td><td>25.2</td><td>46.6</td><td>54.5</td></tr><tr><td>FoveaBox-align</td><td></td><td></td><td>63.5</td><td>47.7</td><td></td><td>26.8</td><td>46.9</td><td>55.6</td></tr></table>
169
+
170
+ Contemporary Works: Also there are contemporary works (Tian et al., 2019; Zhou et al., 2019a) similar to the idea of FoveaBox. FCOS relies on the proposed centerness map for better learning of the instance. Instead, FoveaBox directly predict the final class probability without centerness voting, which is more simple. The CenterNet (Zhou et al., 2019a) represent each instance by its features at the center point, which could also get comparable performance when adopting heavier networks (Law & Deng, 2018). Compare with a single point, our fovea-based positive sample definition process is more reasonable (The performance drops dramatically when we decrease $\sigma$ ). Again, we note that FoveaBox, CenterNet and FCOS are concurrent works.
171
+
172
+ Bottom-up Methods: In CornerNet (Law & Deng, 2018), the authors propose to detect an object bounding box as a pair of key-points, the top-left corner and the bottom-right corner. CornerNet adopts the Associative Embedding (Newell et al., 2017) technique to separate different instances. Also there are some following works in bottom-up grouping manner (Zhou et al., 2019b; Duan et al., 2019). It should be noted that the bottom-up methods also do not need anchors during training and inference.
173
+
174
+ # 5 CONCLUSION
175
+
176
+ We have presented FoveaBox, a simple, effective, and completely anchor-free framework for generic object detection. By simultaneously predict the object position and the corresponding boundary, FoveaBox gives a clean solution for detecting objects without prior candidate boxes. We demonstrate its effectiveness on standard benchmarks and report extensive experimental analysis. We believe the simple and effective approach will serve as a solid baseline and help ease future research for object detection.
177
+
178
+ # REFERENCES
179
+
180
+ Mark F Bear, Barry W Connors, and Michael A Paradiso. Neuroscience, volume 2. Lippincott Williams & Wilkins, 2007.
181
+
182
+ Navaneeth Bodla, Bharat Singh, Rama Chellappa, and Larry S Davis. Soft-nms–improving object detection with one line of code. In Proceedings of the IEEE International Conference on Computer Vision, pp. 5561–5569, 2017.
183
+
184
+ Zhaowei Cai and Nuno Vasconcelos. Cascade r-cnn: Delving into high quality object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 6154–6162, 2018.
185
+
186
+ Hong-Yunn Chen et al. Tensorflow–a system for large-scale machine learning. In OSDI, volume 16, pp. 265–283, 2016.
187
+
188
+ Yuntao Chen, Chenxia Han, Naiyan Wang, and Zhaoxiang Zhang. Revisiting feature alignment for one-stage object detection. arXiv preprint arXiv:1908.01570, 2019.
189
+
190
+ Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li, Guodong Zhang, Han Hu, and Yichen Wei. Deformable convolutional networks. In Proceedings of the IEEE International Conference on Computer Vision, pp. 764–773, 2017.
191
+
192
+ Kaiwen Duan, Song Bai, Lingxi Xie, Honggang Qi, Qingming Huang, and Qi Tian. Centernet: Keypoint triplets for object detection. arXiv preprint arXiv:1904.08189, 2019.
193
+
194
+ Pedro F Felzenszwalb, Ross B Girshick, and David McAllester. Cascade object detection with deformable part models. In Computer vision and pattern recognition (CVPR), 2010 IEEE conference on, pp. 2241–2248. IEEE, 2010.
195
+
196
+ Cheng-Yang Fu, Wei Liu, Ananth Ranga, Ambrish Tyagi, and Alexander C Berg. Dssd: Deconvolutional single shot detector. arXiv preprint arXiv:1701.06659, 2017.
197
+
198
+ Spyros Gidaris and Nikos Komodakis. Object detection via a multi-region and semantic segmentation-aware cnn model. In Proceedings of the IEEE International Conference on Computer Vision, pp. 1134–1142, 2015.
199
+
200
+ Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016.
201
+
202
+ Kaiming He, Georgia Gkioxari, Piotr Dollar, and Ross Girshick. Mask r-cnn. In ´ Computer Vision (ICCV), 2017 IEEE International Conference on, pp. 2980–2988. IEEE, 2017.
203
+
204
+ Han Hu, Chengquan Zhang, Yuxuan Luo, Yuzhuo Wang, Junyu Han, and Errui Ding. Wordsup: Exploiting word annotations for character based text detection. In Proceedings of the IEEE International Conference on Computer Vision, pp. 4940–4949, 2017.
205
+
206
+ Han Hu, Jiayuan Gu, Zheng Zhang, Jifeng Dai, and Yichen Wei. Relation networks for object detection. In Computer Vision and Pattern Recognition (CVPR), volume 2, 2018.
207
+
208
+ Gao Huang, Zhuang Liu, Laurens Van Der Maaten, and Kilian Q Weinberger. Densely connected convolutional networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 4700–4708, 2017a.
209
+
210
+ Jonathan Huang, Vivek Rathod, Chen Sun, Menglong Zhu, Anoop Korattikara, Alireza Fathi, Ian Fischer, Zbigniew Wojna, Yang Song, Sergio Guadarrama, et al. Speed/accuracy trade-offs for modern convolutional object detectors. In IEEE CVPR, volume 4, 2017b.
211
+
212
+ Lichao Huang, Yi Yang, Yafeng Deng, and Yinan Yu. Densebox: Unifying landmark localization with end to end object detection. arXiv preprint arXiv:1509.04874, 2015.
213
+
214
+ Masayuki Iwasaki and H Inomata. Relation between superficial capillaries and foveal structures in the human retina. Investigative ophthalmology & visual science, 27(12):1698–1705, 1986.
215
+
216
+ Borui Jiang, Ruixuan Luo, Jiayuan Mao, Tete Xiao, and Yuning Jiang. Acquisition of localization confidence for accurate object detection. In Proceedings of the European Conference on Computer Vision, Munich, Germany, pp. 8–14, 2018.
217
+
218
+ Christoph H Lampert, Matthew B Blaschko, and Thomas Hofmann. Beyond sliding windows: Object localization by efficient subwindow search. In 2008 IEEE conference on computer vision and pattern recognition, pp. 1–8. IEEE, 2008.
219
+
220
+ Hei Law and Jia Deng. Cornernet: Detecting objects as paired keypoints. In Proceedings of the European Conference on Computer Vision (ECCV), volume 6, 2018.
221
+
222
+ Tsung-Yi Lin, Piotr Dollar, Ross B Girshick, Kaiming He, Bharath Hariharan, and Serge J Belongie. ´ Feature pyramid networks for object detection. In CVPR, volume 1, pp. 4, 2017.
223
+
224
+ Tsung-Yi Lin, Priyal Goyal, Ross Girshick, Kaiming He, and Piotr Dollar. Focal loss for dense ´ object detection. IEEE transactions on pattern analysis and machine intelligence, 2018.
225
+
226
+ Li Liu, Wanli Ouyang, Xiaogang Wang, Paul Fieguth, Jie Chen, Xinwang Liu, and Matti Pietikainen. ¨ Deep learning for generic object detection: A survey. arXiv preprint arXiv:1809.02165, 2018.
227
+
228
+ Wei Liu, Dragomir Anguelov, Dumitru Erhan, Christian Szegedy, Scott Reed, Cheng-Yang Fu, and Alexander C Berg. Ssd: Single shot multibox detector. In European conference on computer vision, pp. 21–37. Springer, 2016.
229
+
230
+ Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 3431–3440, 2015.
231
+
232
+ Alejandro Newell, Zhiao Huang, and Jia Deng. Associative embedding: End-to-end learning for joint detection and grouping. In Advances in Neural Information Processing Systems, pp. 2277– 2287, 2017.
233
+
234
+ Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in pytorch. 2017.
235
+
236
+ Joseph Redmon and Ali Farhadi. Yolo9000: better, faster, stronger. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 7263–7271, 2017.
237
+
238
+ Joseph Redmon and Ali Farhadi. Yolov3: An incremental improvement. arXiv preprint arXiv:1804.02767, 2018.
239
+
240
+ Joseph Redmon, Santosh Divvala, Ross Girshick, and Ali Farhadi. You only look once: Unified, real-time object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 779–788, 2016.
241
+
242
+ Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In Advances in neural information processing systems, pp. 91–99, 2015.
243
+
244
+ Abhinav Shrivastava, Rahul Sukthankar, Jitendra Malik, and Abhinav Gupta. Beyond skip connections: Top-down modulation for object detection. arXiv preprint arXiv:1612.06851, 2016.
245
+
246
+ Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014.
247
+
248
+ Zhi Tian, Chunhua Shen, Hao Chen, and Tong He. Fcos: Fully convolutional one-stage object detection. arXiv preprint arXiv:1904.01355, 2019.
249
+
250
+ Jiaqi Wang, Kai Chen, Shuo Yang, Chen Change Loy, and Dahua Lin. Region proposal by guided anchoring. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2965–2974, 2019.
251
+
252
+ Tong Yang, Xiangyu Zhang, Zeming Li, Wenqiang Zhang, and Jian Sun. Metaanchor: Learning to detect objects with customized anchors. In Advances in Neural Information Processing Systems, pp. 318–328, 2018.
253
+
254
+ Ze Yang, Shaohui Liu, Han Hu, Liwei Wang, and Stephen Lin. Reppoints: Point set representation for object detection. arXiv preprint arXiv:1904.11490, 2019.
255
+
256
+ Zheng Zhang, Chengquan Zhang, Wei Shen, Cong Yao, Wenyu Liu, and Xiang Bai. Multi-oriented text detection with fully convolutional networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 4159–4167, 2016.
257
+
258
+ Xingyi Zhou, Dequan Wang, and Philipp Krahenb ¨ uhl. Objects as points. ¨ arXiv preprint arXiv:1904.07850, 2019a.
259
+
260
+ Xingyi Zhou, Jiacheng Zhuo, and Philipp Krahenbuhl. Bottom-up object detection by grouping extreme and center points. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 850–859, 2019b.
261
+
262
+ Xinyu Zhou, Cong Yao, He Wen, Yuzhi Wang, Shuchang Zhou, Weiran He, and Jiajun Liang. East: an efficient and accurate scene text detector. In Proceedings of the IEEE conference on Computer Vision and Pattern Recognition, pp. 5551–5560, 2017.
263
+
264
+ # A APPENDIX
265
+
266
+ # A.1 QUALITATIVE RESULTS
267
+
268
+ Fig.5 shows the detection outputs of FoveaBox. Points and boxes with class probability larger than 0.5 are shown (before feeding into NMS). For each object, though there are several active points, the predicted boxes are very close to the ground-truth. These figures demonstrate that FoveaBox could directly generate accurate, robust box predictions, without the requirement of candidate anchors.
269
+
270
+ ![](images/daa123700845237aff0c1602e0f807a2721b2b0ae599350fe6ae893b0fa790be.jpg)
271
+ Figure 5: FoveaBox results on the COCO minival set. These results are based on ResNet-101, achieving a single model box AP of 38.6. For each pair, left is the detection results with bounding box, category, and confidence. Right is the score output map with their corresponding bounding boxes before feeding into non-maximum suppression (NMS). The score probability in each position is denoted by the color density.
272
+
273
+ # A.2 PER-CLASS DIFFERENCE:
274
+
275
+ Fig. 6 shows per-class AP difference of FoveaBox and RetinaNet. Both of them are with ResNet-50- FPN backbone and 800 input scale. The vertical axis shows $\mathbf { A P } _ { F o v e a B o x }$ -APRetinaNet. FoveaBox shows improvement in most of the classes.
276
+
277
+ ![](images/9d75c5fbf37f13dc1c4aa1335506f3078e85b21adfca94ba3a80c4050cb16a64.jpg)
278
+ Figure 6: AP difference of FoveaNet and RetinaNet on COCO dataset. Both models use ResNetFPN-50 as backbone and 800 input scales.
279
+
280
+ # A.3 MORE TRAINING TIME:
281
+
282
+ Table 5 shows the detection performance under $2 \mathbf { x }$ setting (24 epochs training). FoveaBox also outperforms the anchor-based baseline method.
283
+
284
+ Table $5 \colon 2 \mathrm { x }$ epochs training (800 scale).
285
+
286
+ <table><tr><td>method</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>RetinaNet-50</td><td>36.4</td><td>56.3</td><td>39.4</td></tr><tr><td>RetinaNet-101</td><td>38.1</td><td>57.8</td><td>41.1</td></tr><tr><td>FoveaBox-50</td><td>37.1</td><td>56.7</td><td>39.3</td></tr><tr><td>FoveaBox-101</td><td>38.7</td><td>58.4</td><td>41.1</td></tr></table>
287
+
288
+ # A.4 FEATURE ALIGNMENT
289
+
290
+ For feature alignment, we adopt a $3 \times 3$ deformable convolutional layer to implement the transformation, as shown in Fig.7. The offset input to the deformable convolutional layer is $( { \hat { t } } _ { x _ { 1 } } , { \hat { t } } _ { y _ { 1 } } , { \hat { t } } _ { x _ { 2 } } , { \hat { t } } _ { y _ { 2 } } )$ of the bbox output.
291
+
292
+ ![](images/7d0edf63e7fd123b34f67edf62dac10ba3ba1ed7dbc2ab6e42647f9f47a867a9.jpg)
293
+ Figure 7: Feature alignment process.
parse/train/HyxFF34FPr/HyxFF34FPr_content_list.json ADDED
@@ -0,0 +1,1564 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "FOVEABOX: BEYOUND ANCHOR-BASED OBJECT DETECTION ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 176,
8
+ 99,
9
+ 821,
10
+ 145
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Anonymous authors Paper under double-blind review ",
17
+ "bbox": [
18
+ 183,
19
+ 171,
20
+ 398,
21
+ 198
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "ABSTRACT ",
28
+ "text_level": 1,
29
+ "bbox": [
30
+ 454,
31
+ 236,
32
+ 544,
33
+ 251
34
+ ],
35
+ "page_idx": 0
36
+ },
37
+ {
38
+ "type": "text",
39
+ "text": "We present FoveaBox, an accurate, flexible, and completely anchor-free framework for object detection. While almost all state-of-the-art object detectors utilize predefined anchors to enumerate possible locations, scales and aspect ratios for the search of the objects, their performance and generalization ability are also limited to the design of anchors. Instead, FoveaBox directly learns the object existing possibility and the bounding box coordinates without anchor reference. This is achieved by: (a) predicting category-sensitive semantic maps for the object existing possibility, and (b) producing category-agnostic bounding box for each position that potentially contains an object. The scales of target boxes are naturally associated with feature pyramid representations. We demonstrate its effectiveness on standard benchmarks and report extensive experimental analysis. Without bells and whistles, FoveaBox achieves state-of-the-art single model performance on the standard COCO detection benchmark. More importantly, FoveaBox avoids all computation and hyper-parameters related to anchor boxes, which are often sensitive to the final detection performance. We believe the simple and effective approach will serve as a solid baseline and help ease future research for object detection. ",
40
+ "bbox": [
41
+ 233,
42
+ 268,
43
+ 764,
44
+ 505
45
+ ],
46
+ "page_idx": 0
47
+ },
48
+ {
49
+ "type": "text",
50
+ "text": "1 INTRODUCTION ",
51
+ "text_level": 1,
52
+ "bbox": [
53
+ 176,
54
+ 539,
55
+ 336,
56
+ 555
57
+ ],
58
+ "page_idx": 0
59
+ },
60
+ {
61
+ "type": "text",
62
+ "text": "Object detection requires the solution of two main tasks: recognition and localization. Given an arbitrary image, an object detection system needs to determine whether there are any instances of semantic objects from predefined categories and, if present, to return the spatial location and extent. To add the localization functionality to generic object detection systems, sliding window approaches have been the method of choice for many years (Lampert et al., 2008; Felzenszwalb et al., 2010; Liu et al., 2018). ",
63
+ "bbox": [
64
+ 174,
65
+ 574,
66
+ 825,
67
+ 656
68
+ ],
69
+ "page_idx": 0
70
+ },
71
+ {
72
+ "type": "text",
73
+ "text": "Recently, deep learning techniques have emerged as powerful methods for learning feature representations automatically from data (Simonyan & Zisserman, 2014; He et al., 2016; Huang et al., 2017a). For object detection, the anchor-based Region Proposal Networks (Ren et al., 2015) are widely used to serve as a common component for searching possible regions of interest for modern object detection frameworks (Liu et al., 2016; He et al., 2017; Lin et al., 2018). In short, anchor method suggests dividing the box space into discrete bins and refining the object box in the corresponding bin. Most state-of-the-art detectors rely on anchors to enumerate the possible locations, scales, and aspect ratios for target objects (Liu et al., 2018). Anchors are regression references and classification candidates to predict proposals for two-stage detectors or final bounding boxes for single-stage detectors. Nevertheless, anchors can be regarded as a feature-sharing sliding window scheme to cover the possible locations of objects. ",
74
+ "bbox": [
75
+ 174,
76
+ 664,
77
+ 825,
78
+ 816
79
+ ],
80
+ "page_idx": 0
81
+ },
82
+ {
83
+ "type": "image",
84
+ "img_path": "images/ee0090c10ecb98878b6e27f6bf8f893fea6ad40f1a694c27deeeb73a6acadbf6.jpg",
85
+ "image_caption": [
86
+ "Figure 1: The anchor-based object detection frameworks need to (a) design anchors according to the ground-truth box distributions; (b) match anchors with ground-truth boxes to generate training target (anchor classification and refinement); and (c) utilize the target generated by (b) for training. "
87
+ ],
88
+ "image_footnote": [],
89
+ "bbox": [
90
+ 236,
91
+ 837,
92
+ 761,
93
+ 867
94
+ ],
95
+ "page_idx": 0
96
+ },
97
+ {
98
+ "type": "text",
99
+ "text": "However, anchors must be carefully designed and used in object detection frameworks. (a) One of the most important factors in designing anchors is how densely it covers the instance location space. To achieve a good recall rate, anchors are carefully designed based on the statistics computed from the training/validation set (Lin et al., 2018). (b) One design choice based on a particular dataset is not always applicable to other applications, which harms the generality (Yang et al., 2018). (c) At training phase, anchor-methods rely on the intersection-over-union (IoU) to define the positive/negative samples, which introduces additional computation and hyper-parameters for an object detection system (Wang et al., 2019). ",
100
+ "bbox": [
101
+ 173,
102
+ 103,
103
+ 825,
104
+ 215
105
+ ],
106
+ "page_idx": 1
107
+ },
108
+ {
109
+ "type": "text",
110
+ "text": "In contrast, our human vision system can recognize the instance in space and predict the boundary given the visual cortex map, without any pre-defined shape template (Bear et al., 2007). In other words, we human naturally recognize the object in the visual scene without enumerating the candidate boxes. Inspired by this, an intuitive question to ask is, is the anchor scheme the optimal way to guide the search of objects? And further, could we design an accurate object detection framework without anchors or candidate boxes? Without anchors, one may expect a complex method is required to achieve comparable performance. However, we show that a surprisingly simple and flexible system can match, even surpass the prior state-of-the-art object detection results without any requirement of candidate boxes. ",
111
+ "bbox": [
112
+ 173,
113
+ 222,
114
+ 825,
115
+ 347
116
+ ],
117
+ "page_idx": 1
118
+ },
119
+ {
120
+ "type": "image",
121
+ "img_path": "images/8bc10160a13d4b5beae54d063f3736f43c31f1b08a0bcf27e4fd650d2e4b7115.jpg",
122
+ "image_caption": [
123
+ "Figure 2: FoveaBox object detector. For each output spacial position that potentially presents an object, FoveaBox directly predicts the confidences for all target categories and the bounding box. "
124
+ ],
125
+ "image_footnote": [],
126
+ "bbox": [
127
+ 183,
128
+ 378,
129
+ 800,
130
+ 477
131
+ ],
132
+ "page_idx": 1
133
+ },
134
+ {
135
+ "type": "text",
136
+ "text": "To this end, we present FoveaBox, a completely anchor-free framework for object detection. FoveaBox is motivated from the fovea of human eyes: the center of the vision field is with the highest visual acuity (Fig.2 left), which is necessary for activities where visual detail is of primary importance (Iwasaki & Inomata, 1986). FoveaBox jointly predicts the locations where the object’s center area is likely to exist as well as the bounding box at each valid location. ",
137
+ "bbox": [
138
+ 174,
139
+ 542,
140
+ 823,
141
+ 613
142
+ ],
143
+ "page_idx": 1
144
+ },
145
+ {
146
+ "type": "text",
147
+ "text": "In FoveaBox, each target object is predicted by category scores at center area, associated with 4-d bounding box, as shown in Fig.2 right. At training phase, we do not need to utilize anchors, or IoU matching to generate training target. Instead, the training target is directly generated by ground-truth boxes. ",
148
+ "bbox": [
149
+ 174,
150
+ 619,
151
+ 825,
152
+ 675
153
+ ],
154
+ "page_idx": 1
155
+ },
156
+ {
157
+ "type": "text",
158
+ "text": "To demonstrate the effectiveness of the proposed detection scheme, we combine the recent progress of feature pyramid networks and our detection head to form the framework of FoveaBox. Without bells and whistles, FoveaBox gets state-of-the-art single-model results on the COCO object detection task. Compared with the anchor-based RetinaNet, FoveaBox gets 2.2 AP gains, which also surpasses most of previously published anchor based single-model results. We believe the simple training/inference manner of FoveaBox, together with the flexibility and accuracy, will benefit future research on object detection and relevant topics. ",
159
+ "bbox": [
160
+ 174,
161
+ 683,
162
+ 825,
163
+ 780
164
+ ],
165
+ "page_idx": 1
166
+ },
167
+ {
168
+ "type": "text",
169
+ "text": "2 FOVEABOX ",
170
+ "text_level": 1,
171
+ "bbox": [
172
+ 174,
173
+ 814,
174
+ 302,
175
+ 830
176
+ ],
177
+ "page_idx": 1
178
+ },
179
+ {
180
+ "type": "text",
181
+ "text": "FoveaBox is conceptually simple: It contains a backbone network and a fovea head network. The backbone is responsible for computing a convolutional feature map over an entire input image and is an off-the-shelf convolutional network. The fovea head is composed of two sub-branches, the first branch performs per pixel classification on the backbone’s output; the second branch performs box prediction for each position that potentially covered by an object. ",
182
+ "bbox": [
183
+ 174,
184
+ 853,
185
+ 823,
186
+ 924
187
+ ],
188
+ "page_idx": 1
189
+ },
190
+ {
191
+ "type": "text",
192
+ "text": "2.1 REVIEW OF FPN AND ANCHORS: ",
193
+ "text_level": 1,
194
+ "bbox": [
195
+ 176,
196
+ 103,
197
+ 446,
198
+ 117
199
+ ],
200
+ "page_idx": 2
201
+ },
202
+ {
203
+ "type": "text",
204
+ "text": "We begin by briefly reviewing the Feature Pyramid Network (FPN) used for object detection (Lin et al., 2017). In general, FPN uses a top-down architecture with lateral connections to build an in-network feature pyramid from a single-scale input. FPN is independent of a specific task. For object detection, each level of the pyramid in FPN is used for detecting objects at a specific scale. On each feature pyramid, anchor-based methods uniformly place $A$ anchors on each of the $H \\times W$ spacial position. After computing the IoU overlap between all anchors and the ground-truth boxes, the anchor-based methods can define training targets. Finally, the pyramid features are utilized to optimize the targets. ",
205
+ "bbox": [
206
+ 173,
207
+ 131,
208
+ 825,
209
+ 242
210
+ ],
211
+ "page_idx": 2
212
+ },
213
+ {
214
+ "type": "image",
215
+ "img_path": "images/dfe718192bcb34f1770531c855ee5fe6c07a0cef4ffd8a59e987bfc67478e369.jpg",
216
+ "image_caption": [
217
+ "Figure 3: Anchor-based object detection v.s. FoveaBox object detection. left: The anchor-based method uniformly places $A$ ( $A = 3$ in this example) anchors on each output spacial position, and utilizes IoU to define the positive/negative anchors; right: FoveaBox directly define positive/negative samples for each output spacial position by ground-truth boxes, and predicts the box boundaries from the corresponding position. "
218
+ ],
219
+ "image_footnote": [],
220
+ "bbox": [
221
+ 254,
222
+ 258,
223
+ 741,
224
+ 409
225
+ ],
226
+ "page_idx": 2
227
+ },
228
+ {
229
+ "type": "text",
230
+ "text": "2.2 FOVEABOX ",
231
+ "text_level": 1,
232
+ "bbox": [
233
+ 174,
234
+ 522,
235
+ 295,
236
+ 536
237
+ ],
238
+ "page_idx": 2
239
+ },
240
+ {
241
+ "type": "text",
242
+ "text": "FoveaBox directly predicts the object existing possibility and the corresponding boundary for each position potential contained by an instance. In this section, we introduce the key components stepby-step. ",
243
+ "bbox": [
244
+ 173,
245
+ 549,
246
+ 825,
247
+ 592
248
+ ],
249
+ "page_idx": 2
250
+ },
251
+ {
252
+ "type": "text",
253
+ "text": "2.2.1 OBJECT OCCURRENCE POSSIBILITY",
254
+ "text_level": 1,
255
+ "bbox": [
256
+ 174,
257
+ 609,
258
+ 477,
259
+ 626
260
+ ],
261
+ "page_idx": 2
262
+ },
263
+ {
264
+ "type": "text",
265
+ "text": "Given a valid ground-truth box denoted as $( x _ { 1 } , y _ { 1 } , x _ { 2 } , y _ { 2 } )$ . We first map the box into the target feature pyramid $P _ { l }$ ",
266
+ "bbox": [
267
+ 174,
268
+ 636,
269
+ 825,
270
+ 665
271
+ ],
272
+ "page_idx": 2
273
+ },
274
+ {
275
+ "type": "equation",
276
+ "img_path": "images/7ebf4c68a8b5ee3bfb72961570bc9e7549665659c202895100017fe3e39e2d3f.jpg",
277
+ "text": "$$\n\\begin{array} { c } { { x _ { 1 } ^ { ' } = \\frac { x _ { 1 } } { s _ { l } } , y _ { 1 } ^ { ' } = \\frac { y _ { 1 } } { s _ { l } } , x _ { 2 } ^ { ' } = \\frac { x _ { 2 } } { s _ { l } } , y _ { 2 } ^ { ' } = \\frac { y _ { 2 } } { s _ { l } } , } } \\\\ { { { } } } \\\\ { { c _ { x } ^ { ' } = 0 . 5 ( x _ { 2 } ^ { ' } + x _ { 1 } ^ { ' } ) , c _ { y } ^ { ' } = 0 . 5 ( y _ { 2 } ^ { ' } + y _ { 1 } ^ { ' } ) , w ^ { ' } = x _ { 2 } ^ { ' } - x _ { 1 } ^ { ' } , h ^ { ' } = y _ { 2 } ^ { ' } - y _ { 1 } ^ { ' } , } } \\end{array}\n$$",
278
+ "text_format": "latex",
279
+ "bbox": [
280
+ 264,
281
+ 672,
282
+ 732,
283
+ 728
284
+ ],
285
+ "page_idx": 2
286
+ },
287
+ {
288
+ "type": "text",
289
+ "text": "where $s _ { l }$ is the down-sample factor. The positive area $R ^ { p o s }$ on the score map is designed to be roughly a shrunk version of the original one (Fig.3 right): ",
290
+ "bbox": [
291
+ 174,
292
+ 734,
293
+ 825,
294
+ 763
295
+ ],
296
+ "page_idx": 2
297
+ },
298
+ {
299
+ "type": "equation",
300
+ "img_path": "images/67d428eb0fdb6dc2f4aa6384586680d763d3eaad349141bf5be83f752fa8b3e5.jpg",
301
+ "text": "$$\n\\begin{array} { r } { x _ { 1 } ^ { p o s } = c _ { x } ^ { ' } - 0 . 5 \\sigma w ^ { ' } , y _ { 1 } ^ { p o s } = c _ { y } ^ { ' } - 0 . 5 \\sigma h ^ { ' } , } \\\\ { x _ { 2 } ^ { p o s } = c _ { x } ^ { ' } + 0 . 5 \\sigma w ^ { ' } , y _ { 2 } ^ { p o s } = c _ { y } ^ { ' } + 0 . 5 \\sigma h ^ { ' } , } \\end{array}\n$$",
302
+ "text_format": "latex",
303
+ "bbox": [
304
+ 356,
305
+ 771,
306
+ 642,
307
+ 819
308
+ ],
309
+ "page_idx": 2
310
+ },
311
+ {
312
+ "type": "text",
313
+ "text": "where $\\sigma$ is the shrunk factor. At training phase, each cell inside the positive area is annotated with the corresponding target class label. The negative area is the whole feature map excluding area in $R ^ { p o s }$ . For predicting, each output set of pyramidal heat-map has $C$ channels, where $C$ is the number of categories, and is of size $H \\times W$ . Each channel is a binary mask indicating the possibility for a class, like FCNs in semantic segmentation (Long et al., 2015). The positive area usually accounts for a small portion of the whole feature map, so we adopt Focal Loss (Lin et al., 2018) to train this branch. ",
314
+ "bbox": [
315
+ 173,
316
+ 825,
317
+ 825,
318
+ 924
319
+ ],
320
+ "page_idx": 2
321
+ },
322
+ {
323
+ "type": "text",
324
+ "text": "2.2.2 SCALE ASSIGNMENT ",
325
+ "text_level": 1,
326
+ "bbox": [
327
+ 174,
328
+ 103,
329
+ 375,
330
+ 117
331
+ ],
332
+ "page_idx": 3
333
+ },
334
+ {
335
+ "type": "text",
336
+ "text": "While our goal is to predict the boundary of the target objects, directly predicting these numbers is not stable, due to the large scale variations of the objects. Instead, we divide the scales of objects into several bins, according to the number of feature pyramidal levels. Each pyramid has a basic scale $r _ { l }$ ranging from 32 to 512 on pyramid levels $P _ { 3 }$ to $P _ { 7 }$ , respectively. The valid scale range of the target boxes for pyramid level $l$ is computed as ",
337
+ "bbox": [
338
+ 173,
339
+ 127,
340
+ 825,
341
+ 199
342
+ ],
343
+ "page_idx": 3
344
+ },
345
+ {
346
+ "type": "equation",
347
+ "img_path": "images/273cf265c0c9bca815459f17984b01507b2a37ce49c804f81a57ff6bfb71e8c2.jpg",
348
+ "text": "$$\n[ r _ { l } / \\eta , r _ { l } \\cdot \\eta ] ,\n$$",
349
+ "text_format": "latex",
350
+ "bbox": [
351
+ 455,
352
+ 208,
353
+ 540,
354
+ 226
355
+ ],
356
+ "page_idx": 3
357
+ },
358
+ {
359
+ "type": "text",
360
+ "text": "where $\\eta$ is set empirically to control the scale range for each pyramid. Target objects not in the corresponding scale range are ignored during training. Note that an object may be detected by multiple pyramids of the networks, which is different from previous practice that maps objects to only one feature pyramid (He et al., 2017). ",
361
+ "bbox": [
362
+ 174,
363
+ 233,
364
+ 825,
365
+ 290
366
+ ],
367
+ "page_idx": 3
368
+ },
369
+ {
370
+ "type": "text",
371
+ "text": "2.2.3 BOX PREDICTION ",
372
+ "text_level": 1,
373
+ "bbox": [
374
+ 174,
375
+ 306,
376
+ 352,
377
+ 321
378
+ ],
379
+ "page_idx": 3
380
+ },
381
+ {
382
+ "type": "text",
383
+ "text": "Each ground-truth bounding box is specified in the way $G \\ : = \\ : ( x _ { 1 } , y _ { 1 } , x _ { 2 } , y _ { 2 } )$ . Starting from a positive point $( x , y )$ in $R ^ { p o s }$ , FoveaBox directly computes the normalized offset between $( x , y )$ and four boundaries: ",
384
+ "bbox": [
385
+ 176,
386
+ 332,
387
+ 823,
388
+ 375
389
+ ],
390
+ "page_idx": 3
391
+ },
392
+ {
393
+ "type": "equation",
394
+ "img_path": "images/7ea84541e51ed9d6021015c7df1c20600c4f6b2b0d334d52a02f9a138b4228cb.jpg",
395
+ "text": "$$\n\\begin{array} { l l } { { t _ { x } } _ { 1 } = \\log \\frac { s _ { l } ( x + 0 . 5 ) - x _ { 1 } } { r _ { l } } , t _ { y _ { 1 } } = \\log \\frac { s _ { l } ( y + 0 . 5 ) - y _ { 1 } } { r _ { l } } , } \\\\ { { t _ { x } } _ { 2 } = \\log \\frac { x _ { 2 } - s _ { l } ( x + 0 . 5 ) } { r _ { l } } , t _ { y _ { 2 } } = \\log \\frac { y _ { 2 } - s _ { l } ( y + 0 . 5 ) } { r _ { l } } . } \\end{array}\n$$",
396
+ "text_format": "latex",
397
+ "bbox": [
398
+ 305,
399
+ 380,
400
+ 691,
401
+ 449
402
+ ],
403
+ "page_idx": 3
404
+ },
405
+ {
406
+ "type": "text",
407
+ "text": "This function first maps the coordinate $( x , y )$ to the input image, then computes the normalized offset between the projected coordinate and $G$ . Finally the targets are regularized with the log-space function. $r _ { l }$ is the basic scale defined in section 2.2.2. ",
408
+ "bbox": [
409
+ 176,
410
+ 455,
411
+ 820,
412
+ 498
413
+ ],
414
+ "page_idx": 3
415
+ },
416
+ {
417
+ "type": "text",
418
+ "text": "For simplicity, we adopt the widely used Smooth $L _ { 1 }$ loss (Ren et al., 2015) to train the box prediction $L _ { b o x }$ . After targets being optimized, we can generate the box boundary for each cell $( x , y )$ on the output feature maps1. In box branch, each output set of pyramidal heatmap has 4 channels, for jointly prediction of $( t _ { x _ { 1 } } , t _ { y _ { 1 } } , t _ { x _ { 2 } } , t _ { y _ { 2 } } )$ . ",
419
+ "bbox": [
420
+ 173,
421
+ 503,
422
+ 825,
423
+ 563
424
+ ],
425
+ "page_idx": 3
426
+ },
427
+ {
428
+ "type": "text",
429
+ "text": "2.2.4 NETWORK ARCHITECTURE ",
430
+ "text_level": 1,
431
+ "bbox": [
432
+ 176,
433
+ 578,
434
+ 416,
435
+ 593
436
+ ],
437
+ "page_idx": 3
438
+ },
439
+ {
440
+ "type": "text",
441
+ "text": "To demonstrate the generality of our approach, we instantiate FoveaBox with multiple architectures. For clarity, we differentiate between: (i) the convolutional backbone architecture used for feature extraction over an entire image, and (ii) the network head for computing the final results. ",
442
+ "bbox": [
443
+ 173,
444
+ 603,
445
+ 825,
446
+ 646
447
+ ],
448
+ "page_idx": 3
449
+ },
450
+ {
451
+ "type": "image",
452
+ "img_path": "images/862b43123997d3662af060569300731534469cd4e3d82efd5890e75b12ee4bee.jpg",
453
+ "image_caption": [
454
+ "Figure 4: On each FPN feature level, FoveaBox attaches two subnetworks, one for classifying the corresponding cells and one for predict the $( x _ { 1 } , y _ { 1 } , x _ { 2 } , y _ { 2 } )$ of ground-truth object box. Right is the score output map with their corresponding predicted boxes before feeding into non-maximum suppression (NMS). The score probability in each position is denoted by the color density. More examples are shown in Fig.5. "
455
+ ],
456
+ "image_footnote": [],
457
+ "bbox": [
458
+ 250,
459
+ 659,
460
+ 745,
461
+ 806
462
+ ],
463
+ "page_idx": 3
464
+ },
465
+ {
466
+ "type": "text",
467
+ "text": "Most of the experiments are based on the head architecture as shown in Fig.4. We also utilize different head variants to further study the generality. More complex designs have the potential to improve performance but are not the focus of this work. ",
468
+ "bbox": [
469
+ 174,
470
+ 103,
471
+ 823,
472
+ 145
473
+ ],
474
+ "page_idx": 4
475
+ },
476
+ {
477
+ "type": "text",
478
+ "text": "2.2.5 IMPLEMENTATIONS ",
479
+ "text_level": 1,
480
+ "bbox": [
481
+ 176,
482
+ 161,
483
+ 362,
484
+ 176
485
+ ],
486
+ "page_idx": 4
487
+ },
488
+ {
489
+ "type": "text",
490
+ "text": "We adopt the widely used FPN networks for fair comparison. Concretely, we construct a pyramid with levels $\\{ P _ { l } \\} , l \\ = \\ 3 , 4 , \\cdots , 7$ , where $l$ indicates pyramid level. $P _ { l }$ has $1 / 2 ^ { l }$ resolution of the input. All pyramid levels have $C = 2 5 6$ channels. Fovea head is attached on each pyramid level. Parameters are shared across all pyramid levels. ",
491
+ "bbox": [
492
+ 174,
493
+ 185,
494
+ 825,
495
+ 242
496
+ ],
497
+ "page_idx": 4
498
+ },
499
+ {
500
+ "type": "text",
501
+ "text": "FoveaBox is trained with stochastic gradient descent (SGD). We use synchronized SGD over 4 GPUs with a total of 16 images per minibatch (4 images per GPU). Unless otherwise specified, all models are trained for 12 epochs with an initial learning rate of 0.01, which is then divided by 10 at 8th and again at 11th epochs. Weight decay of 0.0001 and momentum of 0.9 are used. Only standard horizontal image flipping is used for data augmentation. During inference, we first use a confidence threshold of 0.05 to filter out predictions with low confidence. Then, we select the top 1000 scoring boxes from each prediction layer. Next, NMS with threshold 0.5 is applied for each class separately. Finally, the top-100 scoring predictions are selected for each image. Although there are more intelligent ways to perform post-processing, such as bbox voting (Gidaris & Komodakis, 2015), Soft-NMS (Bodla et al., 2017) or test-time image augmentations, in order to keep simplicity and to fairly compare against the baseline models, we do not use those tricks here. ",
502
+ "bbox": [
503
+ 174,
504
+ 248,
505
+ 825,
506
+ 401
507
+ ],
508
+ "page_idx": 4
509
+ },
510
+ {
511
+ "type": "text",
512
+ "text": "3 EXPERIMENTS ",
513
+ "text_level": 1,
514
+ "bbox": [
515
+ 176,
516
+ 422,
517
+ 326,
518
+ 439
519
+ ],
520
+ "page_idx": 4
521
+ },
522
+ {
523
+ "type": "text",
524
+ "text": "We present experimental results on the bounding box detection track of the MS COCO benchmark. All models are trained on MS COCO trainval35k. If not specified, ResNet-50-FPN backbone and a 600 pixel train and test image scale are used to do the ablation study. We report lesion and sensitivity studies by evaluating on the minival split. For our main results, we report COCO AP on the test-dev split, which has no public labels and requires use of the evaluation server. ",
525
+ "bbox": [
526
+ 174,
527
+ 454,
528
+ 825,
529
+ 525
530
+ ],
531
+ "page_idx": 4
532
+ },
533
+ {
534
+ "type": "text",
535
+ "text": "3.1 ABLATION STUDY ",
536
+ "text_level": 1,
537
+ "bbox": [
538
+ 176,
539
+ 542,
540
+ 341,
541
+ 556
542
+ ],
543
+ "page_idx": 4
544
+ },
545
+ {
546
+ "type": "text",
547
+ "text": "Various anchor densities and FoveaBox: One of the most important design factors in an anchorbased detection system is how densely it covers the space of possible objects. As anchor-based detectors use a fixed sampling grid, a popular approach for achieving high coverage of boxes is to use multiple anchors at each spatial position. One may expect that we can always get better performance when attaching denser anchors on each position. To verify this assumption, we sweep over the number of scale and aspect ratio anchors used at each spatial position and each pyramid level in RetinaNet, including a single square anchor at each location to 12 anchors per location (Table.1(a)). Increasing beyond 6-9 anchors does not show further gains. The saturation of performance w.r.t. density implies the handcrafted, over-density anchors do not offer an advantage. ",
548
+ "bbox": [
549
+ 174,
550
+ 568,
551
+ 825,
552
+ 694
553
+ ],
554
+ "page_idx": 4
555
+ },
556
+ {
557
+ "type": "text",
558
+ "text": "Over-density anchors not only increase the foreground-background optimization difficulty, but also likely to cause the ambiguous position definition problem. For each output spatial location, there are $A$ anchors whose labels are defined by the IoU with the ground-truth. Among them, some of the anchors are defined as positive samples, while others are negatives. However they are sharing the same input features. The classifier needs to not only distinguish the samples from different positions, but also different anchors at the same position. ",
559
+ "bbox": [
560
+ 174,
561
+ 700,
562
+ 823,
563
+ 784
564
+ ],
565
+ "page_idx": 4
566
+ },
567
+ {
568
+ "type": "text",
569
+ "text": "In contrast, FoveaBox explicitly predicts one target at each position and gets no worse performance than the best anchor-based model. Compare with the anchor based scheme, FoveaBox enjoys several advantages. (a) Since we only predict one target at each position, the output space has been reduced to $1 / A$ of the anchor-based method. (b) There is no ambiguous problem and the optimization target is more straightforward. (c) FoveaBox has fewer hyper-parameters, and is more flexible, since we do not need to extensively design anchors to see a relatively better choice. ",
570
+ "bbox": [
571
+ 174,
572
+ 791,
573
+ 825,
574
+ 875
575
+ ],
576
+ "page_idx": 4
577
+ },
578
+ {
579
+ "type": "text",
580
+ "text": "FoveaBox is more robust to box distribution: One of the major benefits of FoveaBox is the robust prediction of bounding boxes. To verify this, we divide the boxes in the validation set into three groups according to the ground-truth aspect ratios $\\begin{array} { r } { u = \\operatorname* { m a x } ( \\frac { h } { w } , \\frac { w } { h } ) } \\end{array}$ . We compare FoveaBox and ",
581
+ "bbox": [
582
+ 176,
583
+ 882,
584
+ 823,
585
+ 925
586
+ ],
587
+ "page_idx": 4
588
+ },
589
+ {
590
+ "type": "text",
591
+ "text": "Table 1: Ablation experiments for FoveaBox. All models are trained on trainval35k, test on minival. If not specified, default values are $\\eta = 2 . 0$ and $\\sigma = 0 . 4$ . (a) Our anchor-free FoveaBox get $0 . 9 \\mathrm { \\ A P }$ gains compared with the best model of anchor-based RetinaNet; (b) FoveaBox is more robust to bounding box distributions; (c) FoveaBox could also generate high-quality region proposals; (d) Accuracy of FoveaBox for various network depths and image scales; (e) and (f): FoveaBox gets best performance with $\\eta = 2 . 0$ and $\\sigma = 0 . 4$ . See Section 3.1 for details. ",
592
+ "bbox": [
593
+ 173,
594
+ 112,
595
+ 825,
596
+ 195
597
+ ],
598
+ "page_idx": 5
599
+ },
600
+ {
601
+ "type": "table",
602
+ "img_path": "images/0c7597d7090d477001c173bda208e1b3eb08672a06c91ca2cf658b4d40794144.jpg",
603
+ "table_caption": [
604
+ "(a) Varying anchor density and FoveaBox. "
605
+ ],
606
+ "table_footnote": [],
607
+ "table_body": "<table><tr><td>method</td><td>#sc</td><td>#ar</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>RetinaNet</td><td>1</td><td>1</td><td>30.2</td><td>49.0</td><td>31.7</td></tr><tr><td>RetinaNet</td><td>2</td><td></td><td>31.9</td><td>50.0</td><td>34.1</td></tr><tr><td>RetinaNet</td><td>3</td><td></td><td>31.9</td><td>49.4</td><td>33.8</td></tr><tr><td>RetinaNet</td><td>2</td><td>113</td><td>34.2</td><td>53.1</td><td>36.5</td></tr><tr><td>RetinaNet</td><td>3</td><td>33</td><td>34.2</td><td>53.2</td><td>36.9</td></tr><tr><td>RetinaNet</td><td>4</td><td></td><td>33.9</td><td>52.1</td><td>36.2</td></tr><tr><td>FoveaBox</td><td>-</td><td>-</td><td>35.1</td><td>54.3</td><td>37.1</td></tr></table>",
608
+ "bbox": [
609
+ 199,
610
+ 219,
611
+ 478,
612
+ 321
613
+ ],
614
+ "page_idx": 5
615
+ },
616
+ {
617
+ "type": "table",
618
+ "img_path": "images/9ba1f5c7952a0d18aedc1bf41fc92be0d9cd9d63875d9300fe6ad6ddfda91c3d.jpg",
619
+ "table_caption": [
620
+ "(b) Detection with different aspect ratios "
621
+ ],
622
+ "table_footnote": [],
623
+ "table_body": "<table><tr><td>method</td><td>AP</td><td>APu&lt;3</td><td>AP3≤u&lt;5</td><td>APu&gt;5</td></tr><tr><td>RetinaNet</td><td>34.2</td><td>36.5</td><td>24.5</td><td>10.2</td></tr><tr><td>FoveaBox</td><td>35.1</td><td>36.8</td><td>26.8</td><td>16.4</td></tr></table>",
624
+ "bbox": [
625
+ 514,
626
+ 214,
627
+ 815,
628
+ 257
629
+ ],
630
+ "page_idx": 5
631
+ },
632
+ {
633
+ "type": "table",
634
+ "img_path": "images/3b28dbf72cf972ae345f4a12eed9f3a8a579d7dff6a1d51b3a1629c1c0e4f1e8.jpg",
635
+ "table_caption": [
636
+ "(c) Region proposal performance. "
637
+ ],
638
+ "table_footnote": [],
639
+ "table_body": "<table><tr><td>method</td><td>backbone</td><td>AR100</td><td>AR300</td><td>AR1000</td></tr><tr><td>RPN</td><td>ResNet-50</td><td>44.5</td><td>51.1</td><td>56.6</td></tr><tr><td>FoveaBox</td><td>ResNet-50</td><td>52.9</td><td>57.3</td><td>61.5</td></tr></table>",
640
+ "bbox": [
641
+ 508,
642
+ 281,
643
+ 823,
644
+ 323
645
+ ],
646
+ "page_idx": 5
647
+ },
648
+ {
649
+ "type": "table",
650
+ "img_path": "images/83ce28fe93cfe2d18ba777fb5a4c14792b5e7fe109119a6f8665f4280aef945a.jpg",
651
+ "table_caption": [
652
+ "(d) Different input resolutions and models. ",
653
+ "(e) Varying η $( \\sigma = 0 . 4 )$ . (f) Varying σ $( \\eta = 2 . 0 )$ ). "
654
+ ],
655
+ "table_footnote": [],
656
+ "table_body": "<table><tr><td>net-depth-scale</td><td>AP</td><td>AP50</td><td>AP75</td><td>m</td><td>AP</td><td>AP50</td><td>AP75</td><td>0</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>FoveaBox-50-400</td><td>31.9+1.4</td><td>49.6</td><td>33.8</td><td>1.0</td><td>32.0</td><td>50.4</td><td>31.8</td><td>0.2</td><td>34.1</td><td>53.2</td><td>36.0</td></tr><tr><td>FoveaBox-50-600</td><td>35.1+0.9</td><td>54.3</td><td>37.1</td><td>1.5</td><td>34.1</td><td>53.3</td><td>36.0</td><td>0.3</td><td>34.8</td><td>54.0</td><td>36.7</td></tr><tr><td>FoveaBox-50-800</td><td>36.4+0.9</td><td>56.2</td><td>38.7</td><td>2.0</td><td>35.1</td><td>54.4</td><td>37.0</td><td>0.4</td><td>35.1</td><td>54.4</td><td>37.0</td></tr><tr><td>FoveaBox-101-400</td><td>33.3+1.4</td><td>51.0</td><td>35.0</td><td>2.5</td><td>35.0</td><td>54.2</td><td>36.8</td><td>0.5</td><td>34.8</td><td>53.9</td><td>36.6</td></tr><tr><td>FoveaBox-101-600</td><td>37.0+1.0</td><td>56.4</td><td>39.3</td><td>3.0</td><td>34.3</td><td>53.3</td><td>36.5</td><td>0.6</td><td>34.1</td><td>53.1</td><td>36.0</td></tr><tr><td>FoveaBox-101-800</td><td>38.6+0.9</td><td>58.0</td><td>41.2</td><td>4.0</td><td>32.8</td><td>51.0</td><td>34.5</td><td>0.7</td><td>33.3</td><td>52.5</td><td>34.9</td></tr></table>",
657
+ "bbox": [
658
+ 178,
659
+ 353,
660
+ 816,
661
+ 444
662
+ ],
663
+ "page_idx": 5
664
+ },
665
+ {
666
+ "type": "text",
667
+ "text": "RetinaNet at different aspect ratio thresholds, as shown in Table 1(b). We see that both methods get best performance when $u$ is low. Although FoveaBox also suffers performance decrease when $u$ increases, it is much better than the baseline model. ",
668
+ "bbox": [
669
+ 174,
670
+ 472,
671
+ 825,
672
+ 513
673
+ ],
674
+ "page_idx": 5
675
+ },
676
+ {
677
+ "type": "text",
678
+ "text": "Generating high-quality region proposals: Changing the classification target to class-agnostic head is straightforward and could generate region proposals. We compare the proposal performance against FPN-based RPN (Lin et al., 2017) and evaluate average recalls (AR) with different numbers of proposals on minival set, as shown in Table 1(c). Surprisingly, our method outperforms the RPN baseline by a large margin, among all criteria. Specifically, with top 100 region proposals, FoveaBox gets 52.9 AR, outperforming RPN by 8.4 points. This validates that our model’s capacity in generating high quality region proposals. ",
679
+ "bbox": [
680
+ 173,
681
+ 520,
682
+ 825,
683
+ 619
684
+ ],
685
+ "page_idx": 5
686
+ },
687
+ {
688
+ "type": "text",
689
+ "text": "Across model depth and scale: Table 1(d) shows FoveaBox utilizing different backbone networks and input resolutions. The train/inference settings are exactly the same as the baseline method (Lin et al., 2018). Under the same settings, FoveaBox consistently gets $0 . 9 { \\sim } 1 . 4$ higher AP. When comparing the inference speed, we find that FoveaBox models are about $1 . 1 { \\sim } 1 . 3$ times faster than the RetinaNet counterparts. ",
690
+ "bbox": [
691
+ 174,
692
+ 625,
693
+ 825,
694
+ 694
695
+ ],
696
+ "page_idx": 5
697
+ },
698
+ {
699
+ "type": "text",
700
+ "text": "Analysis of $\\eta$ and $\\sigma$ : In Eq.(3), $\\eta$ controls the scale assignment extent for each pyramid. As $\\eta$ increases, each pyramid will response to more scales of objects. Table 1(e) shows the impact of $\\eta$ on the final detection performance. Another important hyper-parameter is the shrunk factor $\\sigma$ which controls the positive/negative samples. Table 1(f) shows the model performance with respect to $\\sigma$ changes. In this paper, $\\sigma = 0 . 4$ and $\\eta = 2$ are used in other experiments. ",
701
+ "bbox": [
702
+ 174,
703
+ 702,
704
+ 825,
705
+ 772
706
+ ],
707
+ "page_idx": 5
708
+ },
709
+ {
710
+ "type": "text",
711
+ "text": "IoU-based assignment v.s. fovea area: Another choice of defining the positive/negative samples is firstly gets the predicted box from the box branch, and then assign the target labels based on the IoU between the predicted boxes and ground-truth boxes. As shown in Table 2, the shrunk version gets better performance $( + 0 . 4$ AP) than the IoU-based assignment process. ",
712
+ "bbox": [
713
+ 174,
714
+ 779,
715
+ 823,
716
+ 835
717
+ ],
718
+ "page_idx": 5
719
+ },
720
+ {
721
+ "type": "text",
722
+ "text": "Better head and feature alignment: The most recent works (Chen et al., 2019; Yang et al., 2019) suggest to align the features in one-stage object detection frameworks with anchors. In FoveaBox, we adopt deformable convolution (Dai et al., 2017) based on the box offset learned by Eq.(4) to refine the classification branch2. FoveaBox works well when adding such techniques. Specifically, when we change the classification branch to a heavier head, together with feature alignment and GN, FoveaBox gets 40.1 AP using ResNet-50 as backbone! This experiment demonstrates the generality of our approach to the network design (Table 3). ",
723
+ "bbox": [
724
+ 174,
725
+ 842,
726
+ 823,
727
+ 897
728
+ ],
729
+ "page_idx": 5
730
+ },
731
+ {
732
+ "type": "table",
733
+ "img_path": "images/6d45abd1a9953b76d52fc03ad3cbf4b242fb209a0261fcf24184623f32083ff0.jpg",
734
+ "table_caption": [
735
+ "Table 2: Label assignment strategy (ResNet-50, 800 scale). "
736
+ ],
737
+ "table_footnote": [],
738
+ "table_body": "<table><tr><td>assign method</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>IoU (0.5/0.4) IoU (0.6/0.5)</td><td>35.6 35.9</td><td>54.7 54.7</td><td>37.7 38.4</td></tr><tr><td>IoU (0.5/0.5)</td><td>36.0</td><td>54.9</td><td>38.4</td></tr><tr><td>Fovea (σ = 0.4)</td><td>36.4</td><td>56.2</td><td>38.7</td></tr></table>",
739
+ "bbox": [
740
+ 354,
741
+ 130,
742
+ 640,
743
+ 207
744
+ ],
745
+ "page_idx": 6
746
+ },
747
+ {
748
+ "type": "text",
749
+ "text": "",
750
+ "bbox": [
751
+ 176,
752
+ 233,
753
+ 825,
754
+ 275
755
+ ],
756
+ "page_idx": 6
757
+ },
758
+ {
759
+ "type": "table",
760
+ "img_path": "images/46b8093bc1aa0d0c0afb7a29fe0cee96200502baf586d2c8e65b948dfca075bd.jpg",
761
+ "table_caption": [
762
+ "Table 3: Feature alignment and group normalization (ResNet-50, 800 scale). "
763
+ ],
764
+ "table_footnote": [],
765
+ "table_body": "<table><tr><td>cls branch</td><td>alignment</td><td>GN</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>256(3×3) -→256(3×3)-→256(3×3)-&gt;256(3×3)</td><td></td><td></td><td>36.4</td><td>56.2</td><td>38.7</td></tr><tr><td>256(3×3)→&gt;256(3×3)-&gt;256(3×3)-→256(3×3)</td><td>√</td><td></td><td>36.8</td><td>56.5</td><td>38.9</td></tr><tr><td>256(3×3)-→256(3×3)-→256(3×3)-&gt;256(3×3)</td><td>√</td><td>一</td><td>37.1</td><td>56.7</td><td>39.2</td></tr><tr><td>1024(3×3)-→1024(1×1)</td><td></td><td></td><td>36.7</td><td>57.0</td><td>39.1</td></tr><tr><td>1024(3×3)-→&gt;1024(1×1)</td><td>√</td><td></td><td>37.2</td><td>57.4</td><td>39.4</td></tr><tr><td>1024(3×3) -→1024(1×1)</td><td></td><td></td><td>37.5</td><td>58.2</td><td>39.5</td></tr><tr><td>1024(3×3) -→1024(1×1),2× epochs</td><td></td><td></td><td>37.9</td><td>58.4</td><td>40.4</td></tr><tr><td>1024(3×3)-→&gt;1024(1×1),2× epochs,mstrain</td><td></td><td></td><td>40.1</td><td>60.8</td><td>42.5</td></tr></table>",
766
+ "bbox": [
767
+ 202,
768
+ 318,
769
+ 792,
770
+ 452
771
+ ],
772
+ "page_idx": 6
773
+ },
774
+ {
775
+ "type": "text",
776
+ "text": "3.2 MAIN RESULTS ",
777
+ "text_level": 1,
778
+ "bbox": [
779
+ 174,
780
+ 474,
781
+ 323,
782
+ 489
783
+ ],
784
+ "page_idx": 6
785
+ },
786
+ {
787
+ "type": "text",
788
+ "text": "We compare FoveaBox to the state-of-the-art methods in Table 4. All instantiations of our model outperform baseline variants of previous state-of-the-art models. The first group of detectors on Table 4 are two-stage detectors, the second group one-stage detectors, and the last group the FoveaBox detector. FoveaBox outperforms all single-stage detectors under ResNet-101 backbone, under all evaluation metrics. This includes the recent one-stage CornerNet and ExtremeNet (Law & Deng, 2018; Zhou et al., 2019b). FoveaBox also outperforms most of two-stage detectors, including FPN (Lin et al., 2017), Mask R-CNN (He et al., 2017) and IoU-Net (Jiang et al., 2018). ",
789
+ "bbox": [
790
+ 173,
791
+ 501,
792
+ 825,
793
+ 599
794
+ ],
795
+ "page_idx": 6
796
+ },
797
+ {
798
+ "type": "text",
799
+ "text": "Two-stage detectors rely on region-wise sub-networks to further classify the sparse region proposals. Since FoveaBox could also generate region proposals by changing the model head to class agnostic scheme (Table 1(c)), we believe it could further improve the performance of two-stage detectors, which beyond the focus of this paper. ",
800
+ "bbox": [
801
+ 174,
802
+ 606,
803
+ 825,
804
+ 661
805
+ ],
806
+ "page_idx": 6
807
+ },
808
+ {
809
+ "type": "text",
810
+ "text": "4 IN CONTEXT OF RELATED WORK ",
811
+ "text_level": 1,
812
+ "bbox": [
813
+ 176,
814
+ 683,
815
+ 478,
816
+ 698
817
+ ],
818
+ "page_idx": 6
819
+ },
820
+ {
821
+ "type": "text",
822
+ "text": "Our work is related to previous works in different aspects. Before closing, we discuss the relations and differences in details. ",
823
+ "bbox": [
824
+ 173,
825
+ 713,
826
+ 823,
827
+ 742
828
+ ],
829
+ "page_idx": 6
830
+ },
831
+ {
832
+ "type": "text",
833
+ "text": "Anchor-based Object Detection: The anchor-based object detection frameworks can be generally grouped into two factions: two-stage, proposal driven detectors and one-stage, proposal free methods. Anchors are regression references and classification candidates to predict proposals for two-stage detectors(Ren et al., 2015; Lin et al., 2017; He et al., 2017; Cai & Vasconcelos, 2018) or final bounding boxes for single-stage detectors (Liu et al., 2016; Lin et al., 2018; Redmon & Farhadi, 2017). Most top one-stage detectors rely on the anchor boxes to enumerate the possible locations of target objects. ",
834
+ "bbox": [
835
+ 173,
836
+ 750,
837
+ 825,
838
+ 847
839
+ ],
840
+ "page_idx": 6
841
+ },
842
+ {
843
+ "type": "text",
844
+ "text": "Anchor-Free Explorations: There are also some prior works trying to remove the dependence of anchors. Due to the absence of anchors or region proposals, usually they lack the ability to deal with complex scenes and cases (Huang et al., 2015; Redmon et al., 2016). In text detection, the score mask technique has been used due to the arbitrary shape of target text (Zhang et al., 2016; Hu et al., 2017; Zhou et al., 2017). Such works usually utilize the fully convolutional networks to predict the existence of target scene text and the quadrilateral shapes. Guided-Anchoring (Wang et al., 2019) jointly predicts the locations where the center of objects are likely to exist as well as the scales and aspect ratios centered at the corresponding locations. Guided-Anchoring still relies on predefined anchors to optimize the object shape, and utilizes the center points to give the best predictions. In contrast, FoveaBox predicts the (left, top, right, bottom) boundaries of the object for each foreground position. ",
845
+ "bbox": [
846
+ 174,
847
+ 854,
848
+ 825,
849
+ 924
850
+ ],
851
+ "page_idx": 6
852
+ },
853
+ {
854
+ "type": "table",
855
+ "img_path": "images/e84260c2da6b571f845c3ca8b81417be7fb4979d0c1e221bc66b6ef5d8b4b9c3.jpg",
856
+ "table_caption": [
857
+ "Table 4: Object detection single-model results v.s. state-of-the-arts on COCO test-dev. We show results for our FoveaBox models with 800 input scale. FoveaBox-align indicates utilizing feature alignment discussed in Section 3.1. "
858
+ ],
859
+ "table_footnote": [],
860
+ "table_body": "<table><tr><td></td><td>backbone</td><td>AP</td><td>AP50</td><td>AP75</td><td>APs</td><td>APM</td><td>APL</td></tr><tr><td>two-stage methods Faster R-CNN w FPN (Lin et al., 2017)</td><td>ResNet-101</td><td rowspan=\"8\">36.2 38.2 34.7</td><td rowspan=\"8\">59.1</td><td rowspan=\"8\">39.0 41.7</td><td rowspan=\"8\">18.2 20.1</td><td rowspan=\"8\"></td><td rowspan=\"8\"></td><td>48.2 50.2 52.0</td></tr><tr><td>Mask R-CNN(He et al.,2017) Faster R-CNN by G-RMI(Huang et al.,2017b)</td><td>ResNet-101 Inception-ResNet-v2 Inception-ResNet-v2</td><td>60.3 55.5 57.7</td><td>36.7 13.5</td><td>39.0 41.1 38.1</td></tr><tr><td>Faster R-CNN w TDM(Shrivastava et al.,2016)</td></tr><tr><td>Relation Network (Hu et al.,2018)</td><td>36.8 DCN-101 39.0</td><td>39.2 58.6 42.9 59.0</td><td>16.2 39.8 - -</td></tr><tr><td>IoU-Net (Jiang et al.,2018)</td><td>ResNet-101 40.6 ResNet-101 42.8 62.1</td><td>■ ■ 46.3 23.7 45.5</td></tr><tr><td>CascadeR-CNN(Cai&amp; Vasconcelos,2018)</td></tr><tr><td>one-stagemethods YOLOv2 (Redmon et al., 2016)</td></tr><tr><td>YOLOv3 (Redmon &amp; Farhadi,2018) SSD513 (Fu et al.,2017)</td></tr><tr><td>DSSD513 (Fu et al., 2017) RetinaNet (Lin et al.,2018) RetinaNet (Lin et al., 2018) RPDet (Yang et al.,2019) FCOS (Tian et al.,2019)</td><td>Darknet-53 ResNet-101 ResNet-101 ResNet-101 ResNeXt-101 ResNeXt-101</td><td colspan=\"9\">33.0 57.9 31.2 50.4 33.2 53.3 39.1 59.1 40.8</td></tr><tr><td></td><td>ResNeXt-101 Hourglass-104</td><td>41.0 42.1</td><td>61.1 62.9 62.1</td><td>44.1 44.3 45.2</td><td>24.1 23.6 25.6</td><td>44.2 44.1 44.9 42.7</td><td>51.2 51.7 52.0 53.9</td></tr><tr><td>CornerNet (Law&amp; Deng,2018) ExtremeNet (Zhou et al.,2019b)</td><td>Hourglass-104</td><td>40.5 40.1</td><td>56.5 55.3</td><td>43.1 43.2</td><td>19.4 20.3</td><td>43.2</td><td></td></tr><tr><td>CenterNet (Duan et al.,2019)</td><td>Hourglass-104</td><td>42.1</td><td>61.1</td><td>45.9</td><td>24.1</td><td>45.5</td><td>53.1 52.8</td></tr><tr><td>ours</td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>FoveaBox</td><td>ResNet-101</td><td>40.8</td><td>61.4</td><td>44.0</td><td>24.1</td><td></td><td>45.3</td><td>53.2</td></tr><tr><td>FoveaBox</td><td>ResNeXt-101</td><td>42.3</td><td>62.9</td><td>45.4</td><td></td><td>25.3</td><td></td><td></td></tr><tr><td>FoveaBox-align</td><td>ResNet-101</td><td>42.1</td><td></td><td></td><td></td><td></td><td>46.8</td><td>55.0</td></tr><tr><td></td><td>ResNeXt-101</td><td>43.9</td><td>62.7</td><td>45.5</td><td></td><td>25.2</td><td>46.6</td><td>54.5</td></tr><tr><td>FoveaBox-align</td><td></td><td></td><td>63.5</td><td>47.7</td><td></td><td>26.8</td><td>46.9</td><td>55.6</td></tr></table>",
861
+ "bbox": [
862
+ 176,
863
+ 169,
864
+ 826,
865
+ 467
866
+ ],
867
+ "page_idx": 7
868
+ },
869
+ {
870
+ "type": "text",
871
+ "text": "",
872
+ "bbox": [
873
+ 173,
874
+ 496,
875
+ 825,
876
+ 579
877
+ ],
878
+ "page_idx": 7
879
+ },
880
+ {
881
+ "type": "text",
882
+ "text": "Contemporary Works: Also there are contemporary works (Tian et al., 2019; Zhou et al., 2019a) similar to the idea of FoveaBox. FCOS relies on the proposed centerness map for better learning of the instance. Instead, FoveaBox directly predict the final class probability without centerness voting, which is more simple. The CenterNet (Zhou et al., 2019a) represent each instance by its features at the center point, which could also get comparable performance when adopting heavier networks (Law & Deng, 2018). Compare with a single point, our fovea-based positive sample definition process is more reasonable (The performance drops dramatically when we decrease $\\sigma$ ). Again, we note that FoveaBox, CenterNet and FCOS are concurrent works. ",
883
+ "bbox": [
884
+ 173,
885
+ 587,
886
+ 825,
887
+ 698
888
+ ],
889
+ "page_idx": 7
890
+ },
891
+ {
892
+ "type": "text",
893
+ "text": "Bottom-up Methods: In CornerNet (Law & Deng, 2018), the authors propose to detect an object bounding box as a pair of key-points, the top-left corner and the bottom-right corner. CornerNet adopts the Associative Embedding (Newell et al., 2017) technique to separate different instances. Also there are some following works in bottom-up grouping manner (Zhou et al., 2019b; Duan et al., 2019). It should be noted that the bottom-up methods also do not need anchors during training and inference. ",
894
+ "bbox": [
895
+ 174,
896
+ 704,
897
+ 825,
898
+ 789
899
+ ],
900
+ "page_idx": 7
901
+ },
902
+ {
903
+ "type": "text",
904
+ "text": "5 CONCLUSION ",
905
+ "text_level": 1,
906
+ "bbox": [
907
+ 176,
908
+ 808,
909
+ 318,
910
+ 825
911
+ ],
912
+ "page_idx": 7
913
+ },
914
+ {
915
+ "type": "text",
916
+ "text": "We have presented FoveaBox, a simple, effective, and completely anchor-free framework for generic object detection. By simultaneously predict the object position and the corresponding boundary, FoveaBox gives a clean solution for detecting objects without prior candidate boxes. We demonstrate its effectiveness on standard benchmarks and report extensive experimental analysis. We believe the simple and effective approach will serve as a solid baseline and help ease future research for object detection. ",
917
+ "bbox": [
918
+ 174,
919
+ 840,
920
+ 825,
921
+ 922
922
+ ],
923
+ "page_idx": 7
924
+ },
925
+ {
926
+ "type": "text",
927
+ "text": "REFERENCES ",
928
+ "text_level": 1,
929
+ "bbox": [
930
+ 176,
931
+ 102,
932
+ 287,
933
+ 118
934
+ ],
935
+ "page_idx": 8
936
+ },
937
+ {
938
+ "type": "text",
939
+ "text": "Mark F Bear, Barry W Connors, and Michael A Paradiso. Neuroscience, volume 2. Lippincott Williams & Wilkins, 2007. ",
940
+ "bbox": [
941
+ 174,
942
+ 126,
943
+ 823,
944
+ 155
945
+ ],
946
+ "page_idx": 8
947
+ },
948
+ {
949
+ "type": "text",
950
+ "text": "Navaneeth Bodla, Bharat Singh, Rama Chellappa, and Larry S Davis. Soft-nms–improving object detection with one line of code. In Proceedings of the IEEE International Conference on Computer Vision, pp. 5561–5569, 2017. ",
951
+ "bbox": [
952
+ 174,
953
+ 162,
954
+ 823,
955
+ 207
956
+ ],
957
+ "page_idx": 8
958
+ },
959
+ {
960
+ "type": "text",
961
+ "text": "Zhaowei Cai and Nuno Vasconcelos. Cascade r-cnn: Delving into high quality object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 6154–6162, 2018. ",
962
+ "bbox": [
963
+ 174,
964
+ 215,
965
+ 823,
966
+ 257
967
+ ],
968
+ "page_idx": 8
969
+ },
970
+ {
971
+ "type": "text",
972
+ "text": "Hong-Yunn Chen et al. Tensorflow–a system for large-scale machine learning. In OSDI, volume 16, pp. 265–283, 2016. ",
973
+ "bbox": [
974
+ 173,
975
+ 267,
976
+ 823,
977
+ 296
978
+ ],
979
+ "page_idx": 8
980
+ },
981
+ {
982
+ "type": "text",
983
+ "text": "Yuntao Chen, Chenxia Han, Naiyan Wang, and Zhaoxiang Zhang. Revisiting feature alignment for one-stage object detection. arXiv preprint arXiv:1908.01570, 2019. ",
984
+ "bbox": [
985
+ 173,
986
+ 304,
987
+ 823,
988
+ 334
989
+ ],
990
+ "page_idx": 8
991
+ },
992
+ {
993
+ "type": "text",
994
+ "text": "Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li, Guodong Zhang, Han Hu, and Yichen Wei. Deformable convolutional networks. In Proceedings of the IEEE International Conference on Computer Vision, pp. 764–773, 2017. ",
995
+ "bbox": [
996
+ 174,
997
+ 342,
998
+ 823,
999
+ 386
1000
+ ],
1001
+ "page_idx": 8
1002
+ },
1003
+ {
1004
+ "type": "text",
1005
+ "text": "Kaiwen Duan, Song Bai, Lingxi Xie, Honggang Qi, Qingming Huang, and Qi Tian. Centernet: Keypoint triplets for object detection. arXiv preprint arXiv:1904.08189, 2019. ",
1006
+ "bbox": [
1007
+ 173,
1008
+ 393,
1009
+ 821,
1010
+ 424
1011
+ ],
1012
+ "page_idx": 8
1013
+ },
1014
+ {
1015
+ "type": "text",
1016
+ "text": "Pedro F Felzenszwalb, Ross B Girshick, and David McAllester. Cascade object detection with deformable part models. In Computer vision and pattern recognition (CVPR), 2010 IEEE conference on, pp. 2241–2248. IEEE, 2010. ",
1017
+ "bbox": [
1018
+ 173,
1019
+ 433,
1020
+ 823,
1021
+ 476
1022
+ ],
1023
+ "page_idx": 8
1024
+ },
1025
+ {
1026
+ "type": "text",
1027
+ "text": "Cheng-Yang Fu, Wei Liu, Ananth Ranga, Ambrish Tyagi, and Alexander C Berg. Dssd: Deconvolutional single shot detector. arXiv preprint arXiv:1701.06659, 2017. ",
1028
+ "bbox": [
1029
+ 173,
1030
+ 484,
1031
+ 821,
1032
+ 513
1033
+ ],
1034
+ "page_idx": 8
1035
+ },
1036
+ {
1037
+ "type": "text",
1038
+ "text": "Spyros Gidaris and Nikos Komodakis. Object detection via a multi-region and semantic segmentation-aware cnn model. In Proceedings of the IEEE International Conference on Computer Vision, pp. 1134–1142, 2015. ",
1039
+ "bbox": [
1040
+ 174,
1041
+ 521,
1042
+ 825,
1043
+ 565
1044
+ ],
1045
+ "page_idx": 8
1046
+ },
1047
+ {
1048
+ "type": "text",
1049
+ "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ",
1050
+ "bbox": [
1051
+ 173,
1052
+ 574,
1053
+ 825,
1054
+ 617
1055
+ ],
1056
+ "page_idx": 8
1057
+ },
1058
+ {
1059
+ "type": "text",
1060
+ "text": "Kaiming He, Georgia Gkioxari, Piotr Dollar, and Ross Girshick. Mask r-cnn. In ´ Computer Vision (ICCV), 2017 IEEE International Conference on, pp. 2980–2988. IEEE, 2017. ",
1061
+ "bbox": [
1062
+ 173,
1063
+ 626,
1064
+ 823,
1065
+ 655
1066
+ ],
1067
+ "page_idx": 8
1068
+ },
1069
+ {
1070
+ "type": "text",
1071
+ "text": "Han Hu, Chengquan Zhang, Yuxuan Luo, Yuzhuo Wang, Junyu Han, and Errui Ding. Wordsup: Exploiting word annotations for character based text detection. In Proceedings of the IEEE International Conference on Computer Vision, pp. 4940–4949, 2017. ",
1072
+ "bbox": [
1073
+ 173,
1074
+ 662,
1075
+ 823,
1076
+ 707
1077
+ ],
1078
+ "page_idx": 8
1079
+ },
1080
+ {
1081
+ "type": "text",
1082
+ "text": "Han Hu, Jiayuan Gu, Zheng Zhang, Jifeng Dai, and Yichen Wei. Relation networks for object detection. In Computer Vision and Pattern Recognition (CVPR), volume 2, 2018. ",
1083
+ "bbox": [
1084
+ 169,
1085
+ 715,
1086
+ 823,
1087
+ 746
1088
+ ],
1089
+ "page_idx": 8
1090
+ },
1091
+ {
1092
+ "type": "text",
1093
+ "text": "Gao Huang, Zhuang Liu, Laurens Van Der Maaten, and Kilian Q Weinberger. Densely connected convolutional networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 4700–4708, 2017a. ",
1094
+ "bbox": [
1095
+ 176,
1096
+ 753,
1097
+ 825,
1098
+ 796
1099
+ ],
1100
+ "page_idx": 8
1101
+ },
1102
+ {
1103
+ "type": "text",
1104
+ "text": "Jonathan Huang, Vivek Rathod, Chen Sun, Menglong Zhu, Anoop Korattikara, Alireza Fathi, Ian Fischer, Zbigniew Wojna, Yang Song, Sergio Guadarrama, et al. Speed/accuracy trade-offs for modern convolutional object detectors. In IEEE CVPR, volume 4, 2017b. ",
1105
+ "bbox": [
1106
+ 176,
1107
+ 805,
1108
+ 823,
1109
+ 848
1110
+ ],
1111
+ "page_idx": 8
1112
+ },
1113
+ {
1114
+ "type": "text",
1115
+ "text": "Lichao Huang, Yi Yang, Yafeng Deng, and Yinan Yu. Densebox: Unifying landmark localization with end to end object detection. arXiv preprint arXiv:1509.04874, 2015. ",
1116
+ "bbox": [
1117
+ 174,
1118
+ 857,
1119
+ 823,
1120
+ 886
1121
+ ],
1122
+ "page_idx": 8
1123
+ },
1124
+ {
1125
+ "type": "text",
1126
+ "text": "Masayuki Iwasaki and H Inomata. Relation between superficial capillaries and foveal structures in the human retina. Investigative ophthalmology & visual science, 27(12):1698–1705, 1986. ",
1127
+ "bbox": [
1128
+ 176,
1129
+ 895,
1130
+ 821,
1131
+ 924
1132
+ ],
1133
+ "page_idx": 8
1134
+ },
1135
+ {
1136
+ "type": "text",
1137
+ "text": "Borui Jiang, Ruixuan Luo, Jiayuan Mao, Tete Xiao, and Yuning Jiang. Acquisition of localization confidence for accurate object detection. In Proceedings of the European Conference on Computer Vision, Munich, Germany, pp. 8–14, 2018. ",
1138
+ "bbox": [
1139
+ 176,
1140
+ 103,
1141
+ 823,
1142
+ 146
1143
+ ],
1144
+ "page_idx": 9
1145
+ },
1146
+ {
1147
+ "type": "text",
1148
+ "text": "Christoph H Lampert, Matthew B Blaschko, and Thomas Hofmann. Beyond sliding windows: Object localization by efficient subwindow search. In 2008 IEEE conference on computer vision and pattern recognition, pp. 1–8. IEEE, 2008. ",
1149
+ "bbox": [
1150
+ 174,
1151
+ 156,
1152
+ 820,
1153
+ 199
1154
+ ],
1155
+ "page_idx": 9
1156
+ },
1157
+ {
1158
+ "type": "text",
1159
+ "text": "Hei Law and Jia Deng. Cornernet: Detecting objects as paired keypoints. In Proceedings of the European Conference on Computer Vision (ECCV), volume 6, 2018. ",
1160
+ "bbox": [
1161
+ 174,
1162
+ 209,
1163
+ 821,
1164
+ 238
1165
+ ],
1166
+ "page_idx": 9
1167
+ },
1168
+ {
1169
+ "type": "text",
1170
+ "text": "Tsung-Yi Lin, Piotr Dollar, Ross B Girshick, Kaiming He, Bharath Hariharan, and Serge J Belongie. ´ Feature pyramid networks for object detection. In CVPR, volume 1, pp. 4, 2017. ",
1171
+ "bbox": [
1172
+ 174,
1173
+ 248,
1174
+ 820,
1175
+ 277
1176
+ ],
1177
+ "page_idx": 9
1178
+ },
1179
+ {
1180
+ "type": "text",
1181
+ "text": "Tsung-Yi Lin, Priyal Goyal, Ross Girshick, Kaiming He, and Piotr Dollar. Focal loss for dense ´ object detection. IEEE transactions on pattern analysis and machine intelligence, 2018. ",
1182
+ "bbox": [
1183
+ 171,
1184
+ 287,
1185
+ 823,
1186
+ 318
1187
+ ],
1188
+ "page_idx": 9
1189
+ },
1190
+ {
1191
+ "type": "text",
1192
+ "text": "Li Liu, Wanli Ouyang, Xiaogang Wang, Paul Fieguth, Jie Chen, Xinwang Liu, and Matti Pietikainen. ¨ Deep learning for generic object detection: A survey. arXiv preprint arXiv:1809.02165, 2018. ",
1193
+ "bbox": [
1194
+ 169,
1195
+ 327,
1196
+ 821,
1197
+ 357
1198
+ ],
1199
+ "page_idx": 9
1200
+ },
1201
+ {
1202
+ "type": "text",
1203
+ "text": "Wei Liu, Dragomir Anguelov, Dumitru Erhan, Christian Szegedy, Scott Reed, Cheng-Yang Fu, and Alexander C Berg. Ssd: Single shot multibox detector. In European conference on computer vision, pp. 21–37. Springer, 2016. ",
1204
+ "bbox": [
1205
+ 176,
1206
+ 366,
1207
+ 825,
1208
+ 410
1209
+ ],
1210
+ "page_idx": 9
1211
+ },
1212
+ {
1213
+ "type": "text",
1214
+ "text": "Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 3431–3440, 2015. ",
1215
+ "bbox": [
1216
+ 171,
1217
+ 419,
1218
+ 823,
1219
+ 462
1220
+ ],
1221
+ "page_idx": 9
1222
+ },
1223
+ {
1224
+ "type": "text",
1225
+ "text": "Alejandro Newell, Zhiao Huang, and Jia Deng. Associative embedding: End-to-end learning for joint detection and grouping. In Advances in Neural Information Processing Systems, pp. 2277– 2287, 2017. ",
1226
+ "bbox": [
1227
+ 171,
1228
+ 472,
1229
+ 823,
1230
+ 515
1231
+ ],
1232
+ "page_idx": 9
1233
+ },
1234
+ {
1235
+ "type": "text",
1236
+ "text": "Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in pytorch. 2017. ",
1237
+ "bbox": [
1238
+ 173,
1239
+ 525,
1240
+ 823,
1241
+ 568
1242
+ ],
1243
+ "page_idx": 9
1244
+ },
1245
+ {
1246
+ "type": "text",
1247
+ "text": "Joseph Redmon and Ali Farhadi. Yolo9000: better, faster, stronger. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 7263���7271, 2017. ",
1248
+ "bbox": [
1249
+ 169,
1250
+ 578,
1251
+ 823,
1252
+ 608
1253
+ ],
1254
+ "page_idx": 9
1255
+ },
1256
+ {
1257
+ "type": "text",
1258
+ "text": "Joseph Redmon and Ali Farhadi. Yolov3: An incremental improvement. arXiv preprint arXiv:1804.02767, 2018. ",
1259
+ "bbox": [
1260
+ 169,
1261
+ 617,
1262
+ 825,
1263
+ 647
1264
+ ],
1265
+ "page_idx": 9
1266
+ },
1267
+ {
1268
+ "type": "text",
1269
+ "text": "Joseph Redmon, Santosh Divvala, Ross Girshick, and Ali Farhadi. You only look once: Unified, real-time object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 779–788, 2016. ",
1270
+ "bbox": [
1271
+ 173,
1272
+ 656,
1273
+ 826,
1274
+ 700
1275
+ ],
1276
+ "page_idx": 9
1277
+ },
1278
+ {
1279
+ "type": "text",
1280
+ "text": "Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In Advances in neural information processing systems, pp. 91–99, 2015. ",
1281
+ "bbox": [
1282
+ 173,
1283
+ 710,
1284
+ 825,
1285
+ 753
1286
+ ],
1287
+ "page_idx": 9
1288
+ },
1289
+ {
1290
+ "type": "text",
1291
+ "text": "Abhinav Shrivastava, Rahul Sukthankar, Jitendra Malik, and Abhinav Gupta. Beyond skip connections: Top-down modulation for object detection. arXiv preprint arXiv:1612.06851, 2016. ",
1292
+ "bbox": [
1293
+ 173,
1294
+ 762,
1295
+ 823,
1296
+ 792
1297
+ ],
1298
+ "page_idx": 9
1299
+ },
1300
+ {
1301
+ "type": "text",
1302
+ "text": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. ",
1303
+ "bbox": [
1304
+ 169,
1305
+ 803,
1306
+ 823,
1307
+ 832
1308
+ ],
1309
+ "page_idx": 9
1310
+ },
1311
+ {
1312
+ "type": "text",
1313
+ "text": "Zhi Tian, Chunhua Shen, Hao Chen, and Tong He. Fcos: Fully convolutional one-stage object detection. arXiv preprint arXiv:1904.01355, 2019. ",
1314
+ "bbox": [
1315
+ 169,
1316
+ 842,
1317
+ 825,
1318
+ 871
1319
+ ],
1320
+ "page_idx": 9
1321
+ },
1322
+ {
1323
+ "type": "text",
1324
+ "text": "Jiaqi Wang, Kai Chen, Shuo Yang, Chen Change Loy, and Dahua Lin. Region proposal by guided anchoring. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2965–2974, 2019. ",
1325
+ "bbox": [
1326
+ 174,
1327
+ 882,
1328
+ 825,
1329
+ 924
1330
+ ],
1331
+ "page_idx": 9
1332
+ },
1333
+ {
1334
+ "type": "text",
1335
+ "text": "Tong Yang, Xiangyu Zhang, Zeming Li, Wenqiang Zhang, and Jian Sun. Metaanchor: Learning to detect objects with customized anchors. In Advances in Neural Information Processing Systems, pp. 318–328, 2018. ",
1336
+ "bbox": [
1337
+ 174,
1338
+ 103,
1339
+ 823,
1340
+ 146
1341
+ ],
1342
+ "page_idx": 10
1343
+ },
1344
+ {
1345
+ "type": "text",
1346
+ "text": "Ze Yang, Shaohui Liu, Han Hu, Liwei Wang, and Stephen Lin. Reppoints: Point set representation for object detection. arXiv preprint arXiv:1904.11490, 2019. ",
1347
+ "bbox": [
1348
+ 173,
1349
+ 159,
1350
+ 823,
1351
+ 188
1352
+ ],
1353
+ "page_idx": 10
1354
+ },
1355
+ {
1356
+ "type": "text",
1357
+ "text": "Zheng Zhang, Chengquan Zhang, Wei Shen, Cong Yao, Wenyu Liu, and Xiang Bai. Multi-oriented text detection with fully convolutional networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 4159–4167, 2016. ",
1358
+ "bbox": [
1359
+ 173,
1360
+ 200,
1361
+ 823,
1362
+ 244
1363
+ ],
1364
+ "page_idx": 10
1365
+ },
1366
+ {
1367
+ "type": "text",
1368
+ "text": "Xingyi Zhou, Dequan Wang, and Philipp Krahenb ¨ uhl. Objects as points. ¨ arXiv preprint arXiv:1904.07850, 2019a. ",
1369
+ "bbox": [
1370
+ 173,
1371
+ 256,
1372
+ 825,
1373
+ 286
1374
+ ],
1375
+ "page_idx": 10
1376
+ },
1377
+ {
1378
+ "type": "text",
1379
+ "text": "Xingyi Zhou, Jiacheng Zhuo, and Philipp Krahenbuhl. Bottom-up object detection by grouping extreme and center points. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 850–859, 2019b. ",
1380
+ "bbox": [
1381
+ 173,
1382
+ 299,
1383
+ 826,
1384
+ 342
1385
+ ],
1386
+ "page_idx": 10
1387
+ },
1388
+ {
1389
+ "type": "text",
1390
+ "text": "Xinyu Zhou, Cong Yao, He Wen, Yuzhi Wang, Shuchang Zhou, Weiran He, and Jiajun Liang. East: an efficient and accurate scene text detector. In Proceedings of the IEEE conference on Computer Vision and Pattern Recognition, pp. 5551–5560, 2017. ",
1391
+ "bbox": [
1392
+ 178,
1393
+ 354,
1394
+ 821,
1395
+ 397
1396
+ ],
1397
+ "page_idx": 10
1398
+ },
1399
+ {
1400
+ "type": "text",
1401
+ "text": "A APPENDIX ",
1402
+ "text_level": 1,
1403
+ "bbox": [
1404
+ 176,
1405
+ 428,
1406
+ 297,
1407
+ 444
1408
+ ],
1409
+ "page_idx": 10
1410
+ },
1411
+ {
1412
+ "type": "text",
1413
+ "text": "A.1 QUALITATIVE RESULTS ",
1414
+ "text_level": 1,
1415
+ "bbox": [
1416
+ 176,
1417
+ 460,
1418
+ 379,
1419
+ 476
1420
+ ],
1421
+ "page_idx": 10
1422
+ },
1423
+ {
1424
+ "type": "text",
1425
+ "text": "Fig.5 shows the detection outputs of FoveaBox. Points and boxes with class probability larger than 0.5 are shown (before feeding into NMS). For each object, though there are several active points, the predicted boxes are very close to the ground-truth. These figures demonstrate that FoveaBox could directly generate accurate, robust box predictions, without the requirement of candidate anchors. ",
1426
+ "bbox": [
1427
+ 173,
1428
+ 488,
1429
+ 825,
1430
+ 544
1431
+ ],
1432
+ "page_idx": 10
1433
+ },
1434
+ {
1435
+ "type": "image",
1436
+ "img_path": "images/daa123700845237aff0c1602e0f807a2721b2b0ae599350fe6ae893b0fa790be.jpg",
1437
+ "image_caption": [
1438
+ "Figure 5: FoveaBox results on the COCO minival set. These results are based on ResNet-101, achieving a single model box AP of 38.6. For each pair, left is the detection results with bounding box, category, and confidence. Right is the score output map with their corresponding bounding boxes before feeding into non-maximum suppression (NMS). The score probability in each position is denoted by the color density. "
1439
+ ],
1440
+ "image_footnote": [],
1441
+ "bbox": [
1442
+ 181,
1443
+ 559,
1444
+ 816,
1445
+ 819
1446
+ ],
1447
+ "page_idx": 10
1448
+ },
1449
+ {
1450
+ "type": "text",
1451
+ "text": "A.2 PER-CLASS DIFFERENCE: ",
1452
+ "text_level": 1,
1453
+ "bbox": [
1454
+ 176,
1455
+ 103,
1456
+ 392,
1457
+ 117
1458
+ ],
1459
+ "page_idx": 11
1460
+ },
1461
+ {
1462
+ "type": "text",
1463
+ "text": "Fig. 6 shows per-class AP difference of FoveaBox and RetinaNet. Both of them are with ResNet-50- FPN backbone and 800 input scale. The vertical axis shows $\\mathbf { A P } _ { F o v e a B o x }$ -APRetinaNet. FoveaBox shows improvement in most of the classes. ",
1464
+ "bbox": [
1465
+ 174,
1466
+ 128,
1467
+ 823,
1468
+ 171
1469
+ ],
1470
+ "page_idx": 11
1471
+ },
1472
+ {
1473
+ "type": "image",
1474
+ "img_path": "images/9d75c5fbf37f13dc1c4aa1335506f3078e85b21adfca94ba3a80c4050cb16a64.jpg",
1475
+ "image_caption": [
1476
+ "Figure 6: AP difference of FoveaNet and RetinaNet on COCO dataset. Both models use ResNetFPN-50 as backbone and 800 input scales. "
1477
+ ],
1478
+ "image_footnote": [],
1479
+ "bbox": [
1480
+ 176,
1481
+ 183,
1482
+ 818,
1483
+ 358
1484
+ ],
1485
+ "page_idx": 11
1486
+ },
1487
+ {
1488
+ "type": "text",
1489
+ "text": "A.3 MORE TRAINING TIME: ",
1490
+ "text_level": 1,
1491
+ "bbox": [
1492
+ 174,
1493
+ 433,
1494
+ 380,
1495
+ 446
1496
+ ],
1497
+ "page_idx": 11
1498
+ },
1499
+ {
1500
+ "type": "text",
1501
+ "text": "Table 5 shows the detection performance under $2 \\mathbf { x }$ setting (24 epochs training). FoveaBox also outperforms the anchor-based baseline method. ",
1502
+ "bbox": [
1503
+ 173,
1504
+ 458,
1505
+ 823,
1506
+ 487
1507
+ ],
1508
+ "page_idx": 11
1509
+ },
1510
+ {
1511
+ "type": "table",
1512
+ "img_path": "images/ee366a1d89befcca3152aa7a0da0daab7e6c993fa379672c26f64d97cc324079.jpg",
1513
+ "table_caption": [
1514
+ "Table $5 \\colon 2 \\mathrm { x }$ epochs training (800 scale). "
1515
+ ],
1516
+ "table_footnote": [],
1517
+ "table_body": "<table><tr><td>method</td><td>AP</td><td>AP50</td><td>AP75</td></tr><tr><td>RetinaNet-50</td><td>36.4</td><td>56.3</td><td>39.4</td></tr><tr><td>RetinaNet-101</td><td>38.1</td><td>57.8</td><td>41.1</td></tr><tr><td>FoveaBox-50</td><td>37.1</td><td>56.7</td><td>39.3</td></tr><tr><td>FoveaBox-101</td><td>38.7</td><td>58.4</td><td>41.1</td></tr></table>",
1518
+ "bbox": [
1519
+ 359,
1520
+ 529,
1521
+ 633,
1522
+ 607
1523
+ ],
1524
+ "page_idx": 11
1525
+ },
1526
+ {
1527
+ "type": "text",
1528
+ "text": "A.4 FEATURE ALIGNMENT ",
1529
+ "text_level": 1,
1530
+ "bbox": [
1531
+ 176,
1532
+ 631,
1533
+ 372,
1534
+ 645
1535
+ ],
1536
+ "page_idx": 11
1537
+ },
1538
+ {
1539
+ "type": "text",
1540
+ "text": "For feature alignment, we adopt a $3 \\times 3$ deformable convolutional layer to implement the transformation, as shown in Fig.7. The offset input to the deformable convolutional layer is $( { \\hat { t } } _ { x _ { 1 } } , { \\hat { t } } _ { y _ { 1 } } , { \\hat { t } } _ { x _ { 2 } } , { \\hat { t } } _ { y _ { 2 } } )$ of the bbox output. ",
1541
+ "bbox": [
1542
+ 174,
1543
+ 656,
1544
+ 825,
1545
+ 699
1546
+ ],
1547
+ "page_idx": 11
1548
+ },
1549
+ {
1550
+ "type": "image",
1551
+ "img_path": "images/7d0edf63e7fd123b34f67edf62dac10ba3ba1ed7dbc2ab6e42647f9f47a867a9.jpg",
1552
+ "image_caption": [
1553
+ "Figure 7: Feature alignment process. "
1554
+ ],
1555
+ "image_footnote": [],
1556
+ "bbox": [
1557
+ 205,
1558
+ 709,
1559
+ 787,
1560
+ 881
1561
+ ],
1562
+ "page_idx": 11
1563
+ }
1564
+ ]
parse/train/HyxFF34FPr/HyxFF34FPr_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/HyxFF34FPr/HyxFF34FPr_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/U_mat0b9iv/U_mat0b9iv.md ADDED
@@ -0,0 +1,715 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Multi-Prize Lottery Ticket Hypothesis: FINDING ACCURATE BINARY NEURAL NETWORKS BY PRUNING A RANDOMLY WEIGHTED NETWORK
2
+
3
+ James Diffenderfer & Bhavya Kailkhura
4
+
5
+ Center for Applied Scientific Computing Lawrence Livermore National Laboratory Livermore, CA 94550, USA {diffenderfer2,kailkhura1}@llnl.gov
6
+
7
+ # ABSTRACT
8
+
9
+ Recently, Frankle & Carbin (2019) demonstrated that randomly-initialized dense networks contain subnetworks that once found can be trained to reach test accuracy comparable to the trained dense network. However, finding these high performing trainable subnetworks is expensive, requiring iterative process of training and pruning weights. In this paper, we propose (and prove) a stronger Multi-Prize Lottery Ticket Hypothesis:
10
+
11
+ A sufficiently over-parameterized neural network with random weights contains several subnetworks (winning tickets) that (a) have comparable accuracy to a dense target network with learned weights (prize 1), (b) do not require any further training to achieve prize 1 (prize 2), and (c) is robust to extreme forms of quantization (i.e., binary weights and/or activation) (prize 3).
12
+
13
+ This provides a new paradigm for learning compact yet highly accurate binary neural networks simply by pruning and quantizing randomly weighted full precision neural networks. We also propose an algorithm for finding multi-prize tickets (MPTs) and test it by performing a series of experiments on CIFAR-10 and ImageNet datasets. Empirical results indicate that as models grow deeper and wider, multi-prize tickets start to reach similar (and sometimes even higher) test accuracy compared to their significantly larger and full-precision counterparts that have been weight-trained. Without ever updating the weight values, our MPTs-1/32 not only set new binary weight network state-of-the-art (SOTA) Top-1 accuracy – $9 4 . 8 \%$ on CIFAR-10 and $7 4 . 0 3 \%$ on ImageNet – but also outperform their full-precision counterparts by $1 . 7 8 \%$ and $0 . 7 6 \%$ , respectively. Further, our MPT-1/1 achieves SOTA Top-1 accuracy $( 9 1 . 9 \% )$ for binary neural networks on CIFAR-10. Code and pre-trained models are available at: https: //github.com/chrundle/biprop.
14
+
15
+ # 1 INTRODUCTION
16
+
17
+ Deep learning (DL) has made a significant breakthroughs in a wide range of applications (Goodfellow et al., 2016). These performance improvements can be attributed to the significant growth in the model size and the availability of massive computational resources to train such models. Therefore, these gains have come at the cost of large memory consumption, high inference time, and increased power consumption. This not only limits the potential applications where DL can make an impact but also have some serious consequences, such as, (a) generating huge carbon footprint, and (b) creating roadblocks to the democratization of AI. Note that significant parameter redundancy and a large number of floating-point operations are key factors incurring the these costs. Thus, for discarding the redundancy from DNNs, one can either (a) Prune: remove non-essential connections from an existing dense network, or (b) Quantize: constrain the full-precision (FP) weight and activation values to a set of discrete values which allows them to be represented using fewer bits. Further, one can exploit the complementary nature of pruning and quantization to combine their strengths.
18
+
19
+ Figure 1: Multi-Prize Ticket Performance: Multi-prize tickets, obtained only by pruning and binarizing random networks, outperforms trained full precision and SOTA binary weight networks.
20
+
21
+ <table><tr><td></td><td>Configuration</td><td>Model</td><td>Weights</td><td>Memory Savings</td><td>Comp. Savings</td><td>Params</td><td>Accuracy</td></tr><tr><td rowspan="3">CTITAPIT</td><td>Dense (32/32)</td><td>ResNet18</td><td>Learned</td><td>1×</td><td>1×</td><td>11.2 M</td><td>93.02%</td></tr><tr><td>ProxQuant (1/32)</td><td>ResNet56</td><td>Learned</td><td>~32×</td><td>~2x</td><td>0.85 M</td><td>92.3%</td></tr><tr><td>MPT (1/32)</td><td>ResNet18</td><td>Pruned</td><td>~32x</td><td>~2x</td><td>2.2 M</td><td>94.8%</td></tr><tr><td rowspan="3">raeenee</td><td>Dense (32/32)</td><td>ResNet34</td><td>Learned</td><td>1×</td><td>1×</td><td>21.8M</td><td>73.27%</td></tr><tr><td>Quant-Net (1/32)</td><td>ResNet50</td><td>Learned</td><td>~32x</td><td>~2x</td><td>25.6M</td><td>72.8%</td></tr><tr><td>MPT (1/32)</td><td>WRN-50</td><td>Pruned</td><td>~32x</td><td>~2x</td><td>13.7 M</td><td>74.03%</td></tr></table>
22
+
23
+ Although pruning and quantization1 are typical approaches used for compressing DNNs (Neill, 2020), it is not clear under what conditions and to what extent compression can be achieved without sacrificing the accuracy. The most extreme form of quanitization is binarization, where weights and/or activations can only have two possible values, namely $- 1 ( 0 )$ or $+ 1$ (the interest of this paper). In addition to saving memory, binarization results in more power efficient networks with significant computation acceleration since expensive multiply-accumulate operations (MACs) can be replaced by cheap XNOR and bit-counting operations (Qin et al., 2020a). In light of these benefits, it is of interest to question if conditions exists such that a binarized DNN can be pruned to achieve accuracy comparable to the dense FP DNN. More importantly, even if these favourable conditions are met then how do we find these extremely compressed (or compact) and highly accurate subnetworks?
24
+
25
+ Traditional pruning schemes have shown that a pretrained DNN can be pruned without a significant loss in the performance. Recently, (Frankle & Carbin, 2019) made a breakthrough by showing that dense network contain sparse subnetworks that can match the performance of the original network when trained from scratch with weights being reset to their initialization (Lottery Ticket Hypothesis). Although the original approach to find these subnetworks still required training the dense network, some efforts (Wang et al., 2020b; You et al., 2019; Wang et al., 2020a) have been carried out to overcome this limitation. Recently a more intriguing phenomenon has been reported – a dense network with random initialization contains subnetworks that achieve high accuracy, without any further training (Zhou et al., 2019; Ramanujan et al., 2020; Malach et al., 2020; Orseau et al., 2020). These trends highlight good progress being made towards efficiently and accurately pruning DNNs.
26
+
27
+ In contrast to these positive developments for pruning, results on binarizing DNNs have been mostly negative. To the best of our knowledge, post-training schemes have not been successful in binarizing pretrained models without retraining. Even with training binary neural networks (BNNs) from scratch (though inefficient), the community has not been able to make BNNs achieve comparable results to their full precision counterparts. The main reason being that network structures and weight optimization techniques are predominantly developed for full precision DNNs and may not be suitable for training BNNs. Thus, closing the gap in accuracy between the full precision and the binarized version may require a paradigm shift. Furthermore, this also makes one wonder if efficiently and accurately binarizing DNNs similar to the recent trends in pruning is ever feasible.
28
+
29
+ In this paper, we show that a randomly initialized dense network contains extremely sparse binary subnetworks that without any weight training (i.e., efficient) have comparable performance to their trained dense and full-precision counterparts (i.e., accurate). Based on this, we state our hypothesis:
30
+
31
+ Multi-Prize Lottery Ticket Hypothesis. A sufficiently over-parameterized neural network with random weights contains several subnetworks (winning tickets) that (a) have comparable accuracy to a dense target network with learned weights (prize 1), (b) do not require any further training to achieve prize 1 (prize 2), and (c) is robust to extreme forms of quantization (i.e., binary weights and/or activation) (prize 3).
32
+
33
+ Contributions. First, we propose the multi-prize lottery ticket hypothesis as a new perspective on finding neural networks with drastically reduced memory size, much faster test-time inference and lower power consumption compared to their dense and full-precision counterparts. Next, we provide theoretical evidence of the existence of highly accurate binary subnetworks within a randomly weighted DNN (i.e., proving the multi-prize lottery ticket hypothesis). Specifically, we mathematically prove that we can find an $\varepsilon$ -approximation of a fully-connected ReLU DNN with width $n$ and depth $\ell$ using a sparse binary-weight DNN of sufficient width. Our proof indicates that this can be accomplished by pruning and binarizing the weights of a randomly weighted neural network that is a factor $O ( n ^ { 3 / 2 } \ell / \varepsilon )$ wider and $2 \ell$ deeper. To the best of our knowledge, this is the first theoretical work proving the existence of highly accurate binary subnetworks within a sufficiently overparameterized randomly initialized neural network. Finally, we provide biprop (binarize-prune optimizer) in Algorithm 1 to identify MPTs within randomly weighted DNNs and empirically test our hypothesis. This provides a completely new way to learn BNNs without relying on weight-optimization.
34
+
35
+ Results. We explore two variants of multi-prize tickets – one with binary weights (MPT-1/32) and other with binary weights and activation (MPT-1/1) where $x / y$ denotes $x$ and $y$ bits to represent weights and activation, respectively. MPTs we find have $6 0 \mathrm { ~ - ~ } 8 0 \%$ fewer parameters than the original network. We perform a series of experiments on on small and large scale datasets for image recognition, namely CIFAR-10 (Krizhevsky et al., 2009) and ImageNet (Deng et al., 2009). On CIFAR-10, we test the performance of multi-prize tickets against the trend of making the model deeper and wider. We found that as models grow deeper and wider, both variants of multi-prize tickets start to reach similar (and sometimes even higher) test accuracy compared to the dense and full precision original network with learned weights. In other words, the performance of multiprize tickets improves with the amount of redundancy in the original network. We also carry out experiments with state-of-the-art (SOTA) architectures on CIFAR-10 and ImageNet datasets with an aim to investigate their redundancy. We find that within most randomly weighted SOTA DNNs reside extremely compact (i.e., sparse and binary) subnetworks which are smaller than, but match the performance of trained target dense and full precision networks. Furthermore, with minimal hyperparameter tuning, our MPTs achieve Top-1 accuracy comparable to (or higher than) SOTA BNNs. The performance of MPTs is further improved by allowing the parameters in BatchNorm layer to be learned. Finally, on both CIFAR-10 and ImageNet, MPT-1/32 subnetworks outperform their significantly larger and full-precision counterparts that have been weight-trained.
36
+
37
+ # 2 MULTI-PRIZE LOTTERY TICKETS: THEORY AND ALGORITHMS
38
+
39
+ We first prove the existence of MPTs in an overparameterized randomly weighted DNN. For ease of presentation, we state an informal version of Theorem 2 which can be found in Appendix B. We then explore two variants of tickets (MPT-1/32 and MPT-1/1) and provide an algorithm to find them.
40
+
41
+ 2.1 PROVING THE MULTI-PRIZE LOTTERY TICKETS HYPOTHESIS
42
+
43
+ In this section we seek to answer the following question: What is the required amount of overparameterization such that a randomly weighted neural network can be compressed to a sparse binary subnetwork that approximates a dense trained target network?
44
+
45
+ Theorem 1. (Informal Statement of Theorem 2) Let $\varepsilon , \delta > 0$ . For every fully-connected $( F C )$ target network with ReLU activations of depth $\ell$ and width $n$ with bounded weights, a random binary $F C$ network with ReLU activations of depth $2 \ell$ and width $\mathcal { O } \left( ( \ell n ^ { 3 / 2 } / \varepsilon ) + \ell n \log ( \ell n / \delta ) \right)$ contains with probability $( 1 - \delta )$ a binary subnetwork that approximates the target network with error at most $\varepsilon$ .
46
+
47
+ Sketch of Proof. Consider a FC ReLU network ${ \cal F } ( { \pmb x } ) = { \cal W } ^ { ( \ell ) } \sigma ( { \pmb W } ^ { ( \ell - 1 ) } \cdot \cdot \cdot \sigma ( { \pmb W } ^ { ( 1 ) } { \pmb x } ) )$ , where $\sigma ( x ) = \operatorname* { m a x } \{ 0 , x \}$ , $\pmb { x } \in \mathbb { R } ^ { d }$ , $\boldsymbol { W } ^ { ( i ) } \in \mathbb { R } ^ { k _ { i } \times k _ { i - 1 } }$ , $k _ { 0 } = d$ , and $i \in [ \ell ]$ . Additionally, consider a FC network with binary weights given by $G ( \pmb { x } ) = B ^ { ( \ell ^ { \prime } ) } \sigma ( \pmb { B } ^ { ( \ell ^ { \prime } - 1 ) } \cdot \cdot \cdot \sigma ( \pmb { B } ^ { ( 1 ) } \pmb { x } ) )$ , where $B ^ { ( i ) } \in$ $\{ - 1 , + 1 \} ^ { k _ { i } ^ { \prime } \times k _ { i - 1 } ^ { \prime } }$ , $k _ { 0 } ^ { \prime } = d$ , and $i \in [ \ell ^ { \prime } ]$ . Our goal is to determine a lower bound on the depth, $\ell ^ { \prime }$ , and the widths, $\{ k _ { i } ^ { \prime } \} _ { i = 1 } ^ { \ell ^ { \prime } }$ , such that with probability $( 1 - \delta )$ the network $G ( \pmb { x } )$ contains a subnetwork $\tilde { G } ( { \pmb x } )$ satisfying $\| { \tilde { G } } ( { \pmb x } ) - F ( { \pmb x } ) \| \le \varepsilon$ , for any $\varepsilon > 0$ and $\delta \in \mathsf { \Gamma } ( 0 , 1 )$ . We first establish lower bounds on the width of a network of the form ${ \pmb g } ( { \pmb x } ) = { \pmb B } ^ { ( 2 ) } \sigma ( { \pmb B } ^ { ( 1 ) } { \pmb x } )$ such that with probability $( 1 - \delta ^ { \prime } )$ there exists a subnetwork $\tilde { \pmb g } ( \pmb x )$ of $\pmb { g } ( \pmb { x } )$ s.t. $\| \tilde { \pmb g } ( \pmb x ) - \sigma ( \pmb W \pmb x ) \| \le \varepsilon ^ { \prime }$ , for any $\bar { \varepsilon } ^ { \prime } > 0$ and $\delta ^ { \prime } \in ( 0 , 1 )$ . This process is carried out in detail in Lemmas 1, 2, and 3 in Appendix B. We have now approximated a single layer FC real-valued network using a subnetwork of a two-layer FC binary network. Hence, we can take $\ell ^ { \prime } = 2 \ell$ and Lemma 3 provides lower bounds on the width of each intermediate layer such that with probability $( 1 - \delta )$ there exists a subnetwork $\tilde { G } ( { \pmb x } )$ of $G ( \pmb { x } )$ satisfying $\| { \tilde { G } } ( { \pmb x } ) - F ( { \pmb x } ) \| \leq \varepsilon .$ . This is accomplished in Theorem 2 in Appendix B. □
48
+
49
+ To the best of our knowledge this is the first theoretical result proving that a sparse binary-weight DNN that can approximate a real-valued target DNN. As it has been established that real-valued DNNs are universal approximators (Scarselli & Tsoi, 1998), our result carries the implication that sparse binary-weight DNNs are also universal approximators. In relation to the first result establishing the existence of real-valued subnetworks in a randomly weighted DNN approximating a realvalued target DNN (Malach et al., 2020), the lower bound on the width established in Theorem 2 is better than their lower bound of $O \left( \ell ^ { 2 } n ^ { 2 } \log ( \ell n / \delta ) / \varepsilon ^ { 2 } \right)$ .
50
+
51
+ # 2.2 FINDING MULTI-PRIZE WINNING TICKETS
52
+
53
+ Given the existence of multi-prize winning tickets from Theorem 2, a natural question arises – How should we find them? In this section, we answer this question by introducing an algorithm for finding multi-prize tickets.2 Specifically, we explore two variants of multi-prize tickets in this paper – 1) MPT-1/32 where weights are quantized to 1-bit with activations being real valued (i.e., 32-bits) and 2) MPT-1/1 where both weights and activations are quantized to 1-bit. We first outline a generic process for identifying MPTs along with some theoretical motivation for our approach.
54
+
55
+ Given a neural network $g ( \pmb { x } ; \pmb { W } )$ with weights $W \in \mathbb { R } ^ { m }$ , we can express a subnetwork of $g$ using a binary mask $M \in \{ 0 , 1 \} ^ { m }$ as ${ \overset { \cdot } { g } } ( { \pmb x } ; M \odot { \pmb W } )$ , where $\odot$ denotes the Hadamard product. Hence, a binary subnetwork can be expressed as $g ( { \pmb x } ; M \odot B )$ , where $B \in \{ - 1 , + 1 \} ^ { m }$ . Lemma 1 in Appendix B indicates that rescaling the binary weights to $\{ - \alpha , \alpha \}$ using a gain term $\alpha \in \mathbb { R }$ is necessary to achieve good performance of the resulting subnetwork. We note that the use of gain terms is common in binary neural networks (Qin et al., 2020a; Martinez et al., 2020; Bulat & Tzimiropoulos, 2019). Combining all this allows us to represent a binary subnetwork as $g ( { \pmb x } ; \alpha ( M \odot { \pmb B } ) )$ .
56
+
57
+ Now we focus on how to update $M , B$ , and $\alpha$ . Suppose $f ( x ; W ^ { * } )$ is a target network with optimized weights $W ^ { * }$ that we wish to approximate. Assuming ${ \dot { g } } ( { \pmb x } ; { \cdot } )$ is $\kappa$ -Lipschitz continuous yields
58
+
59
+ $$
60
+ \underbrace { \| g \left( x ; \alpha ( M \odot B ) \right) - f ( x ; W ^ { * } ) \| } _ { \mathrm { M p r e r o r } } \leq \kappa \underbrace { \| M \odot ( W - \alpha B ) \| } _ { \mathrm { B i n a r i z a t o n e r o r } } + \underbrace { \| g ( x ; M \odot W ) - f ( x ; W ^ { * } ) \| } _ { \mathrm { S u b n e t w o t k e r o r } } .
61
+ $$
62
+
63
+ Hence, the MPT error is bounded above by the error of the subnetwork of $g$ with the original weights and the error from binarizing the current subnetwork. This informs our approach for identifying MPTs: 1) Update a pruning mask $M$ that reduces the subnetwork error (lines $7 - 9$ in Algorithm 1), and 2) apply binarization with a gain term that minimizes the binarization error (lines 4 and 10).
64
+
65
+ We first discuss how to update $M$ . While we could search for $M$ by minimizing the subnetwork error in (1), this would require the use of a pretrained target network (i.e., $f ( \pmb { x } ; \pmb { W } ^ { * } ) )$ . To avoid requiring a target network in our method we instead aim to minimize the training loss w.r.t. $M$ in the current binary subnetwork. Directly optimizing over the pruning mask is a combinatorial problem. So to update the pruning mask efficiently we optimize over a set of scores $\pmb { S } \in \mathbb { R } ^ { m }$ corresponding to each randomly initialized weight in the network. In this approach, each component of the randomly initialized weights is assigned a pruning score. The pruning scores are updated via backpropagation by computing the gradient of the loss function over minibatches with respect to the pruning scores (line 7). Then the magnitude of the scores in absolute value are used to identify the $P$ percent of weights in each layer that are least important to the success of the binary subnetwork (line 8). The components of the pruning mask corresponding to these indices are set to 0 and the remaining components are set to 1 (line 9). To avoid unintentionally pruning an entire layer of the network, we use a pruning mask for each layer that prunes $P$ percent of the weights in that layer. The choice to use pruning scores to update the mask $M$ was due to the fact that it is computationally efficient. The use of pruning scores is a well-established optimization technique used in a range of applications (Joshi & Boyd, 2009; Ramanujan et al., 2020).
66
+
67
+ Algorithm 1 biprop: Finding multi-prize tickets in a randomly weighted neural network
68
+ 1: Input: Neural network $g ( { \pmb x } ; \cdot )$ with $1 \mathrm { - }$ or 32-bit activations; Network depth $\ell$ ; Layer widths
69
+ $\{ k _ { j } \} _ { j = 1 } ^ { \ell }$ ; Loss function $L$ ; Training data $\{ ( \pmb { x } ^ { ( i ) } , \pmb { y } ^ { ( i ) } ) \} _ { i = 1 } ^ { N }$ ; Pruning percentage $P$ .
70
+ 2: Randomly Initialize FP Parameters: Network weights $\{ W ^ { ( j ) } \} _ { j = 1 } ^ { \ell }$ ; Pruning scores $\{ S ^ { ( j ) } \} _ { j = 1 } ^ { \ell }$ .
71
+ 3: Initialize Layerwise Pruning Masks: $\{ M ^ { ( j ) } \} _ { j = 1 } ^ { \ell }$ each to 1.
72
+ 4: Initialize Binary Subnetwork Weights: $\{ B ^ { ( j ) } \} _ { j = 1 } ^ { \ell } \{ \mathrm { s i g n } ( W ^ { ( j ) } ) \} _ { j = 1 } ^ { \ell }$ .
73
+ 5: Initialize Layerwise Gain Terms: $\begin{array} { r } { \{ \alpha ^ { ( j ) } \} _ { j = 1 } ^ { \ell } \{ \| M ^ { ( j ) } \odot W ^ { ( j ) } \| _ { 1 } / \| M ^ { ( j ) } \| _ { 1 } \} _ { j = 1 } ^ { \ell } . } \end{array}$ .
74
+ 6: for $k = 1$ to $N _ { e p o c h s }$ do
75
+ 7: $S ^ { ( j ) } \gets S ^ { ( j ) } - \eta \nabla _ { S ^ { ( j ) } } L \big ( \{ \alpha ^ { ( j ) } ( M ^ { ( j ) } \odot B ^ { ( j ) } ) \} _ { j = 1 } ^ { \ell } \big )$ Update pruning scores at layer $j$
76
+ 8: $\{ \tau ( i ) \} _ { i = 1 } ^ { k _ { j } } \gets$ Sorting of indices $\{ i \} _ { i = 1 } ^ { k _ { j } }$ s.t. $| S _ { \tau ( i ) } ^ { ( j ) } | \le | S _ { \tau ( i + 1 ) } ^ { ( j ) } |$ Index sort over values $| S ^ { ( j ) } |$
77
+ 9: $M _ { i } ^ { ( j ) } \gets \mathbb { 1 } _ { \{ \tau ( i ) \geq \lceil k _ { j } P / 1 0 0 \rceil \} } ( i )$ Update pruning mask at layer $j$
78
+ 10: $\alpha ^ { ( j ) } \Vert M ^ { ( j ) } \odot W ^ { ( j ) } \Vert _ { 1 } / \Vert M ^ { ( j ) } \Vert _ { 1 }$ Update gain term at layer $j$
79
+ 11: Output: Return Binarized Subnetwork $g ( \pmb { x } ; \{ \alpha ^ { ( j ) } ( \pmb { M } ^ { ( j ) } \odot \pmb { B } ^ { ( j ) } ) \} _ { j = 1 } ^ { \ell } )$ .
80
+
81
+ We now consider how to update $\textbf { { B } }$ and $\alpha$ . By keeping $M$ fixed, we can derive the following closed form expressions that minimize the binarization error in (1): $B ^ { * } = \mathrm { s i g n } ( W )$ and $\alpha ^ { * } =$ $\| M \odot W \| _ { 1 } / \| M \| _ { 1 }$ . These closed form expressions indicate that only the gain term needs to be recomputed after each update to $M$ . Hence, $B = \mathrm { s i g n } ( W )$ throughout our entire approach (line 4). We update a gain term for each layer of the subnetwork in our approach based on the formula for $\alpha ^ { * }$ (line 10). More details on the derivation of $B ^ { * }$ and $\alpha ^ { * }$ are provided in Appendix C.
82
+
83
+ Pseudocode for our method biprop (binarize-prune optimizer) is provided in Algorithm 1 and crossentropy loss is used in our experiments. Note that the process for identifying MPT-1/32 and MPT-1/1 differs only in computation of the gradient. Next, we explain how these gradients can be computed.
84
+
85
+ 2.2.1 UPDATING PRUNING SCORES FOR BINARY-WEIGHT TICKETS (MPT-1/32)
86
+
87
+ As an example, for a FC network where the state at each layer is defined recursively by ${ \cal U } ^ { ( 1 ) } \ = \ \alpha ^ { ( 1 ) } ( B ^ { ( 1 ) } \odot M ^ { ( 1 ) } ) x$ and ${ \cal U } ^ { ( j ) } \ : = \ : \alpha ^ { ( j ) } \big ( { \cal B } ^ { ( j ) } \odot { \cal M } ^ { ( j ) } \big ) \sigma \big ( { \cal U } ^ { ( j - 1 ) } \big )$ we have $\begin{array} { r } { \frac { \partial \hat { L ^ { ( j ) } } } { \partial S _ { p , q } ^ { ( j ) } } = } \end{array}$ $\frac { \partial \cal L } { \partial U _ { q } ^ { ( j ) } } \frac { \partial U _ { q } ^ { ( j ) } } { \partial M _ { p , q } ^ { ( j ) } } \frac { \partial M _ { p , q } ^ { ( j ) } } { \partial S _ { p , q } ^ { ( j ) } }$ . We use the straight-through estimator (Bengio et al., 2013) for $\frac { \partial M _ { p , q } ^ { ( j ) } } { \partial S _ { p , q } ^ { ( j ) } }$ which yields $\begin{array} { r } { \frac { \partial L } { \partial S _ { p , q } ^ { ( j ) } } = \frac { \partial L } { \partial U _ { q } ^ { ( j ) } } \alpha ^ { ( j ) } B _ { p , q } ^ { ( j ) } \sigma \left( U _ { p } ^ { ( j - 1 ) } \right) } \end{array}$ , where $\frac { \partial L } { \partial U _ { q } ^ { ( j ) } }$ is computed via backpropagation.
88
+
89
+ # 2.2.2 UPDATING PRUNING SCORES FOR BINARY-ACTIVATION TICKETS (MPT-1/1)
90
+
91
+ Note that MPT-1/1 uses the sign activation function. From Section 2.2.1, it immediately follows that $\begin{array} { r } { \frac { \partial L } { \partial S _ { p , q } ^ { ( j ) } } = \frac { \partial L } { \partial U _ { q } ^ { ( j ) } } \alpha ^ { ( j ) } B _ { p , q } ^ { ( j ) } \ \mathrm { s i g n } \left( U _ { p } ^ { ( j - 1 ) } \right) } \end{array}$ However, updating $\frac { \partial L } { \partial U _ { q } ^ { ( j ) } }$ via backpropagation requires a gradient estimator for the sign activation function. To motivate our choice of estimator note that we can approximate the sign function using a quadratic spline parameterized by some $t > 0$ :
92
+
93
+ $$
94
+ s _ { t } ( x ) = \left\{ \begin{array} { c c c } { - 1 } & { : } & { x < - t } \\ { q _ { 1 } ( x ) } & { : } & { x \in [ - t , 0 ) } \\ { q _ { 2 } ( x ) } & { : } & { x \in [ 0 , t ) } \\ { 1 } & { : } & { x \geq t } \end{array} \right. .
95
+ $$
96
+
97
+ In (2), $q _ { i } ( x ) = a _ { i } x ^ { 2 } + b _ { i } x + c _ { i }$ and suitable values for the coefficients are derived using the following zero- and first-order constraints: $q _ { 1 } ( - t ) = - 1 , q _ { 1 } ( 0 ) = 0 , q _ { 2 } ( 0 ) = 0$ , $q _ { 2 } ( t ) \ \stackrel { - } { = } \ 1$ , $q _ { 1 } ^ { \prime } ( - t ) ~ = ~ 0 , ~ q _ { 1 } ^ { \prime } ( 0 ) ~ = ~ q _ { 2 } ^ { \prime } ( 0 )$ , and $q _ { 2 } ^ { \prime } ( t ) \ = \ 0$ . This yields $q _ { 1 } ( x ) ~ = ~ ( x / t ) ^ { 2 } + 2 ( x / t )$ and $q _ { 2 } ( x ) ~ = ~ - ( x / t ) ^ { 2 } + 2 ( x / t )$ . As $s _ { t } ( x )$ approximates $\mathrm { s i g n } ( x )$ , we can use $s _ { t } ^ { \prime } ( x )$ as our gradient estimator. Since $\begin{array} { r } { q _ { 1 } ^ { \prime } ( x ) \ = \ \frac { 2 } { t } ( 1 + \frac { x } { t } ) } \end{array}$ and $\begin{array} { r } { q _ { 2 } ^ { \prime } ( x ) ~ = ~ \frac { 2 } { t } ( 1 - \frac { x } { t } ) } \end{array}$ it follows that $s _ { t } ^ { \prime } ( x ) \ =$ $\begin{array} { r } { \left[ \frac { 2 } { t } \left( 1 - \frac { | x | } { t } \right) \right] \mathbb { 1 } _ { \{ x \in [ - t , t ] \} } ( x ) } \end{array}$ . The choice to approximate sign using a quadratic spline insteada gradient estimator that can be implemented efficiently in PyTorch as torch.clamp( $^ { 2 \star }$ (1-torch.abs $( \mathrm { x } ) / \mathrm { t } ) / \mathrm { t } , \mathrm { m i n } { = } 0 . 0 )$ ). We note that $\begin{array} { r l } { \operatorname* { l i m } _ { t \to 0 } s _ { t } ( x ) = } \end{array}$ $\mathrm { s i g n } ( x )$ , which suggests that smaller values of $t$ yield more suitable approximations. Our experiments use $s _ { 1 } ^ { \prime } ( x )$ as the gradient estimator since we found it to work well in practice. Finally, we note that taking $t = 1$ in our gradient estimator yields the same value as the gradient estimator in (Liu et al., 2018a), however, our implementation in PyTorch is $6 \times$ more memory efficient.
98
+
99
+ # 3 EXPERIMENTAL RESULTS
100
+
101
+ The primary goal of the experiments in Section 3.1 is to empirically verify our Multi-Prize Lottery Ticket Hypothesis. As a secondary objective, we would like to determine tunable factors that make randomly-initialized networks amenable to containing readily identifiable Multi-Prize Tickets (MPTs). Thus, we test our hypothesis against the general trend of increasing the model size (depth and width) and monitor the accuracy of the identified MPTs. After verifying our Multi-Prize Lottery Ticket Hypothesis, we consider the performance of MPTs compared to state-of-the-arts in binary neural networks and their dense counterparts on CIFAR-10 and ImageNet datasets in Section 3.2. Building upon edge-popup (Ramanujan et al., 2020), we implement Algorithm 1 to identify MPTs.3
102
+
103
+ # 3.1 WHERE CAN WE EXPECT TO FIND MULTI-PRIZE TICKETS?
104
+
105
+ In this section, we empirically test the effect of overparameterization on the performance of MPTs.
106
+ We overparameterize networks by making them (a) deeper (Sec. 3.1.1) and (b) wider (Sec. 3.1.2).
107
+
108
+ ![](images/341865cf4b701935aea67288a65087db658f204ca615ec157c3b2a759fbb061c.jpg)
109
+ Figure 2: Effect of Varying Depth and Pruning Rate: Comparing the Top-1 accuracy of small and binary MPTs to a large, full-precision, and weight-optimized network on CIFAR-10.
110
+
111
+ We use VGG (Simonyan & Zisserman, 2014) variants as our network architectures for searching for MPTs. In each randomly weighted network, we find winning tickets MPT-1/32 and MPT-1/1 for different pruning rates using Algorithm 1. We choose our baselines as dense full-precision models with learned weights. In all experiments, we use three independent initializations and report the average of Top-1 accuracy with with error bars extending to the lowest and highest Top-1 accuracy. Additional experiment configuration details are provided in Appendix A.
112
+
113
+ # 3.1.1 DO WINNING TICKETS EXIST IN DEEP NETWORKS?
114
+
115
+ In this experiment, we empirically test the following hypothesis: As a network grows deeper, the performance of multi-prize tickets in the randomly initialized network will approach the performance of the same network with learned weights. We are further interested in exploring the required network depth for our hypothesis to be true.
116
+
117
+ In Figure 2, we vary the depth of VGG architectures ( $\dot { d } = 2$ to 8) and compare the Top-1 accuracy of MPTs (at different pruning rates) with weight-trained dense network. We notice that there exist a range of pruning rates where the performance of MPTs are very similar, and beyond this range the performance drops quickly. Interestingly, as the network depth increases, more parameters can be pruned without hurting the performance of MPTs. For example, MPT-1/32 can match the performance of trained Conv-8 while having only $\sim 2 0 \%$ of its parameter count. Interestingly, the performance gap between MPT-1/32 and MPT-1/1 does not change much with depth across different pruning rates. We further note that the performance of MPTs improve when increasing the depth and both start to approach the performance of the dense model with learned weights. This gain starts to plateau beyond a certain depth, suggesting that the MPTs might be approaching the limit of their achievable accuracy. Surprisingly, MPT-1/32 performs equally good (or better) than the weight-trained model regardless of having $5 0 - 8 0 \%$ lesser parameters and weights being binarized.
118
+
119
+ ![](images/b344eab1cd1b7353193c60ebc7ab6acd5091b0c3a9879954ced47e1e4090962b.jpg)
120
+ Figure 3: Effect of Varying Width on MPT-1/32: Comparing the Top-1 accuracy of sparse and binary MPT-1/32 to dense, full-precision, and weight-optimized network on CIFAR-10.
121
+
122
+ # 3.1.2 DO WINNING TICKETS EXIST IN WIDE NETWORKS?
123
+
124
+ ![](images/aa982870a628a7f2a08d4d8c829db951831b0a58f653ebf4b0d53ad5ab73a45f.jpg)
125
+ Figure 4: Effect of Varying Width on MPT-1/1: Comparing the Top-1 accuracy of sparse and binary MPT-1/1 to dense, full-precision, and weight-optimized network on CIFAR-10.
126
+
127
+ Similar to the previous experiment, in this experiment, we empirically test the following hypothesis: As a network grows wider, the performance of multi-prize tickets in the randomly initialized network will approach the performance of the same network with learned weights. We are further interested in exploring the required layer width for our hypothesis to be true.
128
+
129
+ In Figures 3 and 4, we vary the width of different VGG architectures and compare the Top-1 accuracy of MPT-1/32 and MPT-1/1 tickets (at different pruning rates) with weight-trained dense network. A width multiplier of value 1 corresponds to the models in Figure 2. Performance of all the models improves when increasing the width and the performance of both MPT-1/32 and MPT-1/1 start to approach the performance of the dense model with learned weights. Although, this gain starts to plateau beyond a certain width. For both MPT-1/32 and MPT-1/1, as the width and depth increase the performance at different pruning rates approach the same value. This observed phenomenon yields a more significant gain in the performance for MPTs with higher pruning rates. Similar to the previous experiment, the performance of MPT-1/32 matches (or exceeds) the performance of dense models for a large range of pruning rates. Furthermore, in the high width regime, a large number of weights $( \sim 9 0 \%$ ) can be pruned without having a noticeable impact on the performance of MPTs. We also notice that the performance gap between MPT-1/32 and MPT-1/1 decreases significantly with an increase the width which is in sharp contrast with the with the depth experiments where the performance gap between MPT-1/32 and MPT-1/1 appeared to be largely independent of the depth.
130
+
131
+ Key Takeaways. Our experiments verify Multi-Prize Lottery Ticket Hypothesis and additionally convey the significance of choosing appropriate network depth and layer width for a given pruning rate. In particular, we find that a network with a large width can be pruned more aggressively without sacrificing much accuracy, while the accuracy of a network with smaller widths suffers when pruning a large percentage of the weights. Similar patterns hold for the depth of the networks as well. The amount of overparametrization needed to approach the performance of dense networks seems to differ for MPT variants – MPT-1/1 requires higher depth and width compared to MPT-1/32.
132
+
133
+ 3.2 HOW REDUNDANT ARE STATE-OF-THE-ART DEEP NEURAL NETWORKS?
134
+
135
+ Having shown that MPTs can perform equally good (or better) than overparameterized networks, this experiment aims to answer: Are state-of-the-art weight-trained DNNs overparametrized enough that significantly smaller multi-prize tickets can match (or beat) their performance?
136
+
137
+ Experimental Configuration. Instead of focusing on extremely large DNNs, we experiment with small to moderate size DNNs. Specifically, we analyze the redundancy of following backbone models: (1) VGG-Small and ResNet-18 on CIFAR-10, and (2) WideResNet-34 and WideResNet50 on ImageNet. As we will show later that even these models are highly redundant, thus, our finding automatically extends to larger models. In this process, we also perform a comprehensive comparison of the performance of our multi-prize winning tickets with state-of-the-art in binary neural networks (BNNs). Details on the experimental configuration are provided in Appendix A.
138
+
139
+ This experiment uses Algorithm 1 to find MPTs within randomly initialized backbone networks. We compare the Top-1 accuracy and number of non-zero parameters for our MPT-1/32 and MPT1/1 tickets with selected baselines in BNNs (Qin et al., 2020a). Results for CIFAR-10 and ImageNet are shown in Tables 1, 2 and Tables 3, 4, respectively. Next to each MPT method we include the percentage of weights pruned in parentheses. Motivated by (Frankle et al., 2020), we also include models in which the BatchNorm parameters are learned when identifying the random subnetwork using biprop, indicated by $+ \mathrm { B N }$ . A more comprehensive comparison can be found in Appendix D.
140
+
141
+ <table><tr><td>Method</td><td>Model</td><td>Top-1</td><td>Params</td></tr><tr><td>BinaryConnect</td><td>VGG-Small</td><td>91.7</td><td>4.6M</td></tr><tr><td>ProxQuant</td><td>ResNet-56</td><td>92.3</td><td>0.85M</td></tr><tr><td>DSQ</td><td>ResNet-20</td><td>90.2</td><td>0.27M</td></tr><tr><td>IR-Net</td><td>ResNet-20</td><td>90.8</td><td>0.27M</td></tr><tr><td>Full-Precision</td><td>ResNet-18</td><td>93.02</td><td>11.2M</td></tr><tr><td>MPT (80)</td><td>ResNet-18</td><td>94.66</td><td>2.2M</td></tr><tr><td>MPT(80) +BN</td><td>ResNet-18</td><td>94.8</td><td>2.2M</td></tr></table>
142
+
143
+ Table 1: Comparison of MPT-1/32 with trained binary-1/32 networks on CIFAR-10.
144
+
145
+ <table><tr><td>Method</td><td>Model</td><td>Top-1</td><td>Params</td></tr><tr><td>BNN</td><td>VGG-Small</td><td>89.9</td><td>4.6M</td></tr><tr><td>XNOR-Net</td><td>VGG-Small</td><td>89.8</td><td>4.6M</td></tr><tr><td>DSQ</td><td>VGG-Small</td><td>91.7</td><td>4.6M</td></tr><tr><td>IR-Net</td><td>ResNet-18</td><td>91.5</td><td>11.2 M</td></tr><tr><td>Full-Precision</td><td>VGG-Small</td><td>93.6</td><td>4.6M</td></tr><tr><td>MPT (75)</td><td>VGG-Small</td><td>88.52</td><td>1.44 M</td></tr><tr><td>MPT(75) +BN</td><td>VGG-Small</td><td>91.9</td><td>1.44 M</td></tr></table>
146
+
147
+ Table 2: Comparison of MPT-1/1 with trained binary-1/1 networks on CIFAR-10.
148
+
149
+ <table><tr><td>Method</td><td>Model</td><td>Top-1</td><td>Params</td></tr><tr><td>ABC-Net</td><td>ResNet-18</td><td>62.8</td><td>11.2 M</td></tr><tr><td>BWN</td><td>ResNet-18</td><td>60.8</td><td>11.2M</td></tr><tr><td>IR-Net</td><td>ResNet-34</td><td>70.4</td><td>21.8M</td></tr><tr><td>Quant-Net</td><td>ResNet-50</td><td>72.8</td><td>25.6M</td></tr><tr><td>Full-Precision</td><td>ResNet-34</td><td>73.27</td><td>21.8M</td></tr><tr><td>MPT (80)</td><td>WRN-50</td><td>72.67</td><td>13.7M</td></tr><tr><td>MPT(80)+BN</td><td>WRN-50</td><td>74.03</td><td>13.7M</td></tr></table>
150
+
151
+ Table 3: Comparison of MPT-1/32 with trained binary-1/32 networks on ImageNet.
152
+
153
+ <table><tr><td>Method</td><td>Model</td><td>Top-1</td><td>Params</td></tr><tr><td>BNN</td><td>AlexNet</td><td>27.9</td><td>62.3M</td></tr><tr><td>XNOR-Net</td><td>AlexNet</td><td>44.2</td><td>62.3M</td></tr><tr><td>ABC-Net</td><td>ResNet-34</td><td>52.4</td><td>21.8M</td></tr><tr><td>IR-Net</td><td>ResNet-34</td><td>62.9</td><td>21.8M</td></tr><tr><td>Full-Precision</td><td>ResNet-34</td><td>73.27</td><td>21.8M</td></tr><tr><td>MPT (60)</td><td>WRN-34</td><td>45.06</td><td>19.3M</td></tr><tr><td>MPT(60)+BN</td><td>WRN-34</td><td>52.07</td><td>19.3M</td></tr></table>
154
+
155
+ Table 4: Comparison of MPT-1/1 with trained binary-1/1 networks on ImageNet.
156
+
157
+ Our results highlight that SOTA DNN models are extremely redundant. For similar parameter count, our binary MPT-1/32 models outperform even full-precision models with learned weights. When compared to state-of-the-art in BNNs, with minimal hyperparameter tuning our multi-prize tickets achieve comparable (or higher) Top-1 accuracy. Specifically, our MPT-1/32 outperform trained binary weight networks on CIFAR-10 and ImageNet and our MPT-1/1 outperforms trained binary weight and activation networks on CIFAR-10. Further, on CIFAR-10 and ImageNet, MPT-1/32 networks with significantly reduced parameter counts outperform dense and full precision networks with learned weights. Searches for MPT-1/1 in BNN-specific architectures (Kim et al., 2020; Bulat et al., 2020a) and adopting other commonly used tricks to improve model & representation capacities (Bulat et al., 2020b; Yang et al., 2020; Lin et al., 2020; 2021) are likely to yield MPT-1/1 networks with improved performance. For example, up to a $7 \%$ gain in the MPT-1/1 accuracy was achieved by simply allowing BatchNorm parameters to be updated. Additionally, alternative approaches for updating the pruning mask in biprop could alleviate issues with back-propagating gradients through binary activation networks.
158
+
159
+ # 4 DISCUSSION AND IMPLICATIONS
160
+
161
+ Existing compression approaches (e.g., pruning and binarization) typically rely on some form of weight-training. This paper showed that a sufficiently overparametrized randomly weighted network contains binary subnetworks that achieve high accuracy (comparable to dense and full precision original network with learned weights) without any training. We referred to this finding as the Multi-Prize Lottery Ticket Hypothesis. We also proved the existence of such winning tickets and presented a generic procedure to find them. Our comparison with state-of-the-art neural networks corroborated our hypothesis. With minimal hyperparameter tuning, our binary weight multi-prize tickets outperformed current state-of-the-art in BNNs and proved its practical importance. Our work has several important practical and theoretical implications.
162
+
163
+ Algorithmic. Our biprop framework enjoys certain advantages over traditional weightoptimization. First, contemporary experience suggests that sparse BNN training from scratch is challenging. Both sparseness and binarization bring their own challenges for gradient-based weight training – getting stuck at bad local minima in the sparse regime, incompatibility of backpropagation due to discontinuity in activation function, etc. Although we used gradient-based approaches in this paper, biprop is flexible to accommodate different class of algorithms that might avoid the pitfalls of gradient-based weight training. Next, in contrast to weight-optimization that requires large model size and massive compute resources to achieve high performance, our hypothesis suggests that one can achieve similar performance without ever training the large model. Therefore, strategies such as fast ticket search (You et al., 2019) or forward ticket selection (Ye et al., 2020) can be developed to enable more efficient ways of finding–or even designing–MPTs. Finally, as opposed to weight-optimization, biprop by design achieves compact yet accurate models.
164
+
165
+ Theoretical. MPTs achieve similar performance as the model with learned weights. First, this observation notes the benefit of overparameterization in the neural network learning and reinforces the idea that an important task of gradient descent (and learning in general) may be to effectively compress overparametrized models to find multi-prize tickets. Next, our results highlight the expressive power of MPTs – since we showed that compressed subnetworks can approximate any target neural network who are known to be universal approximators, our MPTs are also universal approximators. Finally, the multi-prize lottery ticket hypothesis also uncovers the generalization properties of DNNs. Generalization theory for DL is still in its infancy and its not clear what and how DNNs learn (Neyshabur et al., 2017). Multi-prize lottery ticket hypothesis may serve as a valuable tool for answering such questions as it indicates the dependence of generalization on the compressiblity.
166
+
167
+ Practical. Huge storage and heavy computation requirements of state-of-the-art deep neural networks inevitably limit their applications in practice. Multi-prize tickets are significantly lighter, faster, and efficient while maintaining performance. This unlocks a range of potential applications DL could be applied to (e.g., applications with resource-constrained devices such as mobile phones, embedded devices, etc.). Our results also indicate that existing SOTA models might be spending far more compute and power than is needed to achieve a certain performance. In other words, SOTA DL models have terrible energy efficiency and significant carbon footprint (Strubell et al., 2019). In this regard, MPTs have the potential to enable environmentally friendly artificial intelligence.
168
+
169
+ # REFERENCES
170
+
171
+ Yu Bai, Yu-Xiang Wang, and Edo Liberty. Proxquant: Quantized neural networks via proximal operators. In International Conference on Learning Representations, 2018.
172
+
173
+ Yoshua Bengio, Nicholas Leonard, and Aaron Courville. Estimating or propagating gradients ´ through stochastic neurons for conditional computation. arXiv preprint arXiv:1308.3432, 2013.
174
+
175
+ Adrian Bulat and Georgios Tzimiropoulos. Xnor-ne $^ { + + }$ : Improved binary neural networks. arXiv preprint arXiv:1909.13863, 2019.
176
+
177
+ Adrian Bulat, Brais Martinez, and Georgios Tzimiropoulos. Bats: Binary architecture search. arXiv preprint arXiv:2003.01711, 2020a.
178
+
179
+ Adrian Bulat, Brais Martinez, and Georgios Tzimiropoulos. High-capacity expert binary networks. arXiv preprint arXiv:2010.03558, 2020b.
180
+
181
+ Matthieu Courbariaux, Yoshua Bengio, and Jean-Pierre David. Binaryconnect: Training deep neural networks with binary weights during propagations. In Advances in neural information processing systems, pp. 3123–3131, 2015.
182
+
183
+ Matthieu Courbariaux, Itay Hubara, Daniel Soudry, Ran El-Yaniv, and Yoshua Bengio. Binarized neural networks: Training deep neural networks with weights and activations constrained $\mathrm { t o } + 1$ or-1. arXiv preprint arXiv:1602.02830, 2016.
184
+
185
+ 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.
186
+
187
+ Jonathan Frankle and Michael Carbin. The lottery ticket hypothesis: Finding sparse, trainable neural networks. In International Conference on Learning Representations, 2019. URL https:// openreview.net/forum?id $=$ rJl-b3RcF7.
188
+
189
+ Jonathan Frankle, David J. Schwab, and Ari S. Morcos. Training batchnorm and only batchnorm: On the expressive power of random features in cnns, 2020.
190
+
191
+ Adam Gaier and David Ha. Weight agnostic neural networks. In Advances in Neural Information Processing Systems, pp. 5364–5378, 2019.
192
+
193
+ Ruihao Gong, Xianglong Liu, Shenghu Jiang, Tianxiang Li, Peng Hu, Jiazhen Lin, Fengwei Yu, and Junjie Yan. Differentiable soft quantization: Bridging full-precision and low-bit neural networks. In Proceedings of the IEEE International Conference on Computer Vision, pp. 4852–4861, 2019.
194
+
195
+ Ian Goodfellow, Yoshua Bengio, Aaron Courville, and Yoshua Bengio. Deep learning, volume 1. MIT press Cambridge, 2016.
196
+
197
+ Jiaxin Gu, Ce Li, Baochang Zhang, Jungong Han, Xianbin Cao, Jianzhuang Liu, and David Doermann. Projection convolutional neural networks for 1-bit cnns via discrete back propagation. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, pp. 8344–8351, 2019.
198
+
199
+ Masafumi Hagiwara. Removal of hidden units and weights for back propagation networks. In Proceedings of 1993 International Conference on Neural Networks (IJCNN-93-Nagoya, Japan), volume 1, pp. 351–354. IEEE, 1993.
200
+
201
+ Kai Han, Yunhe Wang, Yixing Xu, Chunjing Xu, Enhua Wu, and Chang Xu. Training binary neural networks through learning with noisy supervision. arXiv preprint arXiv:2010.04871, 2020.
202
+
203
+ Song Han, Huizi Mao, and William J Dally. Deep compression: Compressing deep neural networks with pruning, trained quantization and huffman coding. arXiv preprint arXiv:1510.00149, 2015.
204
+
205
+ Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Delving deep into rectifiers: Surpassing human-level performance on imagenet classification. In Proceedings of the IEEE international conference on computer vision, pp. 1026–1034, 2015.
206
+
207
+ Lu Hou, Quanming Yao, and James T Kwok. Loss-aware binarization of deep networks. arXiv preprint arXiv:1611.01600, 2016.
208
+
209
+ Siddharth Joshi and Stephen Boyd. Sensor selection via convex optimization. Trans. Sig. Proc., 57 (2):451–462, February 2009. ISSN 1053-587X. doi: 10.1109/TSP.2008.2007095. URL https: //doi.org/10.1109/TSP.2008.2007095.
210
+
211
+ Dahyun Kim, Kunal Pratap Singh, and Jonghyun Choi. Learning architectures for binary networks. In European Conference on Computer Vision, pp. 575–591. Springer, 2020.
212
+
213
+ Alex Krizhevsky et al. Learning multiple layers of features from tiny images. 2009.
214
+
215
+ Yann LeCun, John S Denker, and Sara A Solla. Optimal brain damage. In Advances in neural information processing systems, pp. 598–605, 1990.
216
+
217
+ Namhoon Lee, Thalaiyasingam Ajanthan, and Philip HS Torr. Snip: Single-shot network pruning based on connection sensitivity. arXiv preprint arXiv:1810.02340, 2018.
218
+
219
+ Mingbao Lin, Rongrong Ji, Zihan Xu, Baochang Zhang, Yan Wang, Yongjian Wu, Feiyue Huang, and Chia-Wen Lin. Rotated binary neural network. arXiv preprint arXiv:2009.13055, 2020.
220
+
221
+ Mingbao Lin, Rongrong Ji, Zihan Xu, Baochang Zhang, Fei Chao, Mingliang Xu, ChiaWen Lin, and Ling Shao. Siman: Sign-to-magnitude network binarization. arXiv preprint arXiv:2102.07981, 2021.
222
+
223
+ Xiaofan Lin, Cong Zhao, and Wei Pan. Towards accurate binary convolutional neural network. In Advances in Neural Information Processing Systems, pp. 345–353, 2017.
224
+
225
+ Zechun Liu, Baoyuan Wu, Wenhan Luo, Xin Yang, Wei Liu, and Kwang-Ting Cheng. Bi-real net: Enhancing the performance of 1-bit cnns with improved representational capability and advanced training algorithm. In Proceedings of the European conference on computer vision (ECCV), pp. 722–737, 2018a.
226
+
227
+ Zhuang Liu, Mingjie Sun, Tinghui Zhou, Gao Huang, and Trevor Darrell. Rethinking the value of network pruning. arXiv preprint arXiv:1810.05270, 2018b.
228
+
229
+ Eran Malach, Gilad Yehudai, Shai Shalev-Shwartz, and Ohad Shamir. Proving the lottery ticket hypothesis: Pruning is all you need. arXiv preprint arXiv:2002.00585, 2020.
230
+
231
+ Brais Martinez, Jing Yang, Adrian Bulat, and Georgios Tzimiropoulos. Training binary neural networks with real-to-binary convolutions. arXiv preprint arXiv:2003.11535, 2020.
232
+
233
+ James O’ Neill. An overview of neural network compression. arXiv preprint arXiv:2006.03669, 2020.
234
+
235
+ Behnam Neyshabur, Srinadh Bhojanapalli, David McAllester, and Nati Srebro. Exploring generalization in deep learning. In Advances in neural information processing systems, pp. 5947–5956, 2017.
236
+
237
+ Laurent Orseau, Marcus Hutter, and Omar Rivasplata. Logarithmic pruning is all you need. Advances in Neural Information Processing Systems, 33, 2020.
238
+
239
+ Ankit Pensia, Shashank Rajput, Alliot Nagle, Harit Vishwakarma, and Dimitris Papailiopoulos. Optimal lottery tickets via subsetsum: Logarithmic over-parameterization is sufficient, 2020.
240
+
241
+ Haotong Qin, Ruihao Gong, Xianglong Liu, Xiao Bai, Jingkuan Song, and Nicu Sebe. Binary neural networks: A survey. Pattern Recognition, pp. 107281, 2020a.
242
+
243
+ Haotong Qin, Ruihao Gong, Xianglong Liu, Mingzhu Shen, Ziran Wei, Fengwei Yu, and Jingkuan Song. Forward and backward information retention for accurate binary neural networks. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 2250– 2259, 2020b.
244
+
245
+ Vivek Ramanujan, Mitchell Wortsman, Aniruddha Kembhavi, Ali Farhadi, and Mohammad Rastegari. What’s hidden in a randomly weighted neural network? In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 11893–11902, 2020.
246
+
247
+ Mohammad Rastegari, Vicente Ordonez, Joseph Redmon, and Ali Farhadi. Xnor-net: Imagenet classification using binary convolutional neural networks. In European conference on computer vision, pp. 525–542. Springer, 2016.
248
+
249
+ Franco Scarselli and Ah Chung Tsoi. Universal approximation using feedforward neural networks: A survey of some existing methods, and some new results. Neural Netw., 11(1):15–37, January 1998. ISSN 0893-6080. doi: 10.1016/S0893-6080(97)00097-X. URL https://doi.org/ 10.1016/S0893-6080(97)00097-X.
250
+
251
+ Mingzhu Shen, Xianglong Liu, Ruihao Gong, and Kai Han. Balanced binary neural networks with gated residual. In ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pp. 4197–4201. IEEE, 2020.
252
+
253
+ Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv 1409.1556, 09 2014.
254
+
255
+ Emma Strubell, Ananya Ganesh, and Andrew McCallum. Energy and policy considerations for deep learning in nlp. arXiv preprint arXiv:1906.02243, 2019.
256
+
257
+ Chaoqi Wang, Guodong Zhang, and Roger Grosse. Picking winning tickets before training by preserving gradient flow. arXiv preprint arXiv:2002.07376, 2020a.
258
+
259
+ Yulong Wang, Xiaolu Zhang, Lingxi Xie, Jun Zhou, Hang Su, Bo Zhang, and Xiaolin Hu. Pruning from scratch. In AAAI, pp. 12273–12280, 2020b.
260
+
261
+ Andreas S Weigend, David E Rumelhart, and Bernardo A Huberman. Generalization by weightelimination with application to forecasting. In Advances in neural information processing systems, pp. 875–882, 1991.
262
+
263
+ Mitchell Wortsman, Ali Farhadi, and Mohammad Rastegari. Discovering neural wirings. In Advances in Neural Information Processing Systems, pp. 2684–2694, 2019.
264
+
265
+ Saining Xie, Alexander Kirillov, Ross Girshick, and Kaiming He. Exploring randomly wired neural networks for image recognition. In Proceedings of the IEEE International Conference on Computer Vision, pp. 1284–1293, 2019.
266
+
267
+ Zhaohui Yang, Yunhe Wang, Kai Han, Chunjing Xu, Chao Xu, Dacheng Tao, and Chang Xu. Searching for low-bit weights in quantized neural networks. arXiv preprint arXiv:2009.08695, 2020.
268
+
269
+ Mao Ye, Chengyue Gong, Lizhen Nie, Denny Zhou, Adam Klivans, and Qiang Liu. Good subnetworks provably exist: Pruning via greedy forward selection. arXiv preprint arXiv:2003.01794, 2020.
270
+
271
+ Haoran You, Chaojian Li, Pengfei Xu, Yonggan Fu, Yue Wang, Xiaohan Chen, Richard G Baraniuk, Zhangyang Wang, and Yingyan Lin. Drawing early-bird tickets: Towards more efficient training of deep networks. arXiv preprint arXiv:1909.11957, 2019.
272
+
273
+ Dongqing Zhang, Jiaolong Yang, Dongqiangzi Ye, and Gang Hua. Lq-nets: Learned quantization for highly accurate and compact deep neural networks. In Proceedings of the European conference on computer vision (ECCV), pp. 365–382, 2018.
274
+
275
+ Aojun Zhou, Anbang Yao, Yiwen Guo, Lin Xu, and Yurong Chen. Incremental network quantization: Towards lossless cnns with low-precision weights. arXiv preprint arXiv:1702.03044, 2017.
276
+
277
+ Hattie Zhou, Janice Lan, Rosanne Liu, and Jason Yosinski. Deconstructing lottery tickets: Zeros, signs, and the supermask. In Advances in Neural Information Processing Systems, pp. 3597–3607, 2019.
278
+
279
+ Shuchang Zhou, Yuxin Wu, Zekun Ni, Xinyu Zhou, He Wen, and Yuheng Zou. Dorefa-net: Training low bitwidth convolutional neural networks with low bitwidth gradients. arXiv preprint arXiv:1606.06160, 2016.
280
+
281
+ # ACKNOWLEDGEMENTS
282
+
283
+ The authors would like to thank Shreya Chaganti for her valuable contributions to the biprop open source code development and for her help on training MPT models for the final version of the paper.
284
+
285
+ This work was performed under the auspices of the U.S. Department of Energy by the Lawrence Livermore National Laboratory under Contract No. DE-AC52-07NA27344, Lawrence Livermore National Security, LLC. This document was prepared as an account of the work sponsored by an agency of the United States Government. Neither the United States Government nor Lawrence Livermore National Security, LLC, nor any of their employees makes any warranty, expressed or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately owned rights. Reference herein to any specific commercial product, process, or service by trade name, trademark, manufacturer, or otherwise does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or Lawrence Livermore National Security, LLC. The views and opinions of the authors expressed herein do not necessarily state or reflect those of the United States Government or Lawrence Livermore National Security, LLC, and shall not be used for advertising or product endorsement purposes. This work was supported by LLNL Laboratory Directed Research and Development project 20-ER-014 and released with LLNL tracking number LLNL-CONF-815432.
286
+
287
+ # A HYPERPARAMETER CONFIGURATIONS
288
+
289
+ # A.1 HYPERPARAMETERS FOR SECTION 3.1
290
+
291
+ Experimental Configuration. For MPT-1/32 tickets, the network structure is not modified from the original. For MPT-1/1 tickets, the network structure is modified by moving the max-pooling layer directly after the convolution layer and adding a batch-normalization layer before the binary activation function, as is common in many BNN architectures (Rastegari et al., 2016). We choose our baselines as dense full precision models with learned weights. The baselines were obtained by training backbone networks using the Adam optimizer with learning rate of 0.0003 for 100 epochs and with a batch size of 60. In each randomly weighted backbone network, we find winning tickets MPT1/32 and MPT-1/1 for different pruning rates using Algorithm 1. For both the weight-optimized and MPT networks, the weights are initialized using the Kaiming Normal distribution (He et al., 2015). All training routines make use of a cosine decay learning rate policy.
292
+
293
+ Table 5: Hyperparameter Configurations for CIFAR-10 Experiments
294
+
295
+ <table><tr><td>Method</td><td>Model</td><td>Optimizer</td><td>LR</td><td>Momentum</td><td>Weight Decay</td><td>Batch</td><td>Epochs</td></tr><tr><td>MPT-1/32</td><td>Conv2/4/6/8</td><td>SGD</td><td>0.1</td><td>0.9</td><td>1e-4</td><td>128</td><td>250</td></tr><tr><td>MPT-1/1</td><td>Conv2/4/6/8</td><td>Adam</td><td>0.1</td><td></td><td>1e-4</td><td>128</td><td>250</td></tr></table>
296
+
297
+ # A.2 HYPERPARAMETERS FOR SECTION 3.2
298
+
299
+ In these experiments, the weights are initialized using the Kaiming Normal distribution (He et al., 2015) for all the models except for MPT-1/32 on ImageNet where we use the Signed Constant initialization (Ramanujan et al., 2020) as it yielded slightly better performance. All training routines make use of a cosine decay learning rate policy. For ImageNet training we used a label smoothing value of 0.1 and a learning rate warmup length of 5 epochs.
300
+
301
+ Table 6: Hyperparameter Configurations for CIFAR-10 Experiments
302
+
303
+ <table><tr><td>Method</td><td>Model</td><td>Opt.</td><td>LR</td><td>Momentum</td><td>Weight Decay</td><td>Batch</td><td>Epochs</td></tr><tr><td>MPT-1/32</td><td>ResNet-18</td><td>SGD</td><td>0.1</td><td>0.9</td><td>5e-4</td><td>256</td><td>250</td></tr><tr><td>MPT-1/32+BN</td><td>ResNet-18</td><td>SGD</td><td>0.1</td><td>0.9</td><td>5e-4</td><td>256</td><td>250</td></tr><tr><td>MPT-1/1</td><td>VGG-Small</td><td>Adam</td><td>3.63e-3</td><td>=</td><td>17.335</td><td>128</td><td>600</td></tr><tr><td>MPT-1/1+BN</td><td>VGG-Small</td><td>Adam</td><td>3.63e-3</td><td>1</td><td>1e-4</td><td>128</td><td>600</td></tr></table>
304
+
305
+ Table 7: Hyperparameter Configurations for ImageNet Experiments
306
+
307
+ <table><tr><td>Method</td><td>Model</td><td>Optimizer</td><td>LR</td><td>Momentum</td><td>Weight Decay</td><td>Batch</td><td>Epochs</td></tr><tr><td>MPT-1/32</td><td>WRN-50</td><td>SGD</td><td>0.256</td><td>0.875</td><td>3.051757812e-5</td><td>256</td><td>120</td></tr><tr><td>MPT-1/32+BN</td><td>WRN-50</td><td>SGD</td><td>0.256</td><td>0.875</td><td>3.051757812e-5</td><td>256</td><td>120</td></tr><tr><td>MPT-1/1</td><td>WRN-34</td><td>Adam</td><td>2.56e-4</td><td></td><td>3.051757812e-5</td><td>256</td><td>250</td></tr><tr><td>MPT-1/1 +BN</td><td>WRN-34</td><td>Adam</td><td>2.56e-4</td><td></td><td>3.051757812e-5</td><td>256</td><td>250</td></tr></table>
308
+
309
+ # B EXISTENCE OF BINARY-WEIGHT SUBNETWORK APPROXIMATING TARGET NETWORK
310
+
311
+ In the following analysis, note that we write $B i n ( \{ - 1 , + 1 \} ^ { m \times n } )$ to denote matrices of dimension $m \times n$ whose components are independently sampled from a binomial distribution with elements $\{ - 1 , + 1 \}$ and probability $p = 1 / 2$ .
312
+
313
+ Lemma 1. Let $s \in [ d ]$ , $\alpha \in \left[ - \frac { 1 } { \sqrt { s } } , \frac { 1 } { \sqrt { s } } \right]$ , $i \in [ d ]$ , and $\varepsilon , \delta \geq 0$ be given. Let $B \in \{ - 1 , + 1 \} ^ { k \times d }$ be chosen randomly from $B i n ( \{ - 1 , 1 \} ^ { k \times d } )$ and $\textbf { \em u } \in \{ - 1 , + 1 \} ^ { k }$ be chosen randomly from
314
+
315
+ $B i n ( \{ - 1 , + 1 \} ^ { k } )$ . If
316
+
317
+ $$
318
+ k \geq \frac { 1 6 } { \varepsilon \sqrt { s } } + 1 6 \log \left( \frac { 2 } { \delta } \right) ,
319
+ $$
320
+
321
+ then with probability at least $1 - \delta$ there exist masks $\tilde { m } \in \{ 0 , 1 \} ^ { k }$ and $M \in \{ 0 , 1 \} ^ { k \times d }$ such that the function $g : \mathbb { R } ^ { d } \overset { \cdot } { } \mathbb { R }$ defined by
322
+
323
+ $$
324
+ g ( \pmb { x } ) = ( \tilde { \pmb { m } } \odot \pmb { u } ) ^ { \top } \sigma \left( \varepsilon ( \pmb { M } \odot \pmb { B } ) \pmb { x } \right) ,
325
+ $$
326
+
327
+ satisfies
328
+
329
+ $$
330
+ | g ( \pmb { x } ) - \alpha x _ { i } | \leq \varepsilon ,
331
+ $$
332
+
333
+ for all $\| \pmb { x } \| _ { \infty } \leq 1$ . Furthermore, $\begin{array} { r } { \| \tilde { \pmb { m } } \| _ { 0 } = \| \pmb { M } \| _ { 0 } \le \frac { 2 } { \varepsilon \sqrt { s } } } \end{array}$ , and $\begin{array} { r } { \operatorname* { m a x } _ { 1 \leq j \leq k } \| M _ { j , : } \| _ { 0 } \leq 1 . } \end{array}$
334
+
335
+ Proof. If $| \alpha | \le \varepsilon$ then taking $M = \mathbf { 0 }$ yields the desired result. Suppose that $| \alpha | > \varepsilon$ . Then there exists a $c _ { i } \in \mathbb { N }$ such that
336
+
337
+ $$
338
+ c _ { i } \varepsilon \leq | \alpha | \leq ( c _ { i } + 1 ) \varepsilon \quad { \mathrm { a n d } } \quad | c _ { i } \varepsilon - | \alpha | | \leq \varepsilon .
339
+ $$
340
+
341
+ Hence, it follows that
342
+
343
+ $$
344
+ | c _ { i } \varepsilon \mathrm { s i g n } ( \alpha ) x _ { i } - \alpha x _ { i } | = | x _ { i } | | c _ { i } \varepsilon - | \alpha | | \leq \varepsilon ,
345
+ $$
346
+
347
+ where the final inequality follows from (6) and the hypothesis that $\| { \pmb x } \| _ { \infty } \le 1$ . Our goal now is to show that with probability $1 - \delta$ the random initialization of $\textbf { \em u }$ and $\textbf { { B } }$ yield masks $\tilde { m }$ and $M$ such that $\begin{array} { r } { g ( \pmb { x } ) = c _ { i } \bar { \varepsilon } \mathrm { s i g n } ( \alpha ) x _ { i } } \end{array}$ .
348
+
349
+ Now fix $i \in [ d ]$ and take $\begin{array} { r } { k ^ { \prime } = \frac { k } { 2 } } \end{array}$ . First, we consider the probability
350
+
351
+ $$
352
+ P \left( | \{ j \in [ k ^ { \prime } ] : u _ { j } = + 1 \mathrm { ~ a n d ~ } B _ { j , i } = \operatorname { s i g n } ( \alpha ) \} | < c _ { i } \right) .
353
+ $$
354
+
355
+ As $\textbf { \em u }$ and $B _ { : , i }$ are each sampled from a binomial distribution with $k ^ { \prime }$ trials, the distribution that the pair $( u _ { j } , B _ { j , i } )$ is sampled from is a multinomial distribution with four possible events each having a probability of $1 / 4$ . Since we are only interested in the event $( u _ { j } , B _ { j , i } ) = ( + 1 , \mathrm { s i g n } ( \alpha ) )$ occurring, we can instead consider a binomial distribution where $P ( ( u _ { j } , B _ { j , i } ) \ = \ ( + 1 , \mathrm { s i g n } ( \alpha ) ) \ = \ { \textstyle { \frac { 1 } { 4 } } }$ and $P ( ( u _ { j } , B _ { j , i } ) \neq ( + 1 , \mathrm { s i g n } ( \alpha ) ) = \frac { 3 } { 4 }$ . Hence, using Hoeffding’s inequality we have that
356
+
357
+ $$
358
+ \begin{array} { r l r } & { } & { P \left( | \{ j \in [ k ^ { \prime } ] : u _ { j } = + 1 \mathrm { ~ a n d ~ } B _ { j , i } = \mathrm { s i g n } ( \alpha ) \} | < c _ { i } \right) \leq \exp \left( - 2 k ^ { \prime } \left( \frac { 1 } { 4 } - \frac { c _ { i } } { k ^ { \prime } } \right) ^ { 2 } \right) } \\ & { } & { = \exp \left( - \displaystyle \frac { 1 } { 8 } k ^ { \prime } + c _ { i } - 2 \frac { c _ { i } ^ { 2 } } { k ^ { \prime } } \right) } \\ & { } & { < \exp \left( - \displaystyle \frac { 1 } { 8 } k ^ { \prime } + 2 c _ { i } \right) , } \end{array}
359
+ $$
360
+
361
+ where the final inequality follows since $\exp ( )$ is an increasing function and $- 2 \frac { c _ { i } ^ { 2 } } { k ^ { \prime } } < 0$ . From (6) and the fact that $\begin{array} { r } { | \alpha | \le \frac { 1 } { \sqrt { s } } } \end{array}$ , it follows that
362
+
363
+ $$
364
+ c _ { i } \leq { \frac { 1 } { \varepsilon { \sqrt { s } } } } .
365
+ $$
366
+
367
+ Combining our hypothesis in (3) with (12) yields that
368
+
369
+ $$
370
+ - \frac { 1 } { 8 } k ^ { \prime } + c _ { i } = - \frac { 1 } { 1 6 } k + c _ { i } \le - \frac { 1 } { 1 6 } \left( \frac { 1 6 } { \varepsilon \sqrt { s } } + 1 6 \log \left( \frac { 2 } { \delta } \right) \right) + \frac { 1 } { \varepsilon \sqrt { s } } = \log \left( \frac { \delta } { 2 } \right) .
371
+ $$
372
+
373
+ Substituting (13) into (11) yields
374
+
375
+ $$
376
+ P \left( | \{ j \in [ k ^ { \prime } ] : u _ { j } = + 1 \mathrm { ~ a n d ~ } B _ { j , i } = \mathrm { s i g n } ( \alpha ) \} | < c _ { i } \right) < \frac { \delta } { 2 } .
377
+ $$
378
+
379
+ Additionally, it follows from the same argument that
380
+
381
+ $$
382
+ P \left( | \{ k ^ { \prime } < j \leq k : u _ { j } = - 1 \mathrm { ~ a n d ~ } B _ { j , i } = - \mathrm { s i g n } ( \alpha ) \} | < c _ { i } \right) < \frac { \delta } { 2 } .
383
+ $$
384
+
385
+ From (14) and (15) it follows with probability at least $1 - \delta$ that there exist sets $S _ { + } ~ : = ~ \{ j ~ :$ $u _ { j } ~ = ~ + 1$ and $B _ { j , i } = \mathrm { s i g n } ( \alpha ) \}$ and $S _ { - } ~ : = ~ \{ j ~ : ~ u _ { j } = - 1$ and $B _ { j , i } = - \mathrm { s i g n } ( \alpha ) \}$ satisfying $| \bar { S } _ { + } | = | S _ { - } | = \bar { c _ { i } }$ and $S _ { + } \cap S _ { - } = \emptyset$ . Using these sets, we define the components of the mask $\tilde { m }$ and $M$ by
386
+
387
+ $$
388
+ \tilde { m } _ { j } = \left\{ \begin{array} { l l } { 1 } & { : \quad j \in S _ { + } \cup S _ { - } } \\ { 0 } & { : \quad \mathrm { o t h e r w i s e } } \end{array} \right.
389
+ $$
390
+
391
+ and
392
+
393
+ $$
394
+ M _ { j , \ell } = \left\{ \begin{array} { l l l } { 1 } & { : } & { j \in S _ { + } \cup S _ { - } \mathrm { ~ a n d ~ } \ell = i } \\ { 0 } & { : } & { \mathrm { o t h e r w i s e } } \end{array} \right. .
395
+ $$
396
+
397
+ Using the definition of $g ( { \pmb x } )$ in (4) we now have that
398
+
399
+ $$
400
+ \begin{array} { l } { { g ( { \pmb x } ) = \displaystyle \sum _ { i \in S _ { + } } \sigma \left( \varepsilon \mathrm { s i g n } ( \alpha ) x _ { i } \right) - \sum _ { i \in S _ { - } } \sigma \left( - \varepsilon \mathrm { s i g n } ( \alpha ) x _ { i } \right) } } \\ { { \nonumber = c _ { i } \sigma \left( \varepsilon \mathrm { s i g n } ( \alpha ) x _ { i } \right) - c _ { i } \sigma \left( - \varepsilon \mathrm { s i g n } ( \alpha ) x _ { i } \right) } } \\ { { \qquad = c _ { i } \varepsilon \mathrm { s i g n } ( \alpha ) x _ { i } , } } \end{array}
401
+ $$
402
+
403
+ where the final equality follows from the identity $\sigma ( a ) - \sigma ( - a ) = a$ , for all $a \in \mathbb { R }$ . This concludes the proof of (5).
404
+
405
+ Lastly, by our choice of $\tilde { m }$ in (16), $M$ in (17), and (12), it follows that
406
+
407
+ $$
408
+ \| \tilde { \pmb { m } } \| _ { 0 } = \| \pmb { M } \| _ { 0 } = 2 c _ { i } \leq \frac { 2 } { \varepsilon \sqrt { s } } ,
409
+ $$
410
+
411
+ and
412
+
413
+ $$
414
+ \operatorname* { m a x } _ { 1 \leq j \leq k } \| M _ { j , : } \| _ { 0 } \leq 1 ,
415
+ $$
416
+
417
+ which concludes the proof.
418
+
419
+ The next step is to consider an analogue for Lemma A.2 from (Malach et al., 2020) which we provide in Lemma 2.
420
+
421
+ Lemma 2. Let $s \in [ d ]$ , $\pmb { w } ^ { * } \in \left[ - \frac { 1 } { \sqrt { s } } , \frac { 1 } { \sqrt { s } } \right] ^ { d }$ with $\| \pmb { w } ^ { * } \| _ { 0 } \leq s$ , and $\varepsilon , \delta > 0$ be given. Let $\textbf { \textit { B } } \in$ $\{ - 1 , + 1 \} ^ { k \times d }$ be chosen randomly from $\bar { B i n } ( \{ - 1 , 1 \} ^ { k \times d } )$ and $\pmb { u } \in \{ - 1 , + 1 \} ^ { k }$ be chosen randomly from $B i \bar { n } ( \{ - 1 , + 1 \} ^ { k } )$ . If
422
+
423
+ $$
424
+ k \geq s \cdot \left\lceil \frac { 1 6 \sqrt { s } } { \varepsilon } + 1 6 \log \left( \frac { 2 s } { \delta } \right) \right\rceil ,
425
+ $$
426
+
427
+ then with probability at least $1 - \delta$ there exist masks $\tilde { m } \in \{ 0 , 1 \} ^ { k }$ and $M \in \{ 0 , 1 \} ^ { k \times d }$ such that the function $g : \mathbb { R } ^ { d } \overset { \cdot } { } \mathbb { R }$ defined by
428
+
429
+ $$
430
+ g ( \pmb { x } ) = ( \tilde { \pmb { m } } \odot \pmb { u } ) ^ { \top } \sigma \left( \varepsilon ( \pmb { M } \odot \pmb { B } ) \pmb { x } \right) ,
431
+ $$
432
+
433
+ satisfies
434
+
435
+ $$
436
+ | g ( \pmb { x } ) - \langle \pmb { w } ^ { * } , \pmb { x } \rangle | \leq \varepsilon , f o r a l l \| \pmb { x } \| _ { \infty } \leq 1 .
437
+ $$
438
+
439
+ Furthermore, $\begin{array} { r } { \| \tilde { m } \| _ { 0 } = \| M \| _ { 0 } \leq \frac { 2 s \sqrt { s } } { \varepsilon } a n d \operatorname* { m a x } _ { 1 \leq j \leq k } \| M _ { j , : } \| _ { 0 } \leq 1 . } \end{array}$
440
+
441
+ $\begin{array} { r } { { k } \ = \ { s } \cdot \left\lceil \frac { 1 6 \sqrt { s } } { \varepsilon } + 1 6 \log \left( \frac { 2 s } { \delta } \right) \right\rceil } \end{array}$ and set be maske $\begin{array} { l l l } { k ^ { \prime } } & { = } & { { \frac { k } { s } } } \end{array}$ . Note that if the desired value $k \_ s$ $\begin{array} { r } { \left\lceil \frac { 1 6 \sqrt { s } } { \varepsilon } + 1 6 \log \left( \frac { 2 s } { \delta } \right) \right\rceil } \end{array}$ $k$
442
+
443
+ decompose $u , \tilde { m } , B$ , and $M$ into $s$ equal size submatrices by defining
444
+
445
+ $$
446
+ \begin{array} { r l } & { u ^ { ( i ) } : = \left[ u _ { k ^ { \prime } ( i - 1 ) + 1 } \quad \cdots \quad u _ { k ^ { \prime } i } \right] ^ { \top } \in \left\{ - 1 , + 1 \right\} ^ { k ^ { \prime } \times 1 } } \\ & { \tilde { m } ^ { ( i ) } : = \left[ \tilde { m } _ { k ^ { \prime } ( i - 1 ) + 1 } \quad \cdots \quad \tilde { m } _ { k ^ { \prime } i } \right] ^ { \top } \in \left\{ 0 , 1 \right\} ^ { k ^ { \prime } \times 1 } } \\ & { B ^ { ( i ) } : = \left[ \begin{array} { c c c } { b ( k ^ { \prime } ( i - 1 ) + 1 ) , 1 } & { \cdots } & { b ( k ^ { \prime } ( i - 1 ) + 1 ) , d } \\ { \vdots } & { \ddots } & { \vdots } \\ { b _ { k ^ { \prime } i , 1 } } & { \cdots } & { b _ { k ^ { \prime } i , d } } \end{array} \right] \in \left\{ - 1 , + 1 \right\} ^ { k ^ { \prime } \times d } } \\ & { M ^ { ( i ) } : = \left[ \begin{array} { c c c } { m _ { ( k ^ { \prime } ( i - 1 ) + 1 ) , 1 } } & { \cdots } & { m _ { ( k ^ { \prime } ( i - 1 ) + 1 ) , d } } \\ { \vdots } & { \ddots } & { \vdots } \\ { m _ { k ^ { \prime } i , 1 } } & { \cdots } & { m _ { k ^ { \prime } i , d } } \end{array} \right] \in \left\{ 0 , 1 \right\} ^ { k ^ { \prime } \times d } , } \end{array}
447
+ $$
448
+
449
+ for $i \in [ s ]$ . Note that these submatrices satisfy
450
+
451
+ $$
452
+ { \pmb u } = \left[ \begin{array} { c } { { { \pmb u } ^ { ( 1 ) } } } \\ { { \vdots } } \\ { { { \pmb u } ^ { ( s ) } } } \end{array} \right] , \tilde { m } = \left[ \begin{array} { c } { { { \tilde { m } } ^ { ( 1 ) } } } \\ { { \vdots } } \\ { { { \tilde { m } } ^ { ( s ) } } } \end{array} \right] , B = \left[ \begin{array} { c } { { { \pmb B } ^ { ( 1 ) } } } \\ { { \vdots } } \\ { { { \pmb B } ^ { ( s ) } } } \end{array} \right] , M = \left[ \begin{array} { c } { { { \pmb U } ^ { ( 1 ) } } } \\ { { \vdots } } \\ { { { \pmb U } ^ { ( s ) } } } \end{array} \right] .
453
+ $$
454
+
455
+ Now let $\mathcal { T } : = \{ i \in [ d ] : w _ { i } ^ { * } \neq 0 \}$ . By our hypothesis that $\| \pmb { w } ^ { * } \| _ { 0 } \leq s$ , it follows that $| \mathcal { T } | \leq s$ WLOG, assume that $\mathcal { T } \subseteq [ s ]$ . Now fix $i \in [ s ]$ and define $g _ { i } : \mathbb { R } ^ { d } \mathbb { R }$ by
456
+
457
+ $$
458
+ g _ { i } ( \pmb { x } ) : = \left( \tilde { \pmb { m } } ^ { ( i ) } \odot \pmb { u } ^ { ( i ) } \right) ^ { \top } \sigma \left( \varepsilon ( M ^ { ( i ) } \odot \pmb { B } ^ { ( i ) } ) \pmb { x } \right)
459
+ $$
460
+
461
+ By (23), taking $\varepsilon ^ { \prime } = \textstyle { \frac { \varepsilon } { s } }$ and $\begin{array} { r } { \delta ^ { \prime } = \frac { \delta } { s } } \end{array}$ yields that $\begin{array} { r } { k ^ { \prime } \ge \frac { 1 6 } { \varepsilon ^ { \prime } \sqrt { s } } + 1 6 \log \left( \frac { 2 } { \delta ^ { \prime } } \right) } \end{array}$ . Hence, it follows from Lemma 1 that with probability at least $1 - \delta ^ { \prime }$ there exist $\tilde { m } ^ { ( i ) } \in \{ 0 , 1 \} ^ { k ^ { \prime } }$ and $M ^ { ( i ) } \in \{ 0 , 1 \} ^ { k ^ { \prime } \times d }$ such that
462
+
463
+ $$
464
+ | g _ { i } ( \pmb { x } ) - w _ { i } ^ { * } x _ { i } | \leq \varepsilon ^ { \prime } = \frac { \varepsilon } { s } ,
465
+ $$
466
+
467
+ for every $\pmb { x } \in \mathbb { R } ^ { d }$ with $\| \pmb { x } \| _ { \infty } \leq 1$ , and
468
+
469
+ $$
470
+ \| \tilde { \pmb { m } } ^ { ( i ) } \| _ { 0 } = \| \pmb { M } ^ { ( i ) } \| _ { 0 } \le \frac { 2 } { \varepsilon ^ { \prime } \sqrt { s } } = \frac { 2 \sqrt { s } } { \varepsilon } \quad \mathrm { a n d } \quad \operatorname* { m a x } _ { \substack { k ^ { \prime } ( i - 1 ) + 1 \le j \le k ^ { \prime } i } } \| M _ { j , i } ^ { ( i ) } \| _ { 0 } \le 1 .
471
+ $$
472
+
473
+ By the definition of $g ( { \pmb x } )$ in (24), using (30) yields
474
+
475
+ $$
476
+ g ( \pmb { x } ) = \left( \tilde { m } \odot \pmb { u } \right) ^ { \top } \sigma \left( \varepsilon ( M \odot B ) \pmb { x } \right) = \sum _ { i = 1 } ^ { s } \left( \tilde { m } ^ { ( i ) } \odot \pmb { u } ^ { ( i ) } \right) ^ { \top } \sigma \left( \varepsilon ( M ^ { ( i ) } \odot \pmb { B } ^ { ( i ) } ) \pmb { x } \right) = \sum _ { i = 1 } ^ { s } g _ { i } ( \pmb { x } ) .
477
+ $$
478
+
479
+ Hence, combining (32) for all $i \in [ s ]$ , it follows that with probability at least $1 - \delta$ we have
480
+
481
+ $$
482
+ | g ( \pmb { x } ) - \langle \pmb { w } ^ { * } , \pmb { x } \rangle | = \left| \sum _ { i = 1 } ^ { s } g _ { i } ( \pmb { x } ) - \sum _ { i = 1 } ^ { s } w _ { i } ^ { * } \pmb { x } _ { i } \right| \leq \sum _ { i = 1 } ^ { s } | g _ { i } ( \pmb { x } ) - w _ { i } ^ { * } \pmb { x } _ { i } | \leq \varepsilon .
483
+ $$
484
+
485
+ Finally, it follows from (30) and (33) that
486
+
487
+ $$
488
+ \| \tilde { \ b { m } } \| _ { 0 } = \| \ b { M } \| _ { 0 } \leq \frac { 2 s \sqrt { s } } { \varepsilon } \quad \mathrm { a n d } \quad \operatorname* { m a x } _ { 1 \leq j \leq k } \| \ b { M } _ { j , : } \| _ { 0 } \leq 1 ,
489
+ $$
490
+
491
+ which concludes the proof.
492
+
493
+ We now state and prove an analogue to Lemma A.5 in (Malach et al., 2020) which is the last lemma we will need to establish the desired result.
494
+
495
+ Lemma 3. Let $s \in [ d ]$ , $\begin{array} { r } { W ^ { * } ~ \in ~ \left[ - \frac { 1 } { \sqrt { s } } , \frac { 1 } { \sqrt { s } } \right] ^ { n \times d } } \end{array}$ with $\| W ^ { * } \| _ { 0 } \leq s , F : \mathbb { R } ^ { d } \to \mathbb { R } ^ { n }$ defined by $F _ { i } ( \pmb { x } ) = \sigma ( \langle \pmb { w } _ { i } ^ { * } , \pmb { x } \rangle )$ , and $\varepsilon , \delta > 0$ be given. Let $B \in \{ - 1 , + 1 \} ^ { k \times d }$ be chosen randomly from $B i n ( \{ - 1 , 1 \} ^ { k \times d } )$ and $U \in \{ - 1 , + 1 \} ^ { k \times n }$ be chosen randomly from $B i n ( \{ - 1 , + 1 \} ^ { k \times n } )$ . If
496
+
497
+ $$
498
+ k \geq n s \cdot \left\lceil \frac { 1 6 \sqrt { n s } } { \varepsilon } + 1 6 \log \left( \frac { 2 n s } { \delta } \right) \right\rceil ,
499
+ $$
500
+
501
+ then with probability at least $1 - \delta$ there exist masks $\tilde { M } \in \{ 0 , 1 \} ^ { k \times n }$ and $M \in \{ 0 , 1 \} ^ { k \times d }$ such that the function $G : \mathbb { R } ^ { d } \mathbb { R } ^ { n }$ defined by
502
+
503
+ $$
504
+ G ( \pmb { x } ) = \sigma \left( ( \tilde { M } \odot \pmb { U } ) ^ { \top } \sigma \left( \varepsilon ( M \odot \pmb { B } ) \pmb { x } \right) \right) ,
505
+ $$
506
+
507
+ satisfies
508
+
509
+ $$
510
+ \| G ( \pmb { x } ) - F ( \pmb { x } ) \| _ { 2 } \leq \varepsilon , f o r a l l \| \pmb { x } \| _ { \infty } \leq 1 .
511
+ $$
512
+
513
+ Furthermore, $\begin{array} { r } { \| \tilde { M } \| _ { 0 } = \| M \| _ { 0 } \leq \frac { 2 n s \sqrt { n s } } { \varepsilon } } \end{array}$ .
514
+
515
+ Proof. Assume $\begin{array} { r } { k \ = \ n s \ \cdot \ \left\lceil \frac { 1 6 \sqrt { n s } } { \varepsilon } + 1 6 \log \left( \frac { 2 n s } { \delta } \right) \right\rceil } \end{array}$ and set $\begin{array} { l } { { k ^ { \prime } } } \end{array} = \begin{array} { l } { { \frac { k } { n } } } \end{array}$ . Note that if $k \ > \ n s \ .$ $\begin{array} { r } { \left\lceil { \frac { 1 6 \sqrt { n s } } { \varepsilon } } + 1 6 \log \left( \frac { 2 n s } { \delta } \right) \right\rceil } \end{array}$ then excess neurons can be masked to yield the desired value for $k$ . As in the proof of Lemma 2, we can split $U , { \tilde { M } } ,$ B, and $M$ into $n$ submatrices, denoted $U ^ { ( i ) } \in \{ - 1 , + 1 \} ^ { k ^ { \prime } \times n }$ , $\tilde { M } ^ { ( i ) } \in \{ - 1 , + 1 \} ^ { k ^ { \prime } \times n }$ , $B ^ { ( i ) } \in \{ - 1 , + 1 \} ^ { k ^ { \prime } \times d }$ , and $M ^ { ( i ) } \in \{ - 1 , + 1 \} ^ { k ^ { \prime } \times d }$ for $i \in [ n ]$ , such that
516
+
517
+ $$
518
+ \boldsymbol { U } = \left[ \begin{array} { c } { \boldsymbol { U } ^ { ( 1 ) } } \\ { \vdots } \\ { \boldsymbol { U } ^ { ( n ) } } \end{array} \right] , \tilde { \boldsymbol { M } } = \left[ \begin{array} { c } { \boldsymbol { \tilde { M } } ^ { ( 1 ) } } \\ { \vdots } \\ { \boldsymbol { \tilde { M } } ^ { ( n ) } } \end{array} \right] , \boldsymbol { B } = \left[ \begin{array} { c } { \boldsymbol { B } ^ { ( 1 ) } } \\ { \vdots } \\ { \boldsymbol { B } ^ { ( n ) } } \end{array} \right] , \mathrm { a n d } \boldsymbol { M } = \left[ \begin{array} { c } { \boldsymbol { M } ^ { ( 1 ) } } \\ { \vdots } \\ { \boldsymbol { M } ^ { ( n ) } } \end{array} \right] .
519
+ $$
520
+
521
+ To simplify notation in the following definition, we define the vectors $\tilde { m } ^ { ( i ) } : = \tilde { M } _ { : , i } ^ { ( i ) }$ and $\tilde { \mathbf { \boldsymbol { u } } } ^ { ( i ) } : =$ $\tilde { U } _ { : , i } ^ { ( i ) }$ . Now we define the functions $g _ { i } : \mathbb { R } ^ { d } \mathbb { R }$ by
522
+
523
+ $$
524
+ g _ { i } ( \pmb { x } ) = \left( \tilde { \pmb { m } } ^ { ( i ) } \odot \pmb { u } ^ { ( i ) } \right) ^ { \top } \sigma \left( \beta ( \pmb { M } ^ { ( i ) } \odot \pmb { B } ^ { ( i ) } ) \pmb { x } \right) ,
525
+ $$
526
+
527
+ for each $\textit { i } \in \ [ n ]$ . Taking $\begin{array} { l l l } { \varepsilon ^ { \prime } } & { = } & { { \frac { \varepsilon } { \sqrt { n } } } } \end{array}$ and $\begin{array} { l l l } { \delta ^ { \prime } } & { = } & { { \frac { \delta } { n } } } \end{array}$ , it follows from (37) that $k ^ { \prime } \geq s \mathrm { ~ . ~ }$ $\begin{array} { r } { \left\lceil { \frac { 1 6 \sqrt { s } } { \varepsilon ^ { \prime } } } + 1 6 \log \left( \frac { 2 s } { \delta ^ { \prime } } \right) \right\rceil } \end{array}$ . As the hypotheses of Lemma 2 are satisfied, with probability at least $\textstyle 1 - { \frac { \delta } { n } }$ there exist masks $\tilde { m } ^ { ( i ) }$ and $M ^ { ( i ) }$ with
528
+
529
+ $$
530
+ \| \tilde { \pmb { m } } ^ { ( i ) } \| _ { 0 } = \| \pmb { M } ^ { ( i ) } \| _ { 0 } \leq \frac { 2 s \sqrt { s } } { \varepsilon ^ { \prime } } = \frac { 2 s \sqrt { n s } } { \varepsilon }
531
+ $$
532
+
533
+ such that
534
+
535
+ $$
536
+ | g _ { i } ( \pmb { x } ) - \langle \pmb { W } _ { i } ^ { * } , \pmb { x } \rangle | \leq \frac { \varepsilon } { \sqrt { n } } , \mathrm { ~ f o r ~ a l l ~ } \| \pmb { x } \| _ { \infty } \leq 1 .
537
+ $$
538
+
539
+ For each $i \in [ n ]$ , note that this results in choosing the columns of the mask $\tilde { M } ^ { ( i ) }$ by
540
+
541
+ $$
542
+ \tilde { M } _ { : , \ell } ^ { ( i ) } = \left\{ \begin{array} { l l } { \tilde { m } ^ { ( i ) } } & { : \quad \ell = i } \\ { { \bf 0 } } & { : \quad \mathrm { o t h e r w i s e } } \end{array} \right.
543
+ $$
544
+
545
+ Combining this choice with (40) yields
546
+
547
+ $$
548
+ ( \tilde { M } \odot U ) ^ { \top } \sigma \left( \beta ( M \odot B ) \pmb { x } \right) = \left[ \begin{array} { l } { g _ { 1 } ( \pmb { x } ) } \\ { \vdots } \\ { g _ { n } ( \pmb { x } ) } \end{array} \right] .
549
+ $$
550
+
551
+ By the definition of $G ( \pmb { x } )$ in (38), it follows from (45) that
552
+
553
+ $$
554
+ G ( \pmb { x } ) = \left[ \begin{array} { c } { \sigma ( g _ { 1 } ( \pmb { x } ) ) } \\ { \vdots } \\ { \sigma ( g _ { n } ( \pmb { x } ) ) } \end{array} \right] .
555
+ $$
556
+
557
+ Combining (43) and (46), we have with probability at least $1 - \delta$ that
558
+
559
+ $$
560
+ \| G ( \pmb { x } ) - F ( \pmb { x } ) \| _ { 2 } ^ { 2 } = \sum _ { i = 1 } ^ { n } \left( \sigma ( g _ { i } ( \pmb { x } ) ) - \sigma ( \langle \pmb { w } _ { i } ^ { * } , \pmb { x } \rangle ) \right) ^ { 2 } \leq \sum _ { i = 1 } ^ { n } \left( g _ { i } ( \pmb { x } ) - \langle \pmb { W } _ { i } ^ { * } , \pmb { x } \rangle \right) ^ { 2 } \leq \varepsilon ^ { 2 } .
561
+ $$
562
+
563
+ Finally, it follows from (42) and (44) that
564
+
565
+ $$
566
+ \| \tilde { M } \| _ { 0 } = \| M \| _ { 0 } \leq \frac { 2 n s \sqrt { n s } } { \varepsilon }
567
+ $$
568
+
569
+ which concludes the proof.
570
+
571
+ We are now ready to prove the main result in Theorem 2.
572
+
573
+ Theorem 2. Let $\begin{array} { r l r } { \ell , n , s } & { \in \mathrm { ~ { \cal ~ N } ~ } , \ W ^ { ( 1 ) * } } & { \in } & { \Big [ - \frac { 1 } { \sqrt { s } } , \frac { 1 } { \sqrt { s } } \Big ] ^ { d \times n } , \ \{ \pmb { W } } ^ { ( i ) * } \} _ { i = 2 } ^ { \ell - 1 } \in \Big [ - \frac { 1 } { \sqrt { n } } , \frac { 1 } { \sqrt { n } } \Big ] ^ { n \times n } , \end{array}$ and W ( \` ) ∗ ∈ h − √1n , √1n i . Assume that for each $i \in [ \ell ]$ we have $\| \mathbf { W } ^ { ( i ) * } \| _ { 2 } ~ \le ~ 1$ and $\operatorname* { m a x } _ { j } \| \pmb { W } _ { j } ^ { ( i ) * } \| _ { 0 } \leq s .$ . Define $F ( x ) : = F ^ { ( \ell ) } \circ \cdot \cdot \cdot \circ F ^ { ( 1 ) } ( { \pmb x } )$ where $F ^ { ( i ) } ( { \pmb x } ) = \sigma ( { \pmb W } ^ { ( i ) * } { \pmb x } )$ for $i \in [ \ell - 1 ]$ and $F ^ { ( \ell ) } ( { \pmb x } ) = { \pmb W } ^ { ( \ell ) * } { \pmb x } . F i x \varepsilon , \delta \in ( 0 , 1 ) .$ .
574
+
575
+ Let $B ^ { ( 1 ) } \ \in \ \{ - 1 , + 1 \} ^ { k \times d }$ be sampled from $B i n ( \{ - 1 , + 1 \} ^ { k \times d } )$ , $\{ B ^ { ( i ) } \} _ { i = 2 } ^ { \ell } ~ \in ~ \{ - 1 , + 1 \} ^ { k \times n }$ be sampled from Bin({−1, +1}k×n), {U (i)}\`−1i=1 $\begin{array} { r l r } { \{ U ^ { ( i ) } \} _ { i = 1 } ^ { \ell - 1 } } & { { } \in } & { \{ - 1 , + 1 \} ^ { k \times n } } \end{array}$ be sampled from $B i n ( \{ - 1 , + 1 \} ^ { k \times n } )$ and $U ^ { ( \ell ) } \in \{ - 1 , + 1 \} ^ { k \times 1 }$ sampled from $B i n ( \{ - 1 , + 1 \} ^ { k \times 1 } )$ . If
576
+
577
+ $$
578
+ k \geq n s \cdot \left\lceil \frac { 3 2 \ell \sqrt { n s } } { \varepsilon } + 1 6 \log \left( \frac { 2 n s \ell } { \delta } \right) \right\rceil ,
579
+ $$
580
+
581
+ then with probability at least $1 - \delta$ there exist binary masks $\{ M ^ { ( i ) } \} _ { i = 1 } ^ { \ell }$ and $\{ \tilde { M } ^ { ( i ) } \} _ { i = 1 } ^ { \ell }$ for $\{ B ^ { ( i ) } \} _ { i = 1 } ^ { \ell }$ and $\{ \pmb { U } ^ { ( i ) } \} _ { i = 1 } ^ { \ell }$ , respectively, such that the function $G : \mathbb { R } ^ { d } \mathbb { R }$ defined by
582
+
583
+ $$
584
+ G ( \pmb { x } ) : = G ^ { ( \ell ) } \circ \cdot \cdot \cdot \circ G ^ { ( 1 ) } ( \pmb { x } ) ,
585
+ $$
586
+
587
+ where
588
+
589
+ $$
590
+ \begin{array} { r l } & { G ^ { ( i ) } ( \pmb { x } ) : = \sigma \left( ( \tilde { M } ^ { ( i ) } \odot \pmb { U } ^ { ( i ) } ) ^ { \top } \sigma ( \varepsilon ( M ^ { ( i ) } \odot \pmb { B } ^ { ( i ) } ) \pmb { x } ) \right) , f o r i \in [ \ell - 1 ] } \\ & { G ^ { ( \ell ) } ( \pmb { x } ) : = ( \tilde { M } ^ { ( i ) } \odot \pmb { U } ^ { ( i ) } ) ^ { \top } \sigma ( \varepsilon ( M ^ { ( i ) } \odot \pmb { B } ^ { ( i ) } ) \pmb { x } ) , } \end{array}
591
+ $$
592
+
593
+ satisfies
594
+
595
+ $$
596
+ | G ( \pmb { x } ) - F ( \pmb { x } ) | \leq \varepsilon , f o r a l l \| \pmb { x } \| _ { 2 } .
597
+ $$
598
+
599
+ Additionally, kM˜ k0 = kM k0 ≤ 4ns\`2 nsε .
600
+
601
+ Proof. Let $i \in [ \ell - 1 ]$ . Using Lemma 3 with $\begin{array} { r } { \varepsilon ^ { \prime } = \frac { \varepsilon } { 2 \ell } } \end{array}$ and $\begin{array} { r } { \delta ^ { \prime } = \frac { \delta } { \ell } } \end{array}$ , with probability at least $\textstyle 1 - { \frac { \delta } { \ell } }$ there exist $M ^ { ( i ) }$ and $\tilde { M } ^ { ( i ) }$ such that
602
+
603
+ $$
604
+ \| G ^ { ( i ) } ( { \pmb x } ) - F ^ { ( i ) } ( { \pmb x } ) \| _ { 2 } \leq \frac { \varepsilon } { 2 \ell } , \mathrm { f o r ~ a l l ~ } \| { \pmb x } \| _ { \infty } \leq 1
605
+ $$
606
+
607
+ and
608
+
609
+ $$
610
+ \| \tilde { \boldsymbol { M } } ^ { ( i ) } \| _ { 0 } = \| \boldsymbol { M } ^ { ( i ) } \| _ { 0 } \leq \frac { 2 n s \sqrt { n s } } { \varepsilon ^ { \prime } } = \frac { 4 n s \ell \sqrt { n s } } { \varepsilon } .
611
+ $$
612
+
613
+ The remainder of the proof follows from applying the same argument as in the proof of Theorem A.6 from (Malach et al., 2020). □
614
+
615
+ # C MOTIVATION FOR FRAMEWORK TO IDENTIFY MPTS
616
+
617
+ Suppose that $f ( { \pmb x } ; { \pmb W } ^ { * } )$ with optimized weights $W ^ { * }$ is a target network that we wish to approximate. Let $g ( \pmb { x } ; \pmb { W } )$ denote the network in which we want to identify a MPT-1/32 that is an $\varepsilon$ - approximation of $f ( { \pmb x } ; { \pmb W } ^ { * } )$ , for some $\varepsilon > 0$ .
618
+
619
+ Now assume that $g ( { \pmb x } ; \cdot )$ is Lipschitz continuous with constant $\kappa$ , $B \in \{ - 1 , + 1 \} ^ { m }$ are binary parameters for $g$ , and $\alpha \in \mathbb { R }$ is gain term. It follows that
620
+
621
+ $$
622
+ \begin{array} { r l } { \| g \left( \pmb { x } ; \alpha ( M \odot \pmb { B } ) \right) - f ( \pmb { x } ; \pmb { W } ^ { * } ) \| \leq \| g \left( \pmb { x } ; \alpha ( M \odot \pmb { B } ) - g ( \pmb { x } ; M \odot \pmb { B } ) \right\| } & { } \\ { + \| g ( \pmb { x } ; M \odot \pmb { W } ) - f ( \pmb { x } ; \pmb { W } ^ { * } ) \| } & { } \\ { < \kappa \| \big ( M \odot \pmb { W } \big ) - \alpha \big ( M \odot \pmb { B } \big ) \| } & { } \\ { + \| g ( \pmb { x } ; M \odot \pmb { W } ) - f ( \pmb { x } ; \pmb { W } ^ { * } ) \| . } \end{array}
623
+ $$
624
+
625
+ If we take $M$ to be a fixed binary mask, we can minimize the error of binarizing the subnetwork parameters $M \odot W$ by solving the optimization problem
626
+
627
+ $$
628
+ \begin{array} { r l } { \underset { \alpha , B } { \operatorname* { m i n } } } & { \| ( M \odot W ) - \alpha ( M \odot B ) \| ^ { 2 } } \\ { \mathrm { s . t . } } & { \quad \alpha \in \mathbb { R } , B \in \{ - 1 , 1 \} ^ { n } } \end{array}
629
+ $$
630
+
631
+ where $M , W$ , and $\textbf { { B } }$ are stacked into vectors of some length, say $n$ . As the pruning mask $M$ is applied to both $W$ and $\textbf { { B } }$ , solving problem (57) is equivalent to solving problem (2) in (Rastegari et al., 2016) with a different dimension. Hence, it immediately follows that one closed form solution for $\textbf { { B } }$ in problem (57) is
632
+
633
+ $$
634
+ B ^ { * } = \mathrm { s i g n } ( W ) .
635
+ $$
636
+
637
+ Taking the derivative of the cost function in (57) with respect to $\alpha$ and setting it equal to zero yields
638
+
639
+ $$
640
+ \alpha ( M \odot B ^ { * } ) ^ { \top } ( M \odot B ^ { * } ) - ( M \odot W ) ^ { \top } ( M \odot B ^ { * } ) = 0 .
641
+ $$
642
+
643
+ Recalling that $M \in \{ 0 , 1 \} ^ { n }$ and using (58), we have
644
+
645
+ $$
646
+ ( M \odot B ^ { * } ) ^ { \top } ( M \odot B ^ { * } ) = \sum _ { i = 1 } ^ { n } ( M _ { i } B _ { i } ^ { * } ) ^ { 2 } = \sum _ { i = 1 } ^ { n } M _ { i } ^ { 2 } ( \mathrm { s i g n } ( W _ { i } ) ) ^ { 2 } = \sum _ { i = 1 } ^ { n } M _ { i } = \| M \| _ { 1 } = \frac { \partial M ^ { * } } { \partial \bigstar }
647
+ $$
648
+
649
+ and
650
+
651
+ $$
652
+ ( M \odot W ) ^ { \top } ( M \odot B ^ { * } ) = \sum _ { i = 1 } ^ { n } M _ { i } ^ { 2 } W _ { i } \operatorname { s i g n } ( W _ { i } ) = \sum _ { i = 1 } ^ { n } M _ { i } | W _ { i } | = \| M \odot W \| _ { 1 } .
653
+ $$
654
+
655
+ Substituting (60) and (61) into (59) and solving for $\alpha$ yields the closed form solution
656
+
657
+ $$
658
+ \alpha ^ { * } = \frac { \| M \odot W \| _ { 1 } } { \| M \| _ { 1 } } .
659
+ $$
660
+
661
+ Hence, $\alpha ^ { * }$ and $B ^ { * }$ minimize the right hand side of (56) and, consequently, reduce the approximation error of the MPT-1/32. So when the binarization error, $\left\| \left( M \odot W \right) - \alpha ( M \odot \mathrm { s i g n } ( W ) ) \right\|$ , and the subnetwork error, $\| g ( \pmb { x } ; M \odot W ) - f ( \pmb { x } ; \pmb { W } ^ { * } ) \|$ , are sufficiently small then the binarized subnetwork $g \left( \pmb { x } ; \alpha ( M \odot \mathrm { s i g n } ( \pmb { W } ) ) \right)$ serves as a good approximation to the target network.
662
+
663
+ These closed form expressions for the gain term and the binarized weights are the updates used for the gain term and binary subnetwork weights in biprop after updating the binary pruning mask.
664
+
665
+ # D COMPARISON OF MPTS WITH BINARY NEURAL NETWORK SOTA
666
+
667
+ Here we provide a more exhaustive comparison of MPT–1/32 and MPT–1/1 on CIFAR-10 and ImageNet to SOTA methods – BinaryConnect (Courbariaux et al., 2015), BNN (Courbariaux et al., 2016), DoReFa-Net (Zhou et al., 2016), LQ-Nets (Zhang et al., 2018), BWN and XNOR-Net (Rastegari et al., 2016), ABC-Net (Lin et al., 2017), IR-Net (Qin et al., 2020b), LAB (Hou et al., 2016), ProxQuant (Bai et al., 2018), DSQ (Gong et al., 2019), and BBG (Shen et al., 2020). Results for CIFAR-10 can be found in Tables 8 and 9 and results for ImageNet can be found in Tables 10 and 11. Next to the MPT method we include the percentage of weights pruned and the layer width multiplier (if larger than 1) in parentheses.
668
+
669
+ Table 8: Comparison of MPT-1/32 with Trained Binary (1/32) Networks on CIFAR-10
670
+
671
+ <table><tr><td>Method</td><td>Model</td><td>Top-1 Params</td></tr><tr><td>BinaryConnect VGG-Small</td><td>91.7</td><td>4.6M</td></tr><tr><td>BWN VGG-Small</td><td>90.1</td><td>4.6M</td></tr><tr><td>DoReFa-Net ResNet-20</td><td>90.0</td><td>0.27M</td></tr><tr><td>LQ-Nets ResNet-20</td><td>90.1</td><td>0.27M</td></tr><tr><td>LAB VGG-Small</td><td>89.5</td><td>4.6M</td></tr><tr><td>ProxQuant ResNet-56</td><td>92.3</td><td>0.85M</td></tr><tr><td>DSQ ResNet-20</td><td>90.2</td><td>0.27M</td></tr><tr><td>IR-Net ResNet-20</td><td>90.8</td><td>0.27M</td></tr><tr><td>Full-Precision ResNet-18</td><td>93.02</td><td>11.2M</td></tr><tr><td>MPT-1/32 (95) VGG-Small</td><td>91.48</td><td>0.23M</td></tr><tr><td>MPT(80) ResNet-18</td><td>94.66</td><td>2.2M</td></tr><tr><td>MPT(80)+BN ResNet-18</td><td>94.8</td><td>2.2M</td></tr></table>
672
+
673
+ Table 9: Comparison of MPT-1/1 with Trained Binary (1/1) Networks on CIFAR-10
674
+
675
+ <table><tr><td>Method</td><td>Model</td><td>Top-1</td><td>Params</td></tr><tr><td>BNN</td><td>VGG-Small</td><td>89.9</td><td>4.6M</td></tr><tr><td>XNOR-Net</td><td>VGG-Small</td><td>89.8</td><td>4.6M</td></tr><tr><td>DoReFa-Net</td><td>ResNet-20</td><td>79.3</td><td>0.27M</td></tr><tr><td>BBG</td><td>ResNet-20</td><td>85.3</td><td>0.27M</td></tr><tr><td>LAB</td><td>VGG-Small</td><td>87.7</td><td>4.6M</td></tr><tr><td>DSQ</td><td>VGG-Small</td><td>91.7</td><td>4.6M</td></tr><tr><td>IR-Net</td><td>ResNet-18</td><td>91.5</td><td>4.6M</td></tr><tr><td>Full-Precision</td><td>VGG-Small</td><td>93.6</td><td>4.6M</td></tr><tr><td>MPT(75,1.25x)</td><td>VGG-Small</td><td>88.49</td><td>1.44 M</td></tr><tr><td>MPT(75,1.25x) +BN</td><td>VGG-Small</td><td>91.9</td><td>1.44 M</td></tr></table>
676
+
677
+ Table 10: Comparison of MPT-1/32 with Trained Binary (1/32) Networks on ImageNet
678
+
679
+ <table><tr><td>Method</td><td>Model</td><td>Top-1</td><td>Params</td></tr><tr><td>ABC-Net</td><td>ResNet-18</td><td>62.8</td><td>11.2 M</td></tr><tr><td>BWN</td><td>ResNet-18</td><td>60.8</td><td>11.2M</td></tr><tr><td>BWNH</td><td>ResNet-18</td><td>64.3</td><td>11.2M</td></tr><tr><td>PACT</td><td>ResNet-18</td><td>65.8</td><td>11.2 M</td></tr><tr><td>IR-Net</td><td>ResNet-34</td><td>70.4</td><td>21.8M</td></tr><tr><td>Quantization-Networks</td><td>ResNet-18</td><td>66.5</td><td>11.2M</td></tr><tr><td>Quantization-Networks</td><td>ResNet-50</td><td>72.8</td><td>25.6M</td></tr><tr><td>Full-Precision</td><td>ResNet-34</td><td>73.27</td><td>21.8M</td></tr><tr><td>MPT (80)</td><td>WRN-50</td><td>72.67</td><td>13.7 M</td></tr><tr><td>MPT(80)+BN</td><td>WRN-50</td><td>74.03</td><td>13.7 M</td></tr></table>
680
+
681
+ # E COMPARISON TO EDGEPOPUP FOR MPT-1/32
682
+
683
+ Note that binarization step of biprop can be avoided while finding MPT-1/32 – by initializing (and pruning) our backbone neural network with binary initialization (e.g., edgepopup with Signed Constant initialization (Ramanujan et al., 2020)). In this specific instance, biprop boils down to edgepopup with proper scaling. Next, we compare the performance of MPT-1/32 networks identified using these two approaches. Both networks presented below use the same hyperparameter configurations and are trained for 250 epochs on the CIFAR-10 dataset. We initialize the networks identified with edgepopup using the Signed Constant initialization as it yielded their best performance. MPT-1/32 networks identified using biprop are initialized using the Kaiming Normal initialization. We plot the average over three experiments for each pruning percentage and bars extending to the minimum and maximum accuracy for each pruning percentage. Additionally, for each network we include the Top-1 accuracy of a dense model with learned weights. These plots can be found in
684
+
685
+ Table 11: Comparison of MPT-1/1 with Trained Binary (1/1) Networks on ImageNet
686
+
687
+ <table><tr><td>Method</td><td>Model</td><td>Top-1</td><td>Params</td></tr><tr><td>BNN</td><td>AlexNet</td><td>27.9</td><td>62.3M</td></tr><tr><td>XNOR-Net</td><td>AlexNet</td><td>44.2</td><td>62.3M</td></tr><tr><td>ABC-Net</td><td>ResNet-18</td><td>42.7</td><td>11.2M</td></tr><tr><td>ABC-Net</td><td>ResNet-34</td><td>52.4</td><td>21.8M</td></tr><tr><td>TSQ</td><td>AlexNet</td><td>58.0</td><td>62.3M</td></tr><tr><td>WRPN</td><td>ResNet-34</td><td>60.5</td><td>21.8M</td></tr><tr><td>HWGQ</td><td>AlexNet</td><td>52.7</td><td>62.3M</td></tr><tr><td>IR-Net</td><td>ResNet-18</td><td>58.1</td><td>11.2M</td></tr><tr><td>IR-Net</td><td>ResNet-34</td><td>62.9</td><td>21.8M</td></tr><tr><td>Full-Precision</td><td>ResNet-34</td><td>73.27</td><td>21.8M</td></tr><tr><td>MPT (60)</td><td>WRN-34</td><td>45.06</td><td>19.3M</td></tr><tr><td>MPT(60)+BN</td><td>WRN-34</td><td>52.07</td><td>19.3M</td></tr></table>
688
+
689
+ ![](images/46bbb794069082037cdbf1b33091b58b956ba38e019c3946bf7ee4e3a9066281.jpg)
690
+ Figure 5. We find that the performance of MPT-1/32 identified with biprop outperforms networks identified using edgepopup. This highlights the benefit of binarization (in conjunction with pruning) as a learning strategy.
691
+ Figure 5: Comparing biprop and edgepopup: Comparing the Top-1 accuracy of MPT-1/32 to binary weight networks of the same size identified using edgepopup on CIFAR-10.
692
+
693
+ # F RELATED WORK
694
+
695
+ F.1 PRUNING
696
+
697
+ We categorize pruning methods based on whether a model is pruned either after the training or before the training (see (Neill, 2020) for a comprehensive review).
698
+
699
+ Post-Training Pruning. The traditional pruning methods leverage a three-stage pipeline – pretraining (a large model), pruning, and fine-tuning. The main distinction lies among these approaches is what type of criteria is used for pruning. One of the most popular approach is the magnitude-based pruning where the weights with the magnitude below a certain threshold are discarded (Hagiwara, 1993). Further, certain penalty term (e.g., $l _ { 1 } , l _ { 2 }$ or lasso weight regularization) can be used during training to encourage a model to learn certain smaller magnitude weights and removing them posttraining (Weigend et al., 1991). Models can also be pruned by measuring the importance of weights by computing the sensitivity of the loss function when weights are removed and prune those which cause the smallest change in the loss (LeCun et al., 1990).
700
+
701
+ Pruning Before Training. Thus far, we have have discussed methods for pruning pretrained DNNs.
702
+
703
+ Recently, (Frankle & Carbin, 2019) proposed the Lottery Ticket Hypothesis and showed that randomly-initialized neural networks contain sparse subnetworks that can be effectively trained from scratch when reset to their initialization. Further, (Liu et al., 2018b) showed that the training an over-parameterized model is often not necessary to obtain an efficient final model and network architecture itself is more important than the remaining weights after pruning pretrained networks. These findings has revived interest in finding approaches for searching sparse and trainable subnetworks. For example, (Lee et al., 2018; Wang et al., 2020b; You et al., 2019; Wang et al., 2020a) explored efficient approaches to search for these sparse and trainable subnetworks. Along this line of work, a striking finding was reported by (Zhou et al., 2019; Ramanujan et al., 2020) showing that randomly-initialized neural networks contain sparse subnetworks that achieve good performance without any training. (Malach et al., 2020; Pensia et al., 2020) provided theoretical evidences for this phenomenon and showed that one can approximate any target neural network, by pruning a sufficiently over-parameterized network of random weights.
704
+
705
+ # F.2 BINARIZATION
706
+
707
+ Similar to pruning, we categorize binarization methods based on whether a model is binarized either after the training or during the training (see (Qin et al., 2020a) for a comprehensive review).
708
+
709
+ Post-Training Binarization. To the best of our knowledge, none of the post-training schemes have been successful in binarizing pretrained models with or without retraining to achieve reasonable test accuracy. Most existing works (Han et al., 2015; Zhou et al., 2017) are limited to ternary weight quantization.
710
+
711
+ Training-Aware Binarization. There are several efforts to improve the performance of BNN training. This is a challenging problem as binarization introduces discontinuities which makes differentiation during backpropogation difficult. Binaryconnect (Courbariaux et al., 2015) established how to train networks with binary weights within the familiar back-propagation paradigm. BinaryNet (Courbariaux et al., 2016) further quantize both the weights and the activations to 1-bit values. Unfortunately, these early schemes resulted in a staggering drop in the accuracy compared to their full precision counterparts. In an attempt to improve the performance, XNOR-Net (Rastegari et al., 2016) proposed to add a real-valued channel-wise scaling factor. Dorefa-Net (Zhou et al., 2016) extends XNOR-Net to accelerate the training process using quantized gradients. ABC-Net (Lin et al., 2017) improved the performance by using more weight bases and activation bases at the cost of increase in memory and computation. There have also been efforts in making modifications to the network architectures to make them amenable for the binary neural network training. For example, Bireal-Net (Liu et al., 2018a) added layer-wise identity short-cut, and AutoBNN (Shen et al., 2020) proposed to widen or squeeze the channels in an automatic manner. (Han et al., 2020) proposed to learn to binarize neurons with noisy supervision. Some efforts also have been carried out to designing gradient estimators extending straight-through estimator (STE) (Bengio et al., 2013) for accurate gradient back-propagation. DSQ (Gong et al., 2019) used differentiable soft quantization to have accurate gradients in backward propagation. On the other hand, PCNN Gu et al. (2019) proposed a new discrete back-propagation via projection algorithm to build BNNs.
712
+
713
+ # F.3 OTHER RELATED DIRECTIONS
714
+
715
+ Gaier & Ha (2019) proposed a search method for neural network architectures that can already perform a task without any explicit weight training, i.e., each weight in the network has the same shared value. Recent work in randomly wired neural networks (Xie et al., 2019) showed that constructing neural networks with random graph algorithms often outperforms a manually engineered architecture. As opposed to fixed wirings in (Xie et al., 2019), (Wortsman et al., 2019) learned the network parameters as well as the structure. This show that finding a good architecture is akin to finding a sparse subnetwork of the complete graph.
parse/train/U_mat0b9iv/U_mat0b9iv_content_list.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/U_mat0b9iv/U_mat0b9iv_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/U_mat0b9iv/U_mat0b9iv_model.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/nWSZ30wrEw3/nWSZ30wrEw3.md ADDED
@@ -0,0 +1,288 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Adaptive Machine Unlearning
2
+
3
+ Varun Gupta1, Christopher Jung1, Seth Neel2, Aaron Roth1, Saeed Sharifi-Malvajerdi1, and Chris Waites3
4
+
5
+ 1University of Pennsylvania 2Harvard University 3Stanford University
6
+
7
+ # Abstract
8
+
9
+ Data deletion algorithms aim to remove the influence of deleted data points from trained models at a cheaper computational cost than fully retraining those models. However, for sequences of deletions, most prior work in the non-convex setting gives valid guarantees only for sequences that are chosen independently of the models that are published. If people choose to delete their data as a function of the published models (because they don’t like what the models reveal about them, for example), then the update sequence is adaptive. In this paper, we give a general reduction from deletion guarantees against adaptive sequences to deletion guarantees against non-adaptive sequences, using differential privacy and its connection to max information. Combined with ideas from prior work which give guarantees for non-adaptive deletion sequences, this leads to extremely flexible algorithms able to handle arbitrary model classes and training methodologies, giving strong provable deletion guarantees for adaptive deletion sequences. We show in theory how prior work for non-convex models fails against adaptive deletion sequences, and use this intuition to design a practical attack against the SISA algorithm of Bourtoule et al. [2021] on CIFAR-10, MNIST, Fashion-MNIST.
10
+
11
+ # 1 Introduction
12
+
13
+ Businesses like Facebook and Google depend on training sophisticated models on user data. Increasingly—in part because of regulations like the European Union’s General Data Protection Act and the California Consumer Privacy Act—these organizations are receiving requests to delete the data of particular users. But what should that mean? It is straightforward to delete a customer’s data from a database and stop using it to train future models. But what about models that have already been trained using an individual’s data? These are not necessarily safe; it is known that individual training data can be exfiltrated from models trained in standard ways via model inversion attacks [Shokri et al., 2017, Veale et al., 2018, Fredrikson et al., 2015]. Regulators are still grappling with when a trained model should be considered to contain personal data of individuals in the training set and the potential legal implications. In 2020 draft guidance, the U.K.’s Information Commissioner’s Office addressed how to comply with data deletion requests as they pertain to ML models:
14
+
15
+ If the request is for rectification or erasure of the data, this may not be possible without re-training the model...or deleting the model altogether [ICO, 2020].
16
+
17
+ Fully retraining the model every time a deletion request is received can be prohibitive in terms of both time and money—especially for large models and frequent deletion requests. The problem of data deletion (also known as machine unlearning) is to find an algorithmic middle ground between the compliant but impractical baseline of retraining, and the potentially illegal standard of doing nothing. We iteratively update models as deletion requests come in, with the twin goals of having computational cost that is substantially less than the cost of full retraining, and the guarantee that the models we produce are (almost) indistinguishable from the models that would have resulted from full retraining.
18
+
19
+ After an initial model is deployed deletion requests arrive over time as users make decisions about whether to delete their data. It is easy to see how these decisions may be adaptive with respect to the models. For example, security researchers may publish a new model inversion attack that identifies a specific subset of people in the training data, thus leading to increased deletion requests for people in that subset. In this paper we give the first machine unlearning algorithms that both have rigorous deletion guarantees against these kind of adaptive deletion sequence, and can accommodate arbitrary non-convex models like deep neural networks without requiring pretraining on non-user data.
20
+
21
+ # 1.1 Main Results
22
+
23
+ The deletion guarantees proven for several prior methods crucially rely on the implicit assumption that the points that are deleted are independent of the randomness used to train the models. However this assumption fails unless the sequence of deletion requests is chosen independently of the information that the model provider has made public. This is a very strong assumption, because users may wish to delete their data exactly because of what deployed models reveal about them.
24
+
25
+ We give a generic reduction. We show that if:
26
+
27
+ 1. A data deletion algorithm $\mathcal { R } _ { A }$ for a learning algorithm $\mathcal { A }$ has deletion guarantees for oblivious sequences of deletion requests (as those from past work do), and 2. Information about the internal randomness of $\mathcal { R } _ { A }$ is revealed only in a manner that satisfies differential privacy, then
28
+
29
+ $( \mathcal { A } , \mathcal { R } _ { \mathcal { A } } )$ also satisfies data deletion guarantees against an adaptive sequence of deletion requests, that can depend in arbitrary ways on the information that the model provider has made public.
30
+
31
+ In Section 3, we motivate our main result with a theoretical example which illustrates that past method’s lack of guarantees for adaptive sequences is not simply a failure of analysis, but an actual failure of these methods to satisfy deletion guarantees for adaptive deletion sequences. As an exemplar, we use a variant of SISA from Bourtoule et al. [2021] that satisfies perfect deletion guarantees for non-adaptive deletion sequences and exhibit adaptive deletion sequences that strongly separate the resulting distribution on models compared to the retraining baseline.
32
+
33
+ The generic reduction found in Section 4 can be used to give adaptive data deletion mechanisms for a wide variety of problems by leveraging past work on deletion algorithms for non-adaptive sequences, and a line of work on differentially private aggregation [Papernot et al., 2018, Dwork and Feldman, 2018]. Since prior deletion algorithms themselves tend to use existing learning algorithms in a black-box way, the entire pipeline is modular and easy to bolt-on to existing methods. In Section 5, we show how this can be accomplished by using a variant of the SISA framework of Bourtoule et al. [2021] together with a differentially private aggregation method.
34
+
35
+ In Section 6, we complement our main result with a set of experimental results on CIFAR-10, MNIST, and Fashion-MNIST that demonstrate differential privacy may be useful in giving adaptive guarantees beyond the statement of our theorems. Specifically we show that small amounts of noise addition (insufficient for our theorems to apply) already serve to break the adaptive deletion strategies that we use to falsify the adaptive deletion guarantees in our experiments described in Section 3 and do so at minimal expense in model accuracy.
36
+
37
+ # 1.2 Related Work
38
+
39
+ Data deletion was introduced by Cao and Yang [2015]; we adopt the randomized formulation of Ginart et al. [2019]. Ginart et al. [2019] anticipate the problem of deletion requests that might be correlated with internal state of the algorithm, and define (and propose as a study for future work) robust data deletion which is a data deletion guarantee that holds for adversaries with knowledge of the internal state. Our insight is that we can provide deletion guarantees against adaptive sequences by instead obscuring the internal state of the algorithm using techniques from differential privacy.
40
+
41
+ We are the first to explicitly consider the problem of adaptive sequences of deletion requests, but some techniques from past work do have deletion guarantees that extend to adaptive sequences. Deterministic methods and methods that depend only on randomness that is sampled after the deletion request are already robust to adaptive deletion. This includes techniques that find an approximately optimal solution to a strongly convex problem and then perturb the solution to obscure the optimizer within a small radius e.g. Guo et al. [2019], Neel et al. [2021], Sekhari et al. [2021]. It also includes the approach of Golatkar et al. [2020a,b] which pre-trains a nonconvex model on data that will never be deleted and then does convex fine-tuning on user data on top of that. Techniques whose deletion guarantees depend on randomness sampled at training in general do not have guarantees against adaptive deletions. This includes algorithms given in Ginart et al. [2019], Bourtoule et al. [2021], Neel et al. [2021] — the SISA framework of Bourtoule et al. [2021] being of particular interest as it is agnostic to the class of models and training methodology, and so is extremely flexible.
42
+
43
+ Differential privacy has been used as a mitigation for adaptivity since the work of Dwork et al. [2015c,a]. In machine learning, it has been used to mitigate the bias of adaptive data gathering strategies as used in bandit learning algorithms [Neel and Roth, 2018]. The application that is most similar to our work is Hassidim et al. [2020], which uses differential privacy of the internal randomness of an algorithm (as we do) to reduce streaming algorithms with guarantees against adaptive adversarial streams to streaming algorithms with guarantees against oblivious adversaries. Our techniques differ; while Hassidim et al. [2020] reduce to the so-called “transfer theorem for linear and low sensitivity queries” developed over a series of works Dwork et al. [2015c], Bassily et al. [2021], Jung et al. [2020], we use a more general connection between differential privacy and “max-information” established in Dwork et al. [2015b], Rogers et al. [2016].
44
+
45
+ # 2 Preliminaries
46
+
47
+ Let $\mathcal { Z }$ be the data domain. A dataset $D$ is a multi-set of elements from $\mathcal { Z }$ . We consider update requests of two types: deletion and addition. These update requests are formally defined below, similar to how they are defined in [Neel et al., 2021].
48
+
49
+ Definition 2.1 (Update Operations and Sequences). An update $u$ is a pair $( z , \bullet )$ where $z \in { \mathcal { Z } }$ is $a$ datapoint and $\bullet \in \mathcal { T } = \{ ^ { \prime } \mathbf { a d d } ^ { \prime } , ^ { \prime } \mathbf { d e l e t e } ^ { \prime } \}$ determines the type of the update. An update sequence $U$ is a sequence $( u ^ { 1 } , u ^ { 2 } , \ldots )$ where $u ^ { t } \in \mathcal { Z } \times \mathcal { T }$ for all $t$ . Given a dataset $D$ and an update $u = ( z , \bullet )$ , the update operation is defined as:
50
+
51
+ $$
52
+ D \circ u \triangleq { \left\{ { D \cup \{ z \} } \quad i f \bullet = { ' } { \mathsf { a d d } } ^ { \prime } \right.} _ { D \setminus \{ z \} } _ { i f \bullet = { ' } { \mathsf { d e l e t e } } ^ { \prime } }
53
+ $$
54
+
55
+ Given an update sequence $U = ( u ^ { 1 } , u ^ { 2 } , \ldots ) ;$ , we have $D \circ U \triangleq ( ( ( D \circ u ^ { 1 } ) \circ u ^ { 2 } ) \circ \ldots ) .$ .
56
+
57
+ We use $\Theta$ to denote the space of models. A learning or training algorithm is a mapping $\mathcal { A } : \mathcal { Z } ^ { * } \to \Theta ^ { * }$ that maps a dataset $D \in { \mathcal { Z } } ^ { * }$ to a collection of models $\theta \in \Theta ^ { * }$ . An unlearning or update algorithm for $\mathcal { A }$ is a mapping $\mathcal { R } _ { A } : \mathcal { Z } ^ { * } \times ( \mathcal { Z } \times \mathcal { T } ) \times \mathcal { S } \to \Theta ^ { * }$ which takes in a data set $D \in { \mathcal { Z } } ^ { * }$ , an update request $u \in \mathcal { Z } \times \mathcal { T }$ , and some current state for the algorithms $s \in S$ (the domain $s$ can be arbitrary), and outputs an updated collection of models $\theta ^ { \prime } \in \Theta ^ { * }$ . In this paper we consider a setting in which a stream of update requests arrive in sequence. We note that in this sequential framework, the update algorithm $\mathcal { R } _ { A }$ also updates the state of the algorithm after each update request is processed; however, for notational economy, we do not explicitly write the updated state as an output of the algorithm.
58
+
59
+ At each round, we provide access to the models through a mapping $f _ { \mathrm { p u b l i s h } } ^ { t } : \Theta ^ { * } \to \Psi$ that takes in the collection of models and outputs some object $\psi \in \Psi$ . A published object $\psi \in \Psi$ can, for instance, be the aggregate predictions of the learned models on a data set, or, some aggregation of the models. To model adaptively chosen update sequences, we define an arbitrary “update requester” who interacts with the learning and unlearning algorithms $( \mathcal { A } , \mathcal { R } _ { \mathcal { A } } )$ through the publishing function $f _ { \mathrm { p u b l i s h } }$ in rounds to generate a sequence of updates. The update requester is denoted by UpdReq and defined in Definition 2.2, and the interaction between the algorithms and the update requester is described in Algorithm 1.
60
+
61
+ Throughout we will use $u ^ { t }$ to denote the update request at round $t$ . We will use $D ^ { t }$ to denote the data set at round $t$ : $D ^ { 0 }$ is the initial training data set and for all $t \geq 1$ , $D ^ { t } = D ^ { t - 1 } \circ u ^ { t }$ . We will use $\theta ^ { t }$ to denote the learned models at round $t$ : $\theta ^ { 0 }$ is generated by the initial training algorithm $\mathcal { A }$ , and $\theta ^ { t }$ for $t \geq 1$ denotes the updated models at round $t$ generated by the update algorithm $\mathcal { R } _ { A }$ . $\psi ^ { t }$ denotes the published object at round $t$ : $\psi ^ { t } = f _ { \mathrm { p u b l i s h } } ^ { t } ( \theta ^ { t } )$ .
62
+
63
+ Algorithm 1: Interaction between $( \mathcal { A } , \mathcal { R } _ { \mathcal { A } } )$ and UpdReq
64
+
65
+ <table><tr><td></td><td>1: Input: Data set D</td></tr><tr><td>2:</td><td>Let D°← D.</td></tr><tr><td>3:</td><td>Train 0° ← A(D).</td></tr><tr><td>4:</td><td>Publish y0←pubish(00).</td></tr><tr><td>5:</td><td> Save the initial state so.</td></tr><tr><td>6:</td><td>for t = 1,2,... do</td></tr><tr><td>7:</td><td> The update requester requests a new update, given the history of interaction:</td></tr><tr><td>8:</td><td>ut←UpdReq(o,u¹,1,u², ,ut-1,γt-1).</td></tr><tr><td>9:</td><td>The algorithms update, given ut:</td></tr><tr><td>10:</td><td>Update the models 0t ← RA (Dt-1,ut,st-1).</td></tr><tr><td>11:</td><td>Publish bt ← fpubish (0t).</td></tr><tr><td>12:</td><td>Save the updated state st .</td></tr><tr><td>13:</td><td>Update the data set Dt ← Dt-1 o ut .</td></tr></table>
66
+
67
+ Definition 2.2 (Update Requester (UpdReq)). The update sequence is generated by an update requester which is modeled by a (possibly randomized) mapping UpdReq : $\Psi ^ { * } \times ( \mathcal { Z } \times \mathcal { T } ) ^ { * } ( \mathcal { Z } \times \mathcal { T } )$ that takes as input the history of interaction between herself and the algorithms, and outputs a new update for the current round. Given an update requester UpdReq, algorithms $( \mathcal { A } , \mathcal { R } _ { \mathcal { A } } )$ and publishing functions $\{ f _ { p u b l i s h } ^ { t } \} _ { t }$ , the update sequence $U = \{ u ^ { t } \} _ { t }$ can be written as
68
+
69
+ $$
70
+ \boldsymbol { u } ^ { 1 } = \mathrm { U p d R e q } \left( \boldsymbol { \psi } ^ { 0 } \right) , \boldsymbol { u } ^ { 2 } = \mathrm { U p d R e q } \left( \boldsymbol { \psi } ^ { 0 } , \boldsymbol { u } ^ { 1 } , \boldsymbol { \psi } ^ { 1 } \right) , \boldsymbol { \cdot } , \boldsymbol { \cdot } , \boldsymbol { u } ^ { t } = \mathrm { U p d R e q } \left( \boldsymbol { \psi } ^ { 0 } , \boldsymbol { u } ^ { 1 } , \boldsymbol { \psi } ^ { 1 } , \boldsymbol { \cdot } , \boldsymbol { \cdot } , \boldsymbol { u } ^ { t - 1 } , \boldsymbol { \psi } ^ { t - 1 } \right)
71
+ $$
72
+
73
+ We say an update requester UpdReq is nonadaptive if it is independent of the published objects, i.e., if there exists a mapping UpdR $\mathfrak { s q } ^ { \prime } : ( \mathcal { Z } \times \mathcal { T } ) ^ { \ast } ( \mathcal { Z } \times \mathcal { T } )$ such that for all $t \geq 1$ ,
74
+
75
+ $$
76
+ u ^ { t } = \mathtt { U p d R e q } \left( \psi ^ { 0 } , u ^ { 1 } , \psi ^ { 1 } , u ^ { 2 } , \ldots , u ^ { t - 1 } , \psi ^ { t - 1 } \right) = \mathtt { U p d R e q } ^ { \prime } \left( u ^ { 1 } , u ^ { 2 } , \ldots , u ^ { t - 1 } \right)
77
+ $$
78
+
79
+ This is equivalent to saying that the update sequence is fixed before the interaction occurs.
80
+
81
+ Following [Ginart et al., 2019], we propose the following definition for an unlearning algorithm in the sequential update setting ([Ginart et al., 2019] gives a definition for a single deletion request, whereas here we define a natural extension for an arbitrarily long sequence of deletions, as well as additions, that can be chosen adaptively.). Informally, we require that at every round, and for all possible update requesters, with high probability over the draw of the update sequence, no subset of models resulting from deletion occurs with substantially higher probability than it would have under full retraining.
82
+
83
+ Definition 2.3 $( \alpha , \beta , \gamma )$ -unlearning). We say that $\mathcal { R } _ { A }$ is an $( \alpha , \beta , \gamma )$ -unlearning algorithm for $\mathcal { A }$ if for all datasets $D = D ^ { 0 }$ and all update requesters UpdReq, the following condition holds: For every update step $t \geq 1$ , with probability at least $1 - \gamma$ over the draw of the update sequence $u ^ { \le t } \overset { \cdot } { = } \hat { ( } u ^ { 1 } , \ldots , \overset { \cdot } { u } ^ { t } )$ from UpdReq,
84
+
85
+ $$
86
+ \begin{array} { r } { \forall E \subseteq \Theta ^ { * } : \quad \operatorname* { P r } \left[ \mathcal { R } _ { { \cal A } } \left( D ^ { t - 1 } , u ^ { t } , s ^ { t - 1 } \right) \in E \middle | u ^ { \leq t } \right] \leq e ^ { \alpha } \cdot \operatorname* { P r } \left[ { \cal A } \left( D ^ { t } \right) \in E \right] + \beta } \end{array}
87
+ $$
88
+
89
+ We say $\mathcal { R } _ { A }$ is a nonadaptive $( \alpha , \beta , \gamma )$ -unlearning algorithm for $\mathcal { A }$ if the above condition holds for any nonadaptive UpdReq.
90
+
91
+ Remark 2.1. Our definition of unlearning is reminiscent of differential privacy, but following [Ginart et al., 2019], we ask only for $a$ one-sided guarantee: that the probability of any event under the unlearning scheme is not too much larger than the probability of the same event under full retraining, but not vice versa. The reason is that we do not want there to be events that can substantially increase an observer’s confidence that we did not engage in full retraining, but we do not object to observers who strongly update their beliefs that we did engage in full retraining. Our events $E$ are defined directly over the sets of models in $\Theta ^ { * }$ output by $\mathcal { A }$ and $\mathcal { R } _ { A }$ — note that because of information processing inequalities, this is only stronger than defining events $E$ over the observable outcome space $\Psi$ .
92
+
93
+ # 2.1 Differential Privacy and Max-Information
94
+
95
+ Differential privacy will be a key tool in our results. Let $\mathcal { X }$ denote an arbitrary data domain. We use $x \in \mathcal { X }$ to denote an individual element of $\mathcal { X }$ , and $X \in \mathcal { X } ^ { \ast }$ to denote a collection of elements from $\mathcal { X }$ — which we call a data set. We say two data sets $X , X ^ { \prime } \in { \mathcal { X } } ^ { * }$ are neighboring if they differ in at most one element. We say an algorithm $M : \mathcal { X } ^ { n } \mathcal { O }$ is differentially private if its output distributions on neighboring data sets are close, formalized below.
96
+
97
+ Definition 2.4 (Differential Privacy (DP) [Dwork et al., 2006b,a]). An algorithm $M : \mathcal { X } ^ { m } \mathcal { O }$ is $( \epsilon , \delta )$ -differentially private, if for every neighboring $X$ and $X ^ { \prime }$ , and for every $O \subseteq { \mathcal { O } }$ , we have $\mathrm { P r } \left[ M ( X ) \in O \right] \leq e ^ { \epsilon } \mathrm { P r } \left[ M ( \dot { X } ^ { \prime } ) \in O \right] + \delta$ .
98
+
99
+ We remark at the outset that the “datasets” to which we will eventually ask for differential privacy with respect to will not be the datasets on which our learning algorithms are trained, but will instead be collections of random bits parameterizing our randomized algorithms.
100
+
101
+ Differentially private algorithms are robust to data-independent post-processing:
102
+
103
+ Lemma 2.1 (Post-processing preserves DP [Dwork et al., 2006b]). If $M : \mathcal { X } ^ { m } \mathcal { O }$ is $( \epsilon , \delta )$ - differentially private, then for all $f : \mathcal { O } \mathcal { R }$ , we have $f \circ M : \mathcal { X } ^ { m } \mathcal { R }$ defined by $f \circ M ( X ) =$ $f ( M ( X ) )$ is $( \epsilon , \delta )$ -differentially private.
104
+
105
+ The max-information between two jointly distributed random variables measures how close their joint distribution is to the product of their corresponding marginal distributions.
106
+
107
+ Definition 2.5 (Max-Information [Dwork et al., 2015b]). Let $X$ and $Y$ be jointly distributed random variables over the domain $( \mathcal { X } , \mathcal { Y } )$ . The $\beta$ -approximate max-information between $X$ and $Y$ is:
108
+
109
+ $$
110
+ I _ { \infty } ^ { \beta } ( X ; Y ) = \log \operatorname* { s u p } _ { \substack { E \subseteq ( \mathcal { X } , \mathcal { Y } ) , \operatorname* { P r } [ ( X , Y ) \in E ] > \beta } } \frac { \operatorname* { P r } [ ( X , Y ) \in E ] - \beta } { \operatorname* { P r } [ ( X \otimes Y ) \in E ] }
111
+ $$
112
+
113
+ where $( X \otimes Y )$ represents the product distribution of $X$ and $Y$ .
114
+
115
+ The max-information of an algorithm $M$ that takes a dataset $X$ as input and outputs $M ( X )$ , is defined as the max-information between $X$ and $M ( X )$ for the worst case product distribution over $X$ :
116
+
117
+ Definition 2.6 (Max-Information of an Algorithm [Dwork et al., 2015b]). Let $M : \mathcal { X } ^ { m } \mathcal { O }$ be an Algorithm. We say $M$ has $\beta$ -approximate max-information of $k$ , written $T _ { \infty } ^ { \beta } ( M , m ) \leq k$ , if for every distribution $\mathcal { P }$ over $\mathcal { X }$ , we have $I _ { \infty } ^ { \beta } ( X ; M ( X ) ) \le k$ when $X \sim \mathcal { P } ^ { m }$ .
118
+
119
+ In this paper, we will use the fact that differentially private algorithms have bounded max-information:
120
+
121
+ Theorem 2.1 (DP implies bounded max-information [Rogers et al., 2016]). Let $M : \mathcal { X } ^ { m } \mathcal { O }$ be an $( \epsilon , \delta )$ -differentially private algorithm for $0 < \epsilon \le 1 / 2$ and $0 < \delta < \epsilon$ . Then, $I _ { \infty } ^ { \beta } ( M , m ) =$ $O \left( \epsilon ^ { 2 } m + m \sqrt { \delta / \epsilon } \right) f o r \beta = e ^ { - \epsilon ^ { 2 } m } + O \left( m \sqrt { \delta / \epsilon } \right) .$ .
122
+
123
+ # 3 Falsifying Unlearning Guarantees with Adaptivity
124
+
125
+ In this section we demonstrate that the deletion guarantees of algorithms in the SISA framework [Bourtoule et al., 2021] fail for adaptive deletion sequences. We give a clean toy construction which shows algorithms in the SISA framework fail to have nontrivial adaptive deletion guarantees even in the black-box setting when the models within each shard are not made public, only aggregations of their classification outputs. In the Appendix we experimentally evaluate a more realistic instantiation of this construction.
126
+
127
+ The setting we consider directly corresponds to the setting in which our final algorithms operate: what is made public is the aggregate predictions of the ensemble of models, but not the models themselves. For non-adaptive sequences of deletions, distributed algorithms of the sort described in Section 5 have perfect deletion guarantees. We demonstrate via a simple example that these guarantees dramatically fail for adaptive deletion sequences.
128
+
129
+ Suppose we have a dataset consisting of real-valued points with binary labels $\{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { 2 n }$ , $x _ { i } \in \mathbb { R } ^ { d }$ $y _ { i } \ \stackrel { - } { \in } \ \{ 0 , 1 \}$ in which there are exactly two copies of each distinct training example. Consider a simplistic classification model, resembling a lookup table, which given a point $x _ { i }$ predicts the label $y _ { i }$ if the model has been trained on $( x _ { i } , y _ { i } )$ and a dummy prediction value " $" \perp "$ otherwise:
130
+
131
+ $$
132
+ f _ { \mathcal { D } } ( x _ { i } ) = \left\{ \begin{array} { l l } { y _ { i } } & { \mathrm { i f } \left( x _ { i } , y _ { i } \right) \in \mathcal { D } , } \\ { \perp } & { \mathrm { o t h e r w i s e } } \end{array} \right.
133
+ $$
134
+
135
+ Consider what happens when the training algorithm randomly partitions this dataset into three pieces and trains such a model on each partition. This constructs an ensemble which, at query time, predicts the class with the majority vote. On this dataset, the ensemble will predict the labels of roughly $2 / 3$ of the training points correctly—that is, exactly those points for which the duplicates have fallen into distinct partitions, so that the ensemble gets the majority vote right.
136
+
137
+ We construct an adaptive adversary who chooses to delete exactly those training points that the ensemble correctly classifies (which are those points for whom the duplicates have fallen into distinct shards). The result is that the model resulting from this deletion sequence will misclassify every remaining training point. Full retraining (because it would rerandomize the partition) would again lead to training accuracy of approximately $2 / 3$ . Recalling that our deletion notion requires that the probability of any event under the unlearning scheme is not much larger than the probability of the same event under full retraining, this demonstrates that there are algorithms in the SISA framework — even if the models are not directly exposed — that do not satisfy $( \alpha , \beta , \gamma )$ -deletion guarantees for any nontrivial value of $\alpha$ . We formalize this below:
138
+
139
+ Theorem 3.1. There are learning and unlearning algorithms in the SISA framework $( \mathcal { A } , \mathcal { R } _ { \mathcal { A } } )$ such that for any $\alpha _ { i }$ , and any $\beta , \gamma < 1 / 4$ , $\mathcal { R } _ { A }$ is not an $( \alpha , \beta , \gamma )$ -unlearning algorithm for $\mathcal { A }$ .
140
+
141
+ A proof of this theorem can be found in the appendix.
142
+
143
+ # 4 A Reduction from Adaptive to Nonadaptive Update Requesters
144
+
145
+ In our analysis we imagine without loss of generality that the learning algorithm $\mathcal { A }$ draws an i.i.d. sequence of random variables $r \sim \mathcal { P } ^ { m }$ (that encodes all the randomness to be used over the course of the updates) from some distribution $\mathcal { P }$ , and passes it to the unlearning algorithm $\mathcal { R } _ { A }$ . Note $r$ is drawn once in the initial training, and given $r$ , $\mathcal { A }$ and $\mathcal { R } _ { A }$ become deterministic mappings. We can also view the state $s ^ { t }$ as a deterministic mapping of $r$ , the update requests so far $u ^ { \le t } = ( \bar { u ^ { 1 } } , \dots , u ^ { t } )$ , and the original data set $D ^ { 0 }$ . We write $s ^ { t } = g ^ { t } \bar { ( } D ^ { 0 } , u ^ { \le t } , r \bar { ) }$ for some deterministic mapping $g ^ { t }$ . We can therefore summarize the trajectory of the algorithms $( \mathcal { A } , \mathcal { R } _ { \mathcal { A } } )$ as follows.
146
+
147
+ In this view, the randomness $r$ used by the learning algorithm $\mathcal { A }$ and the subsequent invocations of the unlearning algorithm $\mathcal { R } _ { A }$ is represented as part of the internal state. Past analyses of unlearning algorithms have crucially assumed that $r$ is statistically independent of the updates $( \dot { u } ^ { 1 } , u ^ { 2 } , \dots )$ (which is the case for non-adaptive update requesters, but not for adaptive update requesters). In the following general theorem, we show that if a learning/unlearning pair satisfies unlearning guarantees against non-adaptive update requesters, and the publishing function is differentially private in the internal randomness $r$ , then the resulting algorithms also satisfy unlearning guarantees against adaptive update requesters. Note that what is important is that the publishing algorithms are differentially private in the internal randomness $r$ , not in the datapoints used for training.
148
+
149
+ Theorem 4.1 (A General Theorem). Fix a pair of learning and unlearning algorithms $( \mathcal { A } , \mathcal { R } _ { \mathcal { A } } )$ and the publishing functions $\{ f _ { p u b l i s h } ^ { t } \} _ { t }$ . Suppose for every round $t$ , the sequence of publishing functions $\{ f _ { p u b l i s h } ^ { t ^ { \prime } } \} _ { t ^ { \prime } \leq t }$ is $( \epsilon , \delta )$ -differentially private in $r \sim \mathcal { P } ^ { m }$ , for $0 < \epsilon \le 1 / 2$ and $0 < \delta < \epsilon$ . Suppose $\mathcal { R } _ { A }$ is a non-adaptive $( \alpha , \beta , \gamma )$ -unlearning algorithm for $\mathcal { A }$ . Then $\mathcal { R } _ { A }$ is an $( \alpha ^ { \prime } , \beta ^ { \prime } , \gamma ^ { \prime } )$ -unlearning algorithm for $\mathcal { A }$ for $\alpha ^ { \prime } = \alpha + \epsilon ^ { \prime } , \beta ^ { \prime } = \beta e ^ { \epsilon ^ { \prime } } + \sqrt { \delta ^ { \prime } } , \gamma ^ { \prime } = \gamma + \sqrt { \delta ^ { \prime } }$ where $\epsilon ^ { \prime } = O \left( \epsilon ^ { 2 } m + m \sqrt { \delta / \epsilon } \right)$ and $\delta ^ { \prime } = e ^ { - \epsilon ^ { 2 } m } + O \left( m \sqrt { \delta / \epsilon } \right) .$ .
150
+
151
+ The proof can be found in the Appendix, but at an intuitive level, it proceeds as follows. Because it does not change the joint distribution on update requests and internal state, we can imagine in our analysis that $r$ is redrawn after each update request from its conditional distribution, conditioned on the observed update sequence so far. Because the publishing function is differentially private in $r$ , by the fact that post-processing preserves differential privacy (Lemma 2.1), so is the update sequence. We may therefore apply the max-information bound (Theorem 2.1), which allows us to relate the conditional distribution on $r$ to its original (prior) distribution $\mathcal { P } ^ { m }$ . But resampling $r$ from $\mathcal { P } ^ { m }$ removes the dependence between $r$ and the update sequence, which places us in the non-adaptive case, and allows us to apply the hypothesized unlearning guarantees for nonadaptive update requesters.
152
+
153
+ Algorithm 2: ${ \mathcal { A } } ^ { \mathrm { d i s t r } }$ : Distributed Learning Algorithm
154
+
155
+ <table><tr><td>Input: dataset D = D° of size n Draw the shards: D = Sampler(D°,p), for every i ∈ [k]. Train the models: 0 = Asingle(D),for every i∈ [k]. Save the state: s°= ({D&#x27;}i∈[k],{}iε[k]) // to be used for the 1st update.</td></tr></table>
156
+
157
+ # 5 Distributed Algorithms
158
+
159
+ In this section, we describe a general family of distributed learning and unlearning algorithms that are in the spirit of the “SISA” framework of Bourtoule et al. [2021] (with one crucial modification). At a high level, the SISA framework operates by first randomly dividing the data into $k$ “shards”, and separately training a model on each shard. When a new point is deleted, it is removed from the shards that contained it, and only the models corresponding to those shards are retrained. The flexibility of this methodology is that the models and training procedures used in each shard can be arbitrary, as can the aggregation done at the end to convert the resulting ensemble into predictions: however these choices are instantiated, this framework gives a $( 0 , 0 , 0 )$ -unlearning algorithm against any non-adaptive update requester (Lemma 5.1). Here we show that if the $k$ shards are selected independently of one another, then we can apply our reduction given in the previous section with $m = k$ and obtain algorithms that satisfy deletion guarantees against adaptive update requesters.
160
+
161
+ A distributed learning algorithm $\mathcal { A } ^ { \mathrm { d i s t r } } : \mathcal { Z } ^ { * } \to \Theta ^ { * }$ is described by a single-shard learning algorithm $\mathcal { A } ^ { \mathrm { s i n g l e } } : \mathcal { Z } ^ { * } \to \Theta$ and a routine Sampler, used to select the points in a shard. Sampler, given a dataset $D$ and some probability $p \in [ 0 , 1 ]$ , includes each element of $D$ in the shard with probability $p$
162
+
163
+ Distributed learning algorithm ${ \mathcal { A } } ^ { \mathrm { d i s t r } }$ creates $k$ independent shards from the dataset $D$ of size $n$ by running Sampler $k$ times and training a model with $\bar { \mathcal { A } } ^ { \mathrm { s i n g l e } }$ on each shard $i \in [ k ]$ to form an ensemble of $k$ models. To emphasize that the randomness across shards is independent, we will instantiate $k$ independent samplers $\mathtt { S a m p l e r } _ { i }$ and training algorithms $\mathcal { A } _ { i } ^ { \mathrm { s i n g l e } }$ for each shard $i \in [ k ]$ . We formally describe ${ \mathcal { A } } ^ { \mathrm { d i s t r } }$ in Algorithm 2.
164
+
165
+ The state $s$ of the unlearning algorithm ${ \mathcal { R } } _ { A ^ { \mathrm { d i s t r } } }$ records the $k$ shards $\{ D _ { i } \} _ { i }$ and the ensemble of $k$ models $\{ \theta _ { i } \} _ { i }$ . Thus $\mathcal { S } = \{ \mathcal { Z } ^ { * } \} ^ { k } \times \Theta ^ { k }$ . As an update request $u$ is received, the update function removes the data point from every shard that contains it (for deletion) or adds the new point to each shard with probability $p$ (for addition). In either case, only the models corresponding to shards that have been updated are retrained using $\mathcal { A } ^ { \mathrm { s i n g l e } }$ . We formally describe ${ \mathcal { R } } _ { A ^ { \mathrm { d i s t r } } }$ in Algorithm 3.
166
+
167
+ First, we show that if the update requester is non-adaptive, ${ \mathcal { R } } _ { A ^ { \mathrm { d i s t r } } }$ is a $( 0 , 0 , 0 )$ -unlearning algorithm: Lemma 5.1. $\mathcal { R } _ { \mathcal { A } ^ { d i s t r } }$ is a non-adaptive $( 0 , 0 , 0 )$ -unlearning algorithm for $\mathcal { A } ^ { d i s t r }$ .
168
+
169
+ Now, by combining Lemma 5.1 and our general Theorem 4.1, we can show the following:
170
+
171
+ Theorem 5.1 (Unlearning Guarantees). If for every round $t$ , the sequence of publishing functions $\{ f _ { p u b l i s h } ^ { t ^ { \prime } } \} _ { t ^ { \prime } \leq t }$ is $( \epsilon , \delta )$ -differentially private in the random seeds $r \sim \mathcal { P } ^ { k }$ of the algorithms for $0 < \epsilon \leq 1 / 2$ and $0 < \delta < \epsilon _ { \cdot }$ , then $\mathcal { R } _ { \mathcal { A } ^ { d i s t r } }$ is an $( \alpha , \beta , \gamma )$ -unlearning algorithm for $\mathcal { A } ^ { d i s t r }$ where
172
+
173
+ $$
174
+ \alpha = O \left( \epsilon ^ { 2 } k + k \sqrt { \delta / \epsilon } \right) , \quad \beta = \gamma = O \left( \sqrt { e ^ { - \epsilon ^ { 2 } k } + k \sqrt { \delta / \epsilon } } \right)
175
+ $$
176
+
177
+ Next, we bound the time complexity of our algorithms:
178
+
179
+ Input: dataset $D ^ { t - 1 }$ , update $u ^ { t } = ( z ^ { t } , \bullet ^ { t } )$ , state $s ^ { t - 1 } = ( \{ D _ { i } ^ { t - 1 } \} _ { i \in [ k ] } , \{ \theta _ { i } ^ { t - 1 } \} _ { i \in [ k ] } )$
180
+ if $\bullet ^ { t } = { } ^ { \prime } \mathtt { d e l e t e } ^ { \prime }$ then $S = \left\{ i \in [ k ] : z ^ { t } \in D _ { i } ^ { t - 1 } \right\} / /$ the shards $z ^ { t }$ belongs to.
181
+ else $S = \{ i \in [ k ] : \mathtt { S a m p l e r } _ { i } ( \{ z ^ { t } \} , p ) \neq \{ \} \} / \prime$ the shards $z ^ { t }$ will be added to.
182
+ Update the shards: $D _ { i } ^ { t } = \left\{ { D _ { i } ^ { t - 1 } \circ u } \right.$ t if ot $i \in S$ se , for every $i \in [ k ]$ .
183
+ Update the models: $\theta _ { i } ^ { t } = \Big \{ \mathcal { A } _ { i } ^ { \mathrm { s i n g l e } } ( D _ { i } ^ { t } )$ if ot $i \in S$ se , for every $i \in [ k ]$ .
184
+ Update the state: $s ^ { t } = ( \{ D _ { i } ^ { t } \} _ { i \in [ k ] } , \{ \theta _ { i } ^ { t } \} _ { i \in [ k ] } ) / /$ to be used for the next update.
185
+ Output: {θti }i∈[k]
186
+
187
+ Theorem 5.2 (Run-time Guarantees). Let $p = 1 / k$ . Suppose the publishing functions satisfy the differential privacy requirement of Theorem 5.1. Let $N ^ { t }$ denote the number of times $\mathcal { R } _ { \mathcal { A } } ^ { d i s t r }$ calls $\mathcal { A } ^ { s i n g l e }$ at round $t$ . We have that $N ^ { 0 } = k$ , and for every round $t \geq 1$ : 1) if the update requester is non-adaptive, for every $\xi$ , with probability at least $1 - \xi$ , $N ^ { t } \leq 1 + \sqrt { 2 \log { ( 1 / \xi ) } }$ . 2) if the update requester is adaptive, for every $\xi$ , with probability at least 1 − ξ, $N ^ { t } \leq 1 + \sqrt { 2 \log { ( ( n + t ) / \xi ) } }$ . Furthermore, for $\xi > \delta ^ { \prime }$ , with probability at least $1 - \xi$ , we have
188
+
189
+ $$
190
+ \begin{array} { c } { { N ^ { t } \leq 1 + \operatorname* { m i n } \left\{ \sqrt { 2 \log \left( 2 ( n + t ) / ( \xi - \delta ^ { \prime } ) \right) } , \sqrt { 2 \epsilon ^ { \prime } + 2 \log \left( 2 / ( \xi - \delta ^ { \prime } ) \right) } \right\} } } \\ { { { } } } \\ { { = O \left( \epsilon ^ { 2 } k + k \sqrt { \delta / \epsilon } \right) a n d \delta ^ { \prime } = e ^ { - \epsilon ^ { 2 } k } + O \left( k \sqrt { \delta / \epsilon } \right) } } \end{array}
191
+ $$
192
+
193
+ The proof can be found in the appendix, but at a high level it proceeds as follows. For a deletion request, we must retrain every shard that contains the point to be deleted. For a non-adaptive deletion request, we retrain one shard in expectation and we can obtain a high probability upper bound by using a Hoeffding bound. In the adaptive case, this may no longer be true, but there are two ways to obtain upper bounds that correspond to the two bounds in our Theorem. We can provide a worst-case upper bound on the number of shards that any of the √ $n$ data points belongs to, which incurs a cost of order $\sqrt { \log n }$ . Alternately, we can apply max-information bounds to reduce to the non-adaptive case, using an argument that is similar to our reduction for deletion guarantees.
194
+
195
+ Remark 5.1. We note that there is an alternative algorithm that one might consider, resulting from group differential privacy. If a learning algorithm satisfies $\frac { \epsilon } { k }$ −differential privacy, a valid unlearning procedure is to do nothing for $k$ updates and then fully retrain on the $( k + 1 ) ^ { t h }$ update. This follows from the −differential privacy guarantee the algorithm will have for groups of size $k$ . Our algorithm substantially outperforms this alternative algorithm as well, namely because our privacy parameter degrades much slower than in this group privacy baseline. Our analysis leverages adaptive composition of privacy across the publishing functions which means that privacy degrades with the square root of the number of updates, while it degrades linearly with group privacy. Consequently the group privacy baseline would require a full retraining every $k$ updates, but our algorithm requires a full retraining only every $k ^ { 2 }$ updates.
196
+
197
+ # 5.1 Private Aggregation
198
+
199
+ We briefly describe how we serve prediction requests by privately aggregating the output of the ensemble of models such that the published predictions are differentially private in the random seeds $r$ . At each round $t$ , while $\mathcal { R } _ { \mathcal { A } } ^ { \mathrm { d i s t r } }$ is waiting for the next update request $\hat { u ^ { t + 1 } }$ , we receive prediction requests $x$ and serve predictions $\hat { y }$ . For each prediction request, we privately aggregate the predictions made by the ensemble of models $\{ \theta _ { i } ^ { t } \} _ { i }$ ; Dwork and Feldman [2018] show several ways to privately aggregate predictions (one simple technique is to use the exponential mechanism to approximate the majority vote). Suppose we aggregate the predictions made by the ensemble of models using PrivatePredi $\mathfrak { L } _ { \epsilon ^ { \prime } } ^ { k } : \bar { \Theta } ^ { k } \times \mathcal { X } \stackrel { \left. } { \right. } \mathcal { Y }$ , which takes in an ensemble of $k$ models and a data point, aggregates predictions from the ensemble models, and outputs a label that is $\epsilon ^ { \prime }$ -differentially private in the models. If we receive $l ^ { t }$ many prediction requests $( x _ { 1 } ^ { t } , \ldots , x _ { l ^ { t } } ^ { t } )$ before our next update request $\boldsymbol u ^ { t + 1 }$ , we can write $( \hat { y } _ { 1 } ^ { t } , \dots , \hat { y } _ { l ^ { t } } ^ { t } ) = f _ { \mathrm { p u b l i s h } } ^ { t } ( \{ \theta _ { i } ^ { t } \} _ { i } )$ where $\begin{array} { r } { \hat { y } _ { j } ^ { t } = \mathtt { P r i v a t e P r e d i c t } _ { \epsilon ^ { \prime } } ^ { k } ( \{ \theta _ { i } ^ { t } \} _ { i } , x _ { j } ^ { t } ) . } \end{array}$ .
200
+
201
+ Theorem 5.1, tells us that desired unlearning parameters $( \alpha , \beta , \gamma )$ can be obtained by guaranteeing that the sequence of predictions is $( \epsilon , \delta )$ differentially private in the models (and hence $r$ ), for target parameters $\epsilon , \delta$ . As we serve prediction requests using PrivatePredict $\mathbf { \Sigma } _ { \epsilon ^ { \prime } } ^ { k }$ our privacy loss will accumulate and eventually exhaust our budget of $( \epsilon , \delta )$ -differential privacy. Hence we must track our accumulated privacy loss in the state of our unlearning algorithm, and when it is exhausted, fully retrain using $\bar { \mathcal { A } } ^ { \mathrm { d i s t r } }$ . This resamples $r$ and hence resets our privacy budget. Standard composition theorems (see Dwork and Roth [2014]) show that we exhaust our privacy budget (and need to fully retrain) every time the number of prediction requests made since the last full retraining exceeds $\left\lfloor { \frac { \epsilon ^ { 2 } } { 8 ( \epsilon ^ { \prime } ) ^ { 2 } \ln ( { \frac { 1 } { \delta } } ) } } \right\rfloor$ We formally describe this process denoted as PrivatePredictionInteraction $( \epsilon ^ { \prime } , \epsilon , \delta , k )$ in the appendix and state its unlearning guarantee in Theorem 5.3.
202
+
203
+ Theorem 5.3. The models $\{ \{ \theta _ { i } ^ { t } \} _ { i } \} _ { t }$ in PrivatePredictionInteraction $( \epsilon ^ { \prime } , \epsilon , \delta , k )$ satisfy $( \alpha , \beta , \gamma )$ -unlearning guarantee for $\mathcal { A } ^ { d i s t r }$ where $\begin{array} { r l r } { \alpha } & { { } = } & { O \left( \epsilon ^ { 2 } k + k \sqrt { \delta / \epsilon } \right) } \end{array}$ and $\beta , \gamma \quad = \quad$ $O \left( \sqrt { e ^ { - \epsilon ^ { 2 } k } + k \sqrt { \delta / \epsilon } } \right)$ , $i f 0 < \epsilon \leq 1 / 2$ and $0 < \delta < \epsilon$ .
204
+
205
+ # 6 Evaluation of Unlearning Guarantees
206
+
207
+ In this section we consider the white-box setting in which the models in each shard are made public. SISA continues to have perfect deletion guarantees against non-adaptive deletion sequences in this setting. Experimental results on CIFAR-10 [Krizhevsky and Hinton, 2009], MNIST [Lecun et al., 1998], and Fashion-MNIST [Xiao et al., 2017] show both the failure of SISA to satisfy adaptive deletion guarantees, and give evidence that differential privacy can mitigate this problem well beyond the setting of our theorems while achieving accuracy only modestly worse than SISA. The code for our experiments can be found at https://github.com/ChrisWaites/adaptive-machine-unlearning.
208
+
209
+ We train SISA with an ensemble of convolutional neural networks on several datasets of points with categorical labels. Given a new point at query time, each model in the ensemble votes on the most likely label and aggregates their votes. The models are exposed publicly. This scheme has perfect non-adaptive deletion guarantees.
210
+
211
+ To construct an adaptive deletion sequence to falsify the hypothesis that the scheme has adaptive deletion guarantees, we exploit the observation that neural networks are often overconfident in the correct label for points on which they have been trained. For each training point, we guess that it falls into the shard corresponding to the model that has the highest confidence for the correct label. We then delete points for which we guess that they fall into the first $k / 2$ of the shards, and do not delete any others. After deleting the targeted points, we compute a test statistic: the indicator of whether the average accuracy of the models from the targeted shards is lower than the average accuracy of the models from the non-targeted shards. Under full retraining, by the symmetry of the random partition, the expectation of this test statistic is 0.5. Thus under the null hypothesis that the deletion algorithm satisfies perfect deletion guarantees, the test statistic also has expectation 0.5. Therefore, to the extent that the expectation of the indicator differs from 0.5, we falsify the null hypothesis that SISA has adaptive data deletion guarantees, and larger deviations from 0.5 falsify weaker deletion guarantees.
212
+
213
+ We run this experiment on three datasets (CIFAR-10, MNIST, and Fashion-MNIST), and plot the results in Figure 1. We then repeat the experiment by adding various amounts of noise to the gradients in the model training process to guarantee finite levels of differential privacy (though much weaker privacy guarantees than would be needed to invoke our theorems). We observe that on each dataset, modest amounts of noise are sufficient to break our attack (i.e. $9 5 \%$ confidence intervals for the expectation of our indicator include 0.5, and hence fail to falsify the null hypothesis) while still approaching the accuracy of our models trained without differential privacy. This is also plotted in Figure 1. This gives evidence that differential privacy can improve deletion guarantees in the presence of adaptivity even in regimes beyond which our theory gives nontrivial guarantees.
214
+
215
+ Full experimental details can be found in the appendix.
216
+
217
+ ![](images/44fba5964c6c783ca2ae42a63a10ae0552b68072bfa7bccf8697ae8c62cbba64.jpg)
218
+ Figure 1: The top row and bottom row show experiments with $k = 6$ and $k = 2$ shards respectively. The 3 columns report on 3 datasets. The $x$ axis denotes estimated expectation of our test statistic (the null hypothesis is expectation 0.5). The $y$ axis denotes the accuracy of the ensemble after deletion. Each point is annotated with the noise multiplier used in DP-SGD, the standard deviation of Gaussian noise applied to gradients during training. A label of 0.0 for a point represents the baseline case of no noise (original SISA algorithm). Points are affixed with $9 5 \%$ confidence intervals along both axes (over the randomness of repeating the training/deletion experiment). Horizontal confidence intervals that overlap the line denoting expectation 0.5 fail to reject the null hypothesis that the algorithm has adaptive data deletion guarantees at $p \leq 0 . 0 5$ . We get to this point with a level of noise addition that results in only a modest degradation in ensemble performance compared to SISA.
219
+
220
+ # 7 Conclusion and Discussion
221
+
222
+ We identify an important blindspot in the data deletion literature (the tenuous implicit assumption that deletion requests are independent of previously released models), and provide a very general methodology to reduce adaptive deletion guarantees to oblivious deletion guarantees. Through this reduction we get the first model and training algorithm agnostic methodology that allows for deletion of arbitrary sequences of adaptively chosen points while giving rigorous guarantees. The constants that our theorems inherit from the max information bounds of Rogers et al. [2016] are such that in most realistic settings they will not give useful parameters. But we hope that these constants will be improved in future work, and we give empirical evidence that differential privacy mitigates adaptive deletion “attacks” at very practical levels, beyond the promises of our theoretical results. We note that like for differential privacy, the $( \alpha , \beta , \gamma )$ -deletion guarantees we give in this paper are parameterized, and are not meaningful absent a specification of those parameters. There is a risk with such technologies that they will be used with large values of the parameters that give only very weak guarantees, but will be described publicly in a way that glosses over this issue. We therefore recommend that if adopted in deployed products, deletion guarantees always be discussed in public in a way that is precise about what they promise, including the relevant parameter settings.
223
+
224
+ # Acknowledgements
225
+
226
+ V.G., C.J., A.R., and S.S. were supported in part by NSF grants CCF-1934876 and AF-1763307, and a grant from the Simons Foundation.
227
+
228
+ # References
229
+
230
+ Raef Bassily, Kobbi Nissim, Adam Smith, Thomas Steinke, Uri Stemmer, and Jonathan Ullman. Algorithmic stability for adaptive data analysis. SIAM Journal on Computing, (0):STOC16–377, 2021.
231
+
232
+ Lucas Bourtoule, Varun Chandrasekaran, Christopher Choquette-Choo, Hengrui Jia, Adelin Travers, Baiwu Zhang, David Lie, and Nicolas Papernot. Machine unlearning. In Proceedings of the 42nd IEEE Symposium on Security and Privacy, San Francisco, CA., 2021.
233
+
234
+ James Bradbury, Roy Frostig, Peter Hawkins, Matthew James Johnson, Chris Leary, Dougal Maclaurin, George Necula, Adam Paszke, Jake VanderPlas, Skye Wanderman-Milne, and Qiao Zhang. JAX: composable transformations of Python+NumPy programs, 2018. URL http://github.com/google/jax.
235
+
236
+ Yinzhi Cao and Junfeng Yang. Towards making systems forget with machine unlearning. In 2015 IEEE Symposium on Security and Privacy, pages 463–480. IEEE, 2015.
237
+
238
+ Cynthia Dwork and Vitaly Feldman. Privacy-preserving prediction. CoRR, abs/1803.10266, 2018. URL http://arxiv.org/abs/1803.10266.
239
+
240
+ Cynthia Dwork and Aaron Roth. The algorithmic foundations of differential privacy. Foundations and Trends® in Theoretical Computer Science, 9(3–4):211–407, 2014.
241
+
242
+ 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, 2006a.
243
+
244
+ 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, 2006b.
245
+
246
+ Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Roth. The reusable holdout: Preserving validity in adaptive data analysis. Science, 349(6248):636–638, 2015a.
247
+
248
+ Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Roth. Generalization in adaptive data analysis and holdout reuse. In Proceedings of the 28th International Conference on Neural Information Processing Systems-Volume 2, pages 2350–2358, 2015b.
249
+
250
+ Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Leon Roth. Preserving statistical validity in adaptive data analysis. In Proceedings of the forty-seventh annual ACM symposium on Theory of computing, pages 117–126, 2015c.
251
+
252
+ Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confidence information and basic countermeasures. In Indrajit Ray, Ninghui Li, and Christopher Kruegel, editors, Proceedings of the 22nd ACM SIGSAC Conference on Computer and Communications Security, Denver, CO, USA, October 12-16, 2015, pages 1322–1333. ACM, 2015. doi: 10.1145/ 2810103.2813677. URL https://doi.org/10.1145/2810103.2813677.
253
+
254
+ Antonio Ginart, Melody Y. Guan, Gregory Valiant, and James Zou. Making AI forget you: Data deletion in machine learning. CoRR, abs/1907.05012, 2019. URL http://arxiv.org/abs/ 1907.05012.
255
+
256
+ Aditya Golatkar, Alessandro Achille, Avinash Ravichandran, Marzia Polito, and Stefano Soatto. Mixed-privacy forgetting in deep networks. arXiv preprint arXiv:2012.13431, 2020a.
257
+
258
+ Aditya Golatkar, Alessandro Achille, and Stefano Soatto. Forgetting outside the box: Scrubbing deep networks of information accessible from input-output observations. In European Conference on Computer Vision, pages 383–398. Springer, 2020b.
259
+
260
+ Chuan Guo, Tom Goldstein, Awni Hannun, and Laurens van der Maaten. Certified data removal from machine learning models. arXiv preprint arXiv:1911.03030, 2019.
261
+
262
+ Avinatan Hassidim, Haim Kaplan, Yishay Mansour, Yossi Matias, and Uri Stemmer. Adversarially robust streaming algorithms via differential privacy. In Hugo Larochelle, Marc’Aurelio Ranzato, Raia Hadsell, Maria-Florina Balcan, and Hsuan-Tien Lin, editors, Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS 2020, December 6-12, 2020, virtual, 2020. URL https://proceedings.neurips. cc/paper/2020/hash/0172d289da48c48de8c5ebf3de9f7ee1-Abstract.html.
263
+
264
+ The U.K. Information Commissioner’s Office ICO. Guidance on the ai auditing framework. Draft Consultation, 2020. URL https://ico.org.uk/media/about-the-ico/consultations/ 2617219/guidance-on-the-ai-auditing-framework-draft-for-consultation.pdf.
265
+
266
+ Christopher Jung, Katrina Ligett, Seth Neel, Aaron Roth, Saeed Sharifi-Malvajerdi, and Moshe Shenfeld. A new analysis of differential privacy’s generalization guarantees. In 11th Innovations in Theoretical Computer Science Conference (ITCS 2020), volume 151, page 31. Schloss Dagstuhl– Leibniz-Zentrum fuer Informatik, 2020.
267
+
268
+ Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. 2009.
269
+
270
+ Yann Lecun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document recognition. In Proceedings of the IEEE, pages 2278–2324, 1998.
271
+
272
+ Seth Neel and Aaron Roth. Mitigating bias in adaptive data gathering via differential privacy. In International Conference on Machine Learning, pages 3720–3729. PMLR, 2018.
273
+
274
+ Seth Neel, Aaron Roth, and Saeed Sharifi-Malvajerdi. Descent-to-delete: Gradient-based methods for machine unlearning. In Algorithmic Learning Theory, pages 931–962. PMLR, 2021.
275
+
276
+ Nicolas Papernot, Shuang Song, Ilya Mironov, Ananth Raghunathan, Kunal Talwar, and Úlfar Erlingsson. Scalable private learning with pate, 2018.
277
+
278
+ Nicolas Papernot, Abhradeep Thakurta, Shuang Song, Steve Chien, and Ulfar Erlingsson. Tempered sigmoid activations for deep learning with differential privacy. The 35th AAAI Conference on Artificial Intelligence, 2021.
279
+
280
+ Ryan Rogers, Aaron Roth, Adam Smith, and Om Thakkar. Max-information, differential privacy, and post-selection hypothesis testing. In 2016 IEEE 57th Annual Symposium on Foundations of Computer Science (FOCS), pages 487–494. IEEE, 2016.
281
+
282
+ Ayush Sekhari, Jayadev Acharya, Gautam Kamath, and Ananda Theertha Suresh. Remember what you want to forget: Algorithms for machine unlearning. arXiv preprint arXiv:2103.03279, 2021.
283
+
284
+ Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In 2017 IEEE Symposium on Security and Privacy (SP), pages 3–18. IEEE, 2017.
285
+
286
+ Michael Veale, Reuben Binns, and Lilian Edwards. Algorithms that remember: Model inversion attacks and data protection law. CoRR, abs/1807.04644, 2018. URL http://arxiv.org/abs/ 1807.04644.
287
+
288
+ Han Xiao, Kashif Rasul, and Roland Vollgraf. Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms. 2017.
parse/train/nWSZ30wrEw3/nWSZ30wrEw3_content_list.json ADDED
@@ -0,0 +1,1543 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "text",
4
+ "text": "Adaptive Machine Unlearning ",
5
+ "text_level": 1,
6
+ "bbox": [
7
+ 315,
8
+ 122,
9
+ 681,
10
+ 147
11
+ ],
12
+ "page_idx": 0
13
+ },
14
+ {
15
+ "type": "text",
16
+ "text": "Varun Gupta1, Christopher Jung1, Seth Neel2, Aaron Roth1, Saeed Sharifi-Malvajerdi1, and Chris Waites3 ",
17
+ "bbox": [
18
+ 305,
19
+ 198,
20
+ 691,
21
+ 227
22
+ ],
23
+ "page_idx": 0
24
+ },
25
+ {
26
+ "type": "text",
27
+ "text": "1University of Pennsylvania 2Harvard University 3Stanford University ",
28
+ "bbox": [
29
+ 406,
30
+ 238,
31
+ 591,
32
+ 281
33
+ ],
34
+ "page_idx": 0
35
+ },
36
+ {
37
+ "type": "text",
38
+ "text": "Abstract ",
39
+ "text_level": 1,
40
+ "bbox": [
41
+ 462,
42
+ 321,
43
+ 535,
44
+ 338
45
+ ],
46
+ "page_idx": 0
47
+ },
48
+ {
49
+ "type": "text",
50
+ "text": "Data deletion algorithms aim to remove the influence of deleted data points from trained models at a cheaper computational cost than fully retraining those models. However, for sequences of deletions, most prior work in the non-convex setting gives valid guarantees only for sequences that are chosen independently of the models that are published. If people choose to delete their data as a function of the published models (because they don’t like what the models reveal about them, for example), then the update sequence is adaptive. In this paper, we give a general reduction from deletion guarantees against adaptive sequences to deletion guarantees against non-adaptive sequences, using differential privacy and its connection to max information. Combined with ideas from prior work which give guarantees for non-adaptive deletion sequences, this leads to extremely flexible algorithms able to handle arbitrary model classes and training methodologies, giving strong provable deletion guarantees for adaptive deletion sequences. We show in theory how prior work for non-convex models fails against adaptive deletion sequences, and use this intuition to design a practical attack against the SISA algorithm of Bourtoule et al. [2021] on CIFAR-10, MNIST, Fashion-MNIST. ",
51
+ "bbox": [
52
+ 233,
53
+ 353,
54
+ 764,
55
+ 573
56
+ ],
57
+ "page_idx": 0
58
+ },
59
+ {
60
+ "type": "text",
61
+ "text": "1 Introduction ",
62
+ "text_level": 1,
63
+ "bbox": [
64
+ 174,
65
+ 598,
66
+ 310,
67
+ 616
68
+ ],
69
+ "page_idx": 0
70
+ },
71
+ {
72
+ "type": "text",
73
+ "text": "Businesses like Facebook and Google depend on training sophisticated models on user data. Increasingly—in part because of regulations like the European Union’s General Data Protection Act and the California Consumer Privacy Act—these organizations are receiving requests to delete the data of particular users. But what should that mean? It is straightforward to delete a customer’s data from a database and stop using it to train future models. But what about models that have already been trained using an individual’s data? These are not necessarily safe; it is known that individual training data can be exfiltrated from models trained in standard ways via model inversion attacks [Shokri et al., 2017, Veale et al., 2018, Fredrikson et al., 2015]. Regulators are still grappling with when a trained model should be considered to contain personal data of individuals in the training set and the potential legal implications. In 2020 draft guidance, the U.K.’s Information Commissioner’s Office addressed how to comply with data deletion requests as they pertain to ML models: ",
74
+ "bbox": [
75
+ 174,
76
+ 630,
77
+ 825,
78
+ 781
79
+ ],
80
+ "page_idx": 0
81
+ },
82
+ {
83
+ "type": "text",
84
+ "text": "If the request is for rectification or erasure of the data, this may not be possible without re-training the model...or deleting the model altogether [ICO, 2020]. ",
85
+ "bbox": [
86
+ 232,
87
+ 792,
88
+ 764,
89
+ 821
90
+ ],
91
+ "page_idx": 0
92
+ },
93
+ {
94
+ "type": "text",
95
+ "text": "Fully retraining the model every time a deletion request is received can be prohibitive in terms of both time and money—especially for large models and frequent deletion requests. The problem of data deletion (also known as machine unlearning) is to find an algorithmic middle ground between the compliant but impractical baseline of retraining, and the potentially illegal standard of doing nothing. We iteratively update models as deletion requests come in, with the twin goals of having computational cost that is substantially less than the cost of full retraining, and the guarantee that the models we produce are (almost) indistinguishable from the models that would have resulted from full retraining. ",
96
+ "bbox": [
97
+ 174,
98
+ 832,
99
+ 825,
100
+ 901
101
+ ],
102
+ "page_idx": 0
103
+ },
104
+ {
105
+ "type": "text",
106
+ "text": "",
107
+ "bbox": [
108
+ 176,
109
+ 90,
110
+ 823,
111
+ 132
112
+ ],
113
+ "page_idx": 1
114
+ },
115
+ {
116
+ "type": "text",
117
+ "text": "After an initial model is deployed deletion requests arrive over time as users make decisions about whether to delete their data. It is easy to see how these decisions may be adaptive with respect to the models. For example, security researchers may publish a new model inversion attack that identifies a specific subset of people in the training data, thus leading to increased deletion requests for people in that subset. In this paper we give the first machine unlearning algorithms that both have rigorous deletion guarantees against these kind of adaptive deletion sequence, and can accommodate arbitrary non-convex models like deep neural networks without requiring pretraining on non-user data. ",
118
+ "bbox": [
119
+ 174,
120
+ 140,
121
+ 825,
122
+ 237
123
+ ],
124
+ "page_idx": 1
125
+ },
126
+ {
127
+ "type": "text",
128
+ "text": "1.1 Main Results ",
129
+ "text_level": 1,
130
+ "bbox": [
131
+ 174,
132
+ 257,
133
+ 305,
134
+ 272
135
+ ],
136
+ "page_idx": 1
137
+ },
138
+ {
139
+ "type": "text",
140
+ "text": "The deletion guarantees proven for several prior methods crucially rely on the implicit assumption that the points that are deleted are independent of the randomness used to train the models. However this assumption fails unless the sequence of deletion requests is chosen independently of the information that the model provider has made public. This is a very strong assumption, because users may wish to delete their data exactly because of what deployed models reveal about them. ",
141
+ "bbox": [
142
+ 174,
143
+ 285,
144
+ 825,
145
+ 354
146
+ ],
147
+ "page_idx": 1
148
+ },
149
+ {
150
+ "type": "text",
151
+ "text": "We give a generic reduction. We show that if: ",
152
+ "bbox": [
153
+ 176,
154
+ 361,
155
+ 472,
156
+ 376
157
+ ],
158
+ "page_idx": 1
159
+ },
160
+ {
161
+ "type": "text",
162
+ "text": "1. A data deletion algorithm $\\mathcal { R } _ { A }$ for a learning algorithm $\\mathcal { A }$ has deletion guarantees for oblivious sequences of deletion requests (as those from past work do), and 2. Information about the internal randomness of $\\mathcal { R } _ { A }$ is revealed only in a manner that satisfies differential privacy, then ",
163
+ "bbox": [
164
+ 200,
165
+ 388,
166
+ 825,
167
+ 455
168
+ ],
169
+ "page_idx": 1
170
+ },
171
+ {
172
+ "type": "text",
173
+ "text": "$( \\mathcal { A } , \\mathcal { R } _ { \\mathcal { A } } )$ also satisfies data deletion guarantees against an adaptive sequence of deletion requests, that can depend in arbitrary ways on the information that the model provider has made public. ",
174
+ "bbox": [
175
+ 176,
176
+ 468,
177
+ 825,
178
+ 497
179
+ ],
180
+ "page_idx": 1
181
+ },
182
+ {
183
+ "type": "text",
184
+ "text": "In Section 3, we motivate our main result with a theoretical example which illustrates that past method’s lack of guarantees for adaptive sequences is not simply a failure of analysis, but an actual failure of these methods to satisfy deletion guarantees for adaptive deletion sequences. As an exemplar, we use a variant of SISA from Bourtoule et al. [2021] that satisfies perfect deletion guarantees for non-adaptive deletion sequences and exhibit adaptive deletion sequences that strongly separate the resulting distribution on models compared to the retraining baseline. ",
185
+ "bbox": [
186
+ 174,
187
+ 502,
188
+ 825,
189
+ 587
190
+ ],
191
+ "page_idx": 1
192
+ },
193
+ {
194
+ "type": "text",
195
+ "text": "The generic reduction found in Section 4 can be used to give adaptive data deletion mechanisms for a wide variety of problems by leveraging past work on deletion algorithms for non-adaptive sequences, and a line of work on differentially private aggregation [Papernot et al., 2018, Dwork and Feldman, 2018]. Since prior deletion algorithms themselves tend to use existing learning algorithms in a black-box way, the entire pipeline is modular and easy to bolt-on to existing methods. In Section 5, we show how this can be accomplished by using a variant of the SISA framework of Bourtoule et al. [2021] together with a differentially private aggregation method. ",
196
+ "bbox": [
197
+ 174,
198
+ 592,
199
+ 826,
200
+ 690
201
+ ],
202
+ "page_idx": 1
203
+ },
204
+ {
205
+ "type": "text",
206
+ "text": "In Section 6, we complement our main result with a set of experimental results on CIFAR-10, MNIST, and Fashion-MNIST that demonstrate differential privacy may be useful in giving adaptive guarantees beyond the statement of our theorems. Specifically we show that small amounts of noise addition (insufficient for our theorems to apply) already serve to break the adaptive deletion strategies that we use to falsify the adaptive deletion guarantees in our experiments described in Section 3 and do so at minimal expense in model accuracy. ",
207
+ "bbox": [
208
+ 174,
209
+ 695,
210
+ 825,
211
+ 779
212
+ ],
213
+ "page_idx": 1
214
+ },
215
+ {
216
+ "type": "text",
217
+ "text": "1.2 Related Work ",
218
+ "text_level": 1,
219
+ "bbox": [
220
+ 174,
221
+ 800,
222
+ 310,
223
+ 815
224
+ ],
225
+ "page_idx": 1
226
+ },
227
+ {
228
+ "type": "text",
229
+ "text": "Data deletion was introduced by Cao and Yang [2015]; we adopt the randomized formulation of Ginart et al. [2019]. Ginart et al. [2019] anticipate the problem of deletion requests that might be correlated with internal state of the algorithm, and define (and propose as a study for future work) robust data deletion which is a data deletion guarantee that holds for adversaries with knowledge of the internal state. Our insight is that we can provide deletion guarantees against adaptive sequences by instead obscuring the internal state of the algorithm using techniques from differential privacy. ",
230
+ "bbox": [
231
+ 174,
232
+ 827,
233
+ 825,
234
+ 911
235
+ ],
236
+ "page_idx": 1
237
+ },
238
+ {
239
+ "type": "text",
240
+ "text": "We are the first to explicitly consider the problem of adaptive sequences of deletion requests, but some techniques from past work do have deletion guarantees that extend to adaptive sequences. Deterministic methods and methods that depend only on randomness that is sampled after the deletion request are already robust to adaptive deletion. This includes techniques that find an approximately optimal solution to a strongly convex problem and then perturb the solution to obscure the optimizer within a small radius e.g. Guo et al. [2019], Neel et al. [2021], Sekhari et al. [2021]. It also includes the approach of Golatkar et al. [2020a,b] which pre-trains a nonconvex model on data that will never be deleted and then does convex fine-tuning on user data on top of that. Techniques whose deletion guarantees depend on randomness sampled at training in general do not have guarantees against adaptive deletions. This includes algorithms given in Ginart et al. [2019], Bourtoule et al. [2021], Neel et al. [2021] — the SISA framework of Bourtoule et al. [2021] being of particular interest as it is agnostic to the class of models and training methodology, and so is extremely flexible. ",
241
+ "bbox": [
242
+ 173,
243
+ 90,
244
+ 825,
245
+ 257
246
+ ],
247
+ "page_idx": 2
248
+ },
249
+ {
250
+ "type": "text",
251
+ "text": "Differential privacy has been used as a mitigation for adaptivity since the work of Dwork et al. [2015c,a]. In machine learning, it has been used to mitigate the bias of adaptive data gathering strategies as used in bandit learning algorithms [Neel and Roth, 2018]. The application that is most similar to our work is Hassidim et al. [2020], which uses differential privacy of the internal randomness of an algorithm (as we do) to reduce streaming algorithms with guarantees against adaptive adversarial streams to streaming algorithms with guarantees against oblivious adversaries. Our techniques differ; while Hassidim et al. [2020] reduce to the so-called “transfer theorem for linear and low sensitivity queries” developed over a series of works Dwork et al. [2015c], Bassily et al. [2021], Jung et al. [2020], we use a more general connection between differential privacy and “max-information” established in Dwork et al. [2015b], Rogers et al. [2016]. ",
252
+ "bbox": [
253
+ 173,
254
+ 263,
255
+ 825,
256
+ 401
257
+ ],
258
+ "page_idx": 2
259
+ },
260
+ {
261
+ "type": "text",
262
+ "text": "2 Preliminaries ",
263
+ "text_level": 1,
264
+ "bbox": [
265
+ 174,
266
+ 421,
267
+ 318,
268
+ 438
269
+ ],
270
+ "page_idx": 2
271
+ },
272
+ {
273
+ "type": "text",
274
+ "text": "Let $\\mathcal { Z }$ be the data domain. A dataset $D$ is a multi-set of elements from $\\mathcal { Z }$ . We consider update requests of two types: deletion and addition. These update requests are formally defined below, similar to how they are defined in [Neel et al., 2021]. ",
275
+ "bbox": [
276
+ 176,
277
+ 452,
278
+ 823,
279
+ 494
280
+ ],
281
+ "page_idx": 2
282
+ },
283
+ {
284
+ "type": "text",
285
+ "text": "Definition 2.1 (Update Operations and Sequences). An update $u$ is a pair $( z , \\bullet )$ where $z \\in { \\mathcal { Z } }$ is $a$ datapoint and $\\bullet \\in \\mathcal { T } = \\{ ^ { \\prime } \\mathbf { a d d } ^ { \\prime } , ^ { \\prime } \\mathbf { d e l e t e } ^ { \\prime } \\}$ determines the type of the update. An update sequence $U$ is a sequence $( u ^ { 1 } , u ^ { 2 } , \\ldots )$ where $u ^ { t } \\in \\mathcal { Z } \\times \\mathcal { T }$ for all $t$ . Given a dataset $D$ and an update $u = ( z , \\bullet )$ , the update operation is defined as: ",
286
+ "bbox": [
287
+ 173,
288
+ 498,
289
+ 825,
290
+ 555
291
+ ],
292
+ "page_idx": 2
293
+ },
294
+ {
295
+ "type": "equation",
296
+ "img_path": "images/96b4b5ec8998a0e7c67003ba2bfac3fc872c4ac9a59a896e8b6c404ede3d3cb3.jpg",
297
+ "text": "$$\nD \\circ u \\triangleq { \\left\\{ { D \\cup \\{ z \\} } \\quad i f \\bullet = { ' } { \\mathsf { a d d } } ^ { \\prime } \\right.} _ { D \\setminus \\{ z \\} } _ { i f \\bullet = { ' } { \\mathsf { d e l e t e } } ^ { \\prime } }\n$$",
298
+ "text_format": "latex",
299
+ "bbox": [
300
+ 370,
301
+ 563,
302
+ 625,
303
+ 598
304
+ ],
305
+ "page_idx": 2
306
+ },
307
+ {
308
+ "type": "text",
309
+ "text": "Given an update sequence $U = ( u ^ { 1 } , u ^ { 2 } , \\ldots ) ;$ , we have $D \\circ U \\triangleq ( ( ( D \\circ u ^ { 1 } ) \\circ u ^ { 2 } ) \\circ \\ldots ) .$ . ",
310
+ "bbox": [
311
+ 173,
312
+ 606,
313
+ 748,
314
+ 623
315
+ ],
316
+ "page_idx": 2
317
+ },
318
+ {
319
+ "type": "text",
320
+ "text": "We use $\\Theta$ to denote the space of models. A learning or training algorithm is a mapping $\\mathcal { A } : \\mathcal { Z } ^ { * } \\to \\Theta ^ { * }$ that maps a dataset $D \\in { \\mathcal { Z } } ^ { * }$ to a collection of models $\\theta \\in \\Theta ^ { * }$ . An unlearning or update algorithm for $\\mathcal { A }$ is a mapping $\\mathcal { R } _ { A } : \\mathcal { Z } ^ { * } \\times ( \\mathcal { Z } \\times \\mathcal { T } ) \\times \\mathcal { S } \\to \\Theta ^ { * }$ which takes in a data set $D \\in { \\mathcal { Z } } ^ { * }$ , an update request $u \\in \\mathcal { Z } \\times \\mathcal { T }$ , and some current state for the algorithms $s \\in S$ (the domain $s$ can be arbitrary), and outputs an updated collection of models $\\theta ^ { \\prime } \\in \\Theta ^ { * }$ . In this paper we consider a setting in which a stream of update requests arrive in sequence. We note that in this sequential framework, the update algorithm $\\mathcal { R } _ { A }$ also updates the state of the algorithm after each update request is processed; however, for notational economy, we do not explicitly write the updated state as an output of the algorithm. ",
321
+ "bbox": [
322
+ 174,
323
+ 632,
324
+ 825,
325
+ 744
326
+ ],
327
+ "page_idx": 2
328
+ },
329
+ {
330
+ "type": "text",
331
+ "text": "At each round, we provide access to the models through a mapping $f _ { \\mathrm { p u b l i s h } } ^ { t } : \\Theta ^ { * } \\to \\Psi$ that takes in the collection of models and outputs some object $\\psi \\in \\Psi$ . A published object $\\psi \\in \\Psi$ can, for instance, be the aggregate predictions of the learned models on a data set, or, some aggregation of the models. To model adaptively chosen update sequences, we define an arbitrary “update requester” who interacts with the learning and unlearning algorithms $( \\mathcal { A } , \\mathcal { R } _ { \\mathcal { A } } )$ through the publishing function $f _ { \\mathrm { p u b l i s h } }$ in rounds to generate a sequence of updates. The update requester is denoted by UpdReq and defined in Definition 2.2, and the interaction between the algorithms and the update requester is described in Algorithm 1. ",
332
+ "bbox": [
333
+ 174,
334
+ 750,
335
+ 826,
336
+ 863
337
+ ],
338
+ "page_idx": 2
339
+ },
340
+ {
341
+ "type": "text",
342
+ "text": "Throughout we will use $u ^ { t }$ to denote the update request at round $t$ . We will use $D ^ { t }$ to denote the data set at round $t$ : $D ^ { 0 }$ is the initial training data set and for all $t \\geq 1$ , $D ^ { t } = D ^ { t - 1 } \\circ u ^ { t }$ . We will use $\\theta ^ { t }$ to denote the learned models at round $t$ : $\\theta ^ { 0 }$ is generated by the initial training algorithm $\\mathcal { A }$ , and $\\theta ^ { t }$ for $t \\geq 1$ denotes the updated models at round $t$ generated by the update algorithm $\\mathcal { R } _ { A }$ . $\\psi ^ { t }$ denotes the published object at round $t$ : $\\psi ^ { t } = f _ { \\mathrm { p u b l i s h } } ^ { t } ( \\theta ^ { t } )$ . ",
343
+ "bbox": [
344
+ 176,
345
+ 869,
346
+ 825,
347
+ 911
348
+ ],
349
+ "page_idx": 2
350
+ },
351
+ {
352
+ "type": "table",
353
+ "img_path": "images/49af37bb3ca08e560a92e8b40ce7bbcad36a565b9bdae3ca4959afdb266bd33a.jpg",
354
+ "table_caption": [
355
+ "Algorithm 1: Interaction between $( \\mathcal { A } , \\mathcal { R } _ { \\mathcal { A } } )$ and UpdReq "
356
+ ],
357
+ "table_footnote": [],
358
+ "table_body": "<table><tr><td></td><td>1: Input: Data set D</td></tr><tr><td>2:</td><td>Let D°← D.</td></tr><tr><td>3:</td><td>Train 0° ← A(D).</td></tr><tr><td>4:</td><td>Publish y0←pubish(00).</td></tr><tr><td>5:</td><td> Save the initial state so.</td></tr><tr><td>6:</td><td>for t = 1,2,... do</td></tr><tr><td>7:</td><td> The update requester requests a new update, given the history of interaction:</td></tr><tr><td>8:</td><td>ut←UpdReq(o,u¹,1,u², ,ut-1,γt-1).</td></tr><tr><td>9:</td><td>The algorithms update, given ut:</td></tr><tr><td>10:</td><td>Update the models 0t ← RA (Dt-1,ut,st-1).</td></tr><tr><td>11:</td><td>Publish bt ← fpubish (0t).</td></tr><tr><td>12:</td><td>Save the updated state st .</td></tr><tr><td>13:</td><td>Update the data set Dt ← Dt-1 o ut .</td></tr></table>",
359
+ "bbox": [
360
+ 178,
361
+ 113,
362
+ 720,
363
+ 308
364
+ ],
365
+ "page_idx": 3
366
+ },
367
+ {
368
+ "type": "text",
369
+ "text": "",
370
+ "bbox": [
371
+ 173,
372
+ 339,
373
+ 823,
374
+ 371
375
+ ],
376
+ "page_idx": 3
377
+ },
378
+ {
379
+ "type": "text",
380
+ "text": "Definition 2.2 (Update Requester (UpdReq)). The update sequence is generated by an update requester which is modeled by a (possibly randomized) mapping UpdReq : $\\Psi ^ { * } \\times ( \\mathcal { Z } \\times \\mathcal { T } ) ^ { * } ( \\mathcal { Z } \\times \\mathcal { T } )$ that takes as input the history of interaction between herself and the algorithms, and outputs a new update for the current round. Given an update requester UpdReq, algorithms $( \\mathcal { A } , \\mathcal { R } _ { \\mathcal { A } } )$ and publishing functions $\\{ f _ { p u b l i s h } ^ { t } \\} _ { t }$ , the update sequence $U = \\{ u ^ { t } \\} _ { t }$ can be written as ",
381
+ "bbox": [
382
+ 173,
383
+ 375,
384
+ 825,
385
+ 445
386
+ ],
387
+ "page_idx": 3
388
+ },
389
+ {
390
+ "type": "equation",
391
+ "img_path": "images/4518acdec353d550f167a7e753c1d2dea3736017a727d5ca5e9755ddcf286abc.jpg",
392
+ "text": "$$\n\\boldsymbol { u } ^ { 1 } = \\mathrm { U p d R e q } \\left( \\boldsymbol { \\psi } ^ { 0 } \\right) , \\boldsymbol { u } ^ { 2 } = \\mathrm { U p d R e q } \\left( \\boldsymbol { \\psi } ^ { 0 } , \\boldsymbol { u } ^ { 1 } , \\boldsymbol { \\psi } ^ { 1 } \\right) , \\boldsymbol { \\cdot } , \\boldsymbol { \\cdot } , \\boldsymbol { u } ^ { t } = \\mathrm { U p d R e q } \\left( \\boldsymbol { \\psi } ^ { 0 } , \\boldsymbol { u } ^ { 1 } , \\boldsymbol { \\psi } ^ { 1 } , \\boldsymbol { \\cdot } , \\boldsymbol { \\cdot } , \\boldsymbol { u } ^ { t - 1 } , \\boldsymbol { \\psi } ^ { t - 1 } \\right)\n$$",
393
+ "text_format": "latex",
394
+ "bbox": [
395
+ 181,
396
+ 455,
397
+ 820,
398
+ 474
399
+ ],
400
+ "page_idx": 3
401
+ },
402
+ {
403
+ "type": "text",
404
+ "text": "We say an update requester UpdReq is nonadaptive if it is independent of the published objects, i.e., if there exists a mapping UpdR $\\mathfrak { s q } ^ { \\prime } : ( \\mathcal { Z } \\times \\mathcal { T } ) ^ { \\ast } ( \\mathcal { Z } \\times \\mathcal { T } )$ such that for all $t \\geq 1$ , ",
405
+ "bbox": [
406
+ 173,
407
+ 481,
408
+ 826,
409
+ 511
410
+ ],
411
+ "page_idx": 3
412
+ },
413
+ {
414
+ "type": "equation",
415
+ "img_path": "images/787e0ccfabb01426b1d2ca8a285bb48e80098736481a4556a309978293362e34.jpg",
416
+ "text": "$$\nu ^ { t } = \\mathtt { U p d R e q } \\left( \\psi ^ { 0 } , u ^ { 1 } , \\psi ^ { 1 } , u ^ { 2 } , \\ldots , u ^ { t - 1 } , \\psi ^ { t - 1 } \\right) = \\mathtt { U p d R e q } ^ { \\prime } \\left( u ^ { 1 } , u ^ { 2 } , \\ldots , u ^ { t - 1 } \\right)\n$$",
417
+ "text_format": "latex",
418
+ "bbox": [
419
+ 241,
420
+ 518,
421
+ 754,
422
+ 537
423
+ ],
424
+ "page_idx": 3
425
+ },
426
+ {
427
+ "type": "text",
428
+ "text": "This is equivalent to saying that the update sequence is fixed before the interaction occurs. ",
429
+ "bbox": [
430
+ 171,
431
+ 545,
432
+ 763,
433
+ 560
434
+ ],
435
+ "page_idx": 3
436
+ },
437
+ {
438
+ "type": "text",
439
+ "text": "Following [Ginart et al., 2019], we propose the following definition for an unlearning algorithm in the sequential update setting ([Ginart et al., 2019] gives a definition for a single deletion request, whereas here we define a natural extension for an arbitrarily long sequence of deletions, as well as additions, that can be chosen adaptively.). Informally, we require that at every round, and for all possible update requesters, with high probability over the draw of the update sequence, no subset of models resulting from deletion occurs with substantially higher probability than it would have under full retraining. ",
440
+ "bbox": [
441
+ 173,
442
+ 570,
443
+ 826,
444
+ 656
445
+ ],
446
+ "page_idx": 3
447
+ },
448
+ {
449
+ "type": "text",
450
+ "text": "Definition 2.3 $( \\alpha , \\beta , \\gamma )$ -unlearning). We say that $\\mathcal { R } _ { A }$ is an $( \\alpha , \\beta , \\gamma )$ -unlearning algorithm for $\\mathcal { A }$ if for all datasets $D = D ^ { 0 }$ and all update requesters UpdReq, the following condition holds: For every update step $t \\geq 1$ , with probability at least $1 - \\gamma$ over the draw of the update sequence $u ^ { \\le t } \\overset { \\cdot } { = } \\hat { ( } u ^ { 1 } , \\ldots , \\overset { \\cdot } { u } ^ { t } )$ from UpdReq, ",
451
+ "bbox": [
452
+ 174,
453
+ 660,
454
+ 825,
455
+ 717
456
+ ],
457
+ "page_idx": 3
458
+ },
459
+ {
460
+ "type": "equation",
461
+ "img_path": "images/c295b206a4b441920ca55ee78e1e09506489e57b0554e585b2708a730f93b6a0.jpg",
462
+ "text": "$$\n\\begin{array} { r } { \\forall E \\subseteq \\Theta ^ { * } : \\quad \\operatorname* { P r } \\left[ \\mathcal { R } _ { { \\cal A } } \\left( D ^ { t - 1 } , u ^ { t } , s ^ { t - 1 } \\right) \\in E \\middle | u ^ { \\leq t } \\right] \\leq e ^ { \\alpha } \\cdot \\operatorname* { P r } \\left[ { \\cal A } \\left( D ^ { t } \\right) \\in E \\right] + \\beta } \\end{array}\n$$",
463
+ "text_format": "latex",
464
+ "bbox": [
465
+ 230,
466
+ 724,
467
+ 766,
468
+ 746
469
+ ],
470
+ "page_idx": 3
471
+ },
472
+ {
473
+ "type": "text",
474
+ "text": "We say $\\mathcal { R } _ { A }$ is a nonadaptive $( \\alpha , \\beta , \\gamma )$ -unlearning algorithm for $\\mathcal { A }$ if the above condition holds for any nonadaptive UpdReq. ",
475
+ "bbox": [
476
+ 171,
477
+ 752,
478
+ 823,
479
+ 782
480
+ ],
481
+ "page_idx": 3
482
+ },
483
+ {
484
+ "type": "text",
485
+ "text": "Remark 2.1. Our definition of unlearning is reminiscent of differential privacy, but following [Ginart et al., 2019], we ask only for $a$ one-sided guarantee: that the probability of any event under the unlearning scheme is not too much larger than the probability of the same event under full retraining, but not vice versa. The reason is that we do not want there to be events that can substantially increase an observer’s confidence that we did not engage in full retraining, but we do not object to observers who strongly update their beliefs that we did engage in full retraining. Our events $E$ are defined directly over the sets of models in $\\Theta ^ { * }$ output by $\\mathcal { A }$ and $\\mathcal { R } _ { A }$ — note that because of information processing inequalities, this is only stronger than defining events $E$ over the observable outcome space $\\Psi$ . ",
486
+ "bbox": [
487
+ 173,
488
+ 786,
489
+ 825,
490
+ 911
491
+ ],
492
+ "page_idx": 3
493
+ },
494
+ {
495
+ "type": "text",
496
+ "text": "2.1 Differential Privacy and Max-Information ",
497
+ "text_level": 1,
498
+ "bbox": [
499
+ 176,
500
+ 90,
501
+ 508,
502
+ 106
503
+ ],
504
+ "page_idx": 4
505
+ },
506
+ {
507
+ "type": "text",
508
+ "text": "Differential privacy will be a key tool in our results. Let $\\mathcal { X }$ denote an arbitrary data domain. We use $x \\in \\mathcal { X }$ to denote an individual element of $\\mathcal { X }$ , and $X \\in \\mathcal { X } ^ { \\ast }$ to denote a collection of elements from $\\mathcal { X }$ — which we call a data set. We say two data sets $X , X ^ { \\prime } \\in { \\mathcal { X } } ^ { * }$ are neighboring if they differ in at most one element. We say an algorithm $M : \\mathcal { X } ^ { n } \\mathcal { O }$ is differentially private if its output distributions on neighboring data sets are close, formalized below. ",
509
+ "bbox": [
510
+ 173,
511
+ 116,
512
+ 825,
513
+ 185
514
+ ],
515
+ "page_idx": 4
516
+ },
517
+ {
518
+ "type": "text",
519
+ "text": "Definition 2.4 (Differential Privacy (DP) [Dwork et al., 2006b,a]). An algorithm $M : \\mathcal { X } ^ { m } \\mathcal { O }$ is $( \\epsilon , \\delta )$ -differentially private, if for every neighboring $X$ and $X ^ { \\prime }$ , and for every $O \\subseteq { \\mathcal { O } }$ , we have $\\mathrm { P r } \\left[ M ( X ) \\in O \\right] \\leq e ^ { \\epsilon } \\mathrm { P r } \\left[ M ( \\dot { X } ^ { \\prime } ) \\in O \\right] + \\delta$ . ",
520
+ "bbox": [
521
+ 174,
522
+ 189,
523
+ 823,
524
+ 233
525
+ ],
526
+ "page_idx": 4
527
+ },
528
+ {
529
+ "type": "text",
530
+ "text": "We remark at the outset that the “datasets” to which we will eventually ask for differential privacy with respect to will not be the datasets on which our learning algorithms are trained, but will instead be collections of random bits parameterizing our randomized algorithms. ",
531
+ "bbox": [
532
+ 174,
533
+ 242,
534
+ 825,
535
+ 286
536
+ ],
537
+ "page_idx": 4
538
+ },
539
+ {
540
+ "type": "text",
541
+ "text": "Differentially private algorithms are robust to data-independent post-processing: ",
542
+ "bbox": [
543
+ 176,
544
+ 291,
545
+ 699,
546
+ 306
547
+ ],
548
+ "page_idx": 4
549
+ },
550
+ {
551
+ "type": "text",
552
+ "text": "Lemma 2.1 (Post-processing preserves DP [Dwork et al., 2006b]). If $M : \\mathcal { X } ^ { m } \\mathcal { O }$ is $( \\epsilon , \\delta )$ - differentially private, then for all $f : \\mathcal { O } \\mathcal { R }$ , we have $f \\circ M : \\mathcal { X } ^ { m } \\mathcal { R }$ defined by $f \\circ M ( X ) =$ $f ( M ( X ) )$ is $( \\epsilon , \\delta )$ -differentially private. ",
553
+ "bbox": [
554
+ 174,
555
+ 309,
556
+ 826,
557
+ 353
558
+ ],
559
+ "page_idx": 4
560
+ },
561
+ {
562
+ "type": "text",
563
+ "text": "The max-information between two jointly distributed random variables measures how close their joint distribution is to the product of their corresponding marginal distributions. ",
564
+ "bbox": [
565
+ 174,
566
+ 363,
567
+ 823,
568
+ 392
569
+ ],
570
+ "page_idx": 4
571
+ },
572
+ {
573
+ "type": "text",
574
+ "text": "Definition 2.5 (Max-Information [Dwork et al., 2015b]). Let $X$ and $Y$ be jointly distributed random variables over the domain $( \\mathcal { X } , \\mathcal { Y } )$ . The $\\beta$ -approximate max-information between $X$ and $Y$ is: ",
575
+ "bbox": [
576
+ 173,
577
+ 395,
578
+ 823,
579
+ 424
580
+ ],
581
+ "page_idx": 4
582
+ },
583
+ {
584
+ "type": "equation",
585
+ "img_path": "images/c01dbe67c5f13bd3c0e5eb1ead4db719c15dd45a5707b961fc413e7c40663f11.jpg",
586
+ "text": "$$\nI _ { \\infty } ^ { \\beta } ( X ; Y ) = \\log \\operatorname* { s u p } _ { \\substack { E \\subseteq ( \\mathcal { X } , \\mathcal { Y } ) , \\operatorname* { P r } [ ( X , Y ) \\in E ] > \\beta } } \\frac { \\operatorname* { P r } [ ( X , Y ) \\in E ] - \\beta } { \\operatorname* { P r } [ ( X \\otimes Y ) \\in E ] }\n$$",
587
+ "text_format": "latex",
588
+ "bbox": [
589
+ 290,
590
+ 430,
591
+ 705,
592
+ 467
593
+ ],
594
+ "page_idx": 4
595
+ },
596
+ {
597
+ "type": "text",
598
+ "text": "where $( X \\otimes Y )$ represents the product distribution of $X$ and $Y$ . ",
599
+ "bbox": [
600
+ 174,
601
+ 473,
602
+ 593,
603
+ 488
604
+ ],
605
+ "page_idx": 4
606
+ },
607
+ {
608
+ "type": "text",
609
+ "text": "The max-information of an algorithm $M$ that takes a dataset $X$ as input and outputs $M ( X )$ , is defined as the max-information between $X$ and $M ( X )$ for the worst case product distribution over $X$ : ",
610
+ "bbox": [
611
+ 174,
612
+ 498,
613
+ 825,
614
+ 527
615
+ ],
616
+ "page_idx": 4
617
+ },
618
+ {
619
+ "type": "text",
620
+ "text": "Definition 2.6 (Max-Information of an Algorithm [Dwork et al., 2015b]). Let $M : \\mathcal { X } ^ { m } \\mathcal { O }$ be an Algorithm. We say $M$ has $\\beta$ -approximate max-information of $k$ , written $T _ { \\infty } ^ { \\beta } ( M , m ) \\leq k$ , if for every distribution $\\mathcal { P }$ over $\\mathcal { X }$ , we have $I _ { \\infty } ^ { \\beta } ( X ; M ( X ) ) \\le k$ when $X \\sim \\mathcal { P } ^ { m }$ . ",
621
+ "bbox": [
622
+ 173,
623
+ 531,
624
+ 825,
625
+ 575
626
+ ],
627
+ "page_idx": 4
628
+ },
629
+ {
630
+ "type": "text",
631
+ "text": "In this paper, we will use the fact that differentially private algorithms have bounded max-information: ",
632
+ "bbox": [
633
+ 169,
634
+ 584,
635
+ 823,
636
+ 601
637
+ ],
638
+ "page_idx": 4
639
+ },
640
+ {
641
+ "type": "text",
642
+ "text": "Theorem 2.1 (DP implies bounded max-information [Rogers et al., 2016]). Let $M : \\mathcal { X } ^ { m } \\mathcal { O }$ be an $( \\epsilon , \\delta )$ -differentially private algorithm for $0 < \\epsilon \\le 1 / 2$ and $0 < \\delta < \\epsilon$ . Then, $I _ { \\infty } ^ { \\beta } ( M , m ) =$ $O \\left( \\epsilon ^ { 2 } m + m \\sqrt { \\delta / \\epsilon } \\right) f o r \\beta = e ^ { - \\epsilon ^ { 2 } m } + O \\left( m \\sqrt { \\delta / \\epsilon } \\right) .$ . ",
643
+ "bbox": [
644
+ 173,
645
+ 617,
646
+ 825,
647
+ 671
648
+ ],
649
+ "page_idx": 4
650
+ },
651
+ {
652
+ "type": "text",
653
+ "text": "3 Falsifying Unlearning Guarantees with Adaptivity ",
654
+ "text_level": 1,
655
+ "bbox": [
656
+ 173,
657
+ 685,
658
+ 624,
659
+ 704
660
+ ],
661
+ "page_idx": 4
662
+ },
663
+ {
664
+ "type": "text",
665
+ "text": "In this section we demonstrate that the deletion guarantees of algorithms in the SISA framework [Bourtoule et al., 2021] fail for adaptive deletion sequences. We give a clean toy construction which shows algorithms in the SISA framework fail to have nontrivial adaptive deletion guarantees even in the black-box setting when the models within each shard are not made public, only aggregations of their classification outputs. In the Appendix we experimentally evaluate a more realistic instantiation of this construction. ",
666
+ "bbox": [
667
+ 173,
668
+ 717,
669
+ 825,
670
+ 801
671
+ ],
672
+ "page_idx": 4
673
+ },
674
+ {
675
+ "type": "text",
676
+ "text": "The setting we consider directly corresponds to the setting in which our final algorithms operate: what is made public is the aggregate predictions of the ensemble of models, but not the models themselves. For non-adaptive sequences of deletions, distributed algorithms of the sort described in Section 5 have perfect deletion guarantees. We demonstrate via a simple example that these guarantees dramatically fail for adaptive deletion sequences. ",
677
+ "bbox": [
678
+ 174,
679
+ 806,
680
+ 825,
681
+ 877
682
+ ],
683
+ "page_idx": 4
684
+ },
685
+ {
686
+ "type": "text",
687
+ "text": "Suppose we have a dataset consisting of real-valued points with binary labels $\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { 2 n }$ , $x _ { i } \\in \\mathbb { R } ^ { d }$ $y _ { i } \\ \\stackrel { - } { \\in } \\ \\{ 0 , 1 \\}$ in which there are exactly two copies of each distinct training example. Consider a simplistic classification model, resembling a lookup table, which given a point $x _ { i }$ predicts the label $y _ { i }$ if the model has been trained on $( x _ { i } , y _ { i } )$ and a dummy prediction value \" $\" \\perp \"$ otherwise: ",
688
+ "bbox": [
689
+ 173,
690
+ 882,
691
+ 823,
692
+ 911
693
+ ],
694
+ "page_idx": 4
695
+ },
696
+ {
697
+ "type": "text",
698
+ "text": "",
699
+ "bbox": [
700
+ 171,
701
+ 90,
702
+ 825,
703
+ 119
704
+ ],
705
+ "page_idx": 5
706
+ },
707
+ {
708
+ "type": "equation",
709
+ "img_path": "images/2dad0327245c5c034647574ad26888aa1312e4c98faf0655406d013a697d07cc.jpg",
710
+ "text": "$$\nf _ { \\mathcal { D } } ( x _ { i } ) = \\left\\{ \\begin{array} { l l } { y _ { i } } & { \\mathrm { i f } \\left( x _ { i } , y _ { i } \\right) \\in \\mathcal { D } , } \\\\ { \\perp } & { \\mathrm { o t h e r w i s e } } \\end{array} \\right.\n$$",
711
+ "text_format": "latex",
712
+ "bbox": [
713
+ 390,
714
+ 125,
715
+ 604,
716
+ 160
717
+ ],
718
+ "page_idx": 5
719
+ },
720
+ {
721
+ "type": "text",
722
+ "text": "Consider what happens when the training algorithm randomly partitions this dataset into three pieces and trains such a model on each partition. This constructs an ensemble which, at query time, predicts the class with the majority vote. On this dataset, the ensemble will predict the labels of roughly $2 / 3$ of the training points correctly—that is, exactly those points for which the duplicates have fallen into distinct partitions, so that the ensemble gets the majority vote right. ",
723
+ "bbox": [
724
+ 173,
725
+ 171,
726
+ 825,
727
+ 242
728
+ ],
729
+ "page_idx": 5
730
+ },
731
+ {
732
+ "type": "text",
733
+ "text": "We construct an adaptive adversary who chooses to delete exactly those training points that the ensemble correctly classifies (which are those points for whom the duplicates have fallen into distinct shards). The result is that the model resulting from this deletion sequence will misclassify every remaining training point. Full retraining (because it would rerandomize the partition) would again lead to training accuracy of approximately $2 / 3$ . Recalling that our deletion notion requires that the probability of any event under the unlearning scheme is not much larger than the probability of the same event under full retraining, this demonstrates that there are algorithms in the SISA framework — even if the models are not directly exposed — that do not satisfy $( \\alpha , \\beta , \\gamma )$ -deletion guarantees for any nontrivial value of $\\alpha$ . We formalize this below: ",
734
+ "bbox": [
735
+ 173,
736
+ 247,
737
+ 826,
738
+ 372
739
+ ],
740
+ "page_idx": 5
741
+ },
742
+ {
743
+ "type": "text",
744
+ "text": "Theorem 3.1. There are learning and unlearning algorithms in the SISA framework $( \\mathcal { A } , \\mathcal { R } _ { \\mathcal { A } } )$ such that for any $\\alpha _ { i }$ , and any $\\beta , \\gamma < 1 / 4$ , $\\mathcal { R } _ { A }$ is not an $( \\alpha , \\beta , \\gamma )$ -unlearning algorithm for $\\mathcal { A }$ . ",
745
+ "bbox": [
746
+ 174,
747
+ 375,
748
+ 823,
749
+ 405
750
+ ],
751
+ "page_idx": 5
752
+ },
753
+ {
754
+ "type": "text",
755
+ "text": "A proof of this theorem can be found in the appendix. ",
756
+ "bbox": [
757
+ 173,
758
+ 414,
759
+ 526,
760
+ 429
761
+ ],
762
+ "page_idx": 5
763
+ },
764
+ {
765
+ "type": "text",
766
+ "text": "4 A Reduction from Adaptive to Nonadaptive Update Requesters ",
767
+ "text_level": 1,
768
+ "bbox": [
769
+ 173,
770
+ 446,
771
+ 732,
772
+ 465
773
+ ],
774
+ "page_idx": 5
775
+ },
776
+ {
777
+ "type": "text",
778
+ "text": "In our analysis we imagine without loss of generality that the learning algorithm $\\mathcal { A }$ draws an i.i.d. sequence of random variables $r \\sim \\mathcal { P } ^ { m }$ (that encodes all the randomness to be used over the course of the updates) from some distribution $\\mathcal { P }$ , and passes it to the unlearning algorithm $\\mathcal { R } _ { A }$ . Note $r$ is drawn once in the initial training, and given $r$ , $\\mathcal { A }$ and $\\mathcal { R } _ { A }$ become deterministic mappings. We can also view the state $s ^ { t }$ as a deterministic mapping of $r$ , the update requests so far $u ^ { \\le t } = ( \\bar { u ^ { 1 } } , \\dots , u ^ { t } )$ , and the original data set $D ^ { 0 }$ . We write $s ^ { t } = g ^ { t } \\bar { ( } D ^ { 0 } , u ^ { \\le t } , r \\bar { ) }$ for some deterministic mapping $g ^ { t }$ . We can therefore summarize the trajectory of the algorithms $( \\mathcal { A } , \\mathcal { R } _ { \\mathcal { A } } )$ as follows. ",
779
+ "bbox": [
780
+ 173,
781
+ 478,
782
+ 826,
783
+ 577
784
+ ],
785
+ "page_idx": 5
786
+ },
787
+ {
788
+ "type": "text",
789
+ "text": "In this view, the randomness $r$ used by the learning algorithm $\\mathcal { A }$ and the subsequent invocations of the unlearning algorithm $\\mathcal { R } _ { A }$ is represented as part of the internal state. Past analyses of unlearning algorithms have crucially assumed that $r$ is statistically independent of the updates $( \\dot { u } ^ { 1 } , u ^ { 2 } , \\dots )$ (which is the case for non-adaptive update requesters, but not for adaptive update requesters). In the following general theorem, we show that if a learning/unlearning pair satisfies unlearning guarantees against non-adaptive update requesters, and the publishing function is differentially private in the internal randomness $r$ , then the resulting algorithms also satisfy unlearning guarantees against adaptive update requesters. Note that what is important is that the publishing algorithms are differentially private in the internal randomness $r$ , not in the datapoints used for training. ",
790
+ "bbox": [
791
+ 173,
792
+ 633,
793
+ 825,
794
+ 761
795
+ ],
796
+ "page_idx": 5
797
+ },
798
+ {
799
+ "type": "text",
800
+ "text": "Theorem 4.1 (A General Theorem). Fix a pair of learning and unlearning algorithms $( \\mathcal { A } , \\mathcal { R } _ { \\mathcal { A } } )$ and the publishing functions $\\{ f _ { p u b l i s h } ^ { t } \\} _ { t }$ . Suppose for every round $t$ , the sequence of publishing functions $\\{ f _ { p u b l i s h } ^ { t ^ { \\prime } } \\} _ { t ^ { \\prime } \\leq t }$ is $( \\epsilon , \\delta )$ -differentially private in $r \\sim \\mathcal { P } ^ { m }$ , for $0 < \\epsilon \\le 1 / 2$ and $0 < \\delta < \\epsilon$ . Suppose $\\mathcal { R } _ { A }$ is a non-adaptive $( \\alpha , \\beta , \\gamma )$ -unlearning algorithm for $\\mathcal { A }$ . Then $\\mathcal { R } _ { A }$ is an $( \\alpha ^ { \\prime } , \\beta ^ { \\prime } , \\gamma ^ { \\prime } )$ -unlearning algorithm for $\\mathcal { A }$ for $\\alpha ^ { \\prime } = \\alpha + \\epsilon ^ { \\prime } , \\beta ^ { \\prime } = \\beta e ^ { \\epsilon ^ { \\prime } } + \\sqrt { \\delta ^ { \\prime } } , \\gamma ^ { \\prime } = \\gamma + \\sqrt { \\delta ^ { \\prime } }$ where $\\epsilon ^ { \\prime } = O \\left( \\epsilon ^ { 2 } m + m \\sqrt { \\delta / \\epsilon } \\right)$ and $\\delta ^ { \\prime } = e ^ { - \\epsilon ^ { 2 } m } + O \\left( m \\sqrt { \\delta / \\epsilon } \\right) .$ . ",
801
+ "bbox": [
802
+ 173,
803
+ 762,
804
+ 825,
805
+ 875
806
+ ],
807
+ "page_idx": 5
808
+ },
809
+ {
810
+ "type": "text",
811
+ "text": "The proof can be found in the Appendix, but at an intuitive level, it proceeds as follows. Because it does not change the joint distribution on update requests and internal state, we can imagine in our analysis that $r$ is redrawn after each update request from its conditional distribution, conditioned on the observed update sequence so far. Because the publishing function is differentially private in $r$ , by the fact that post-processing preserves differential privacy (Lemma 2.1), so is the update sequence. We may therefore apply the max-information bound (Theorem 2.1), which allows us to relate the conditional distribution on $r$ to its original (prior) distribution $\\mathcal { P } ^ { m }$ . But resampling $r$ from $\\mathcal { P } ^ { m }$ removes the dependence between $r$ and the update sequence, which places us in the non-adaptive case, and allows us to apply the hypothesized unlearning guarantees for nonadaptive update requesters. ",
812
+ "bbox": [
813
+ 173,
814
+ 882,
815
+ 821,
816
+ 912
817
+ ],
818
+ "page_idx": 5
819
+ },
820
+ {
821
+ "type": "table",
822
+ "img_path": "images/75b45716a089d8a2549115650460c6df9fe917ad406518bdf6dd3055e3d50ee3.jpg",
823
+ "table_caption": [
824
+ "Algorithm 2: ${ \\mathcal { A } } ^ { \\mathrm { d i s t r } }$ : Distributed Learning Algorithm "
825
+ ],
826
+ "table_footnote": [],
827
+ "table_body": "<table><tr><td>Input: dataset D = D° of size n Draw the shards: D = Sampler(D°,p), for every i ∈ [k]. Train the models: 0 = Asingle(D),for every i∈ [k]. Save the state: s°= ({D&#x27;}i∈[k],{}iε[k]) // to be used for the 1st update.</td></tr></table>",
828
+ "bbox": [
829
+ 179,
830
+ 113,
831
+ 758,
832
+ 194
833
+ ],
834
+ "page_idx": 6
835
+ },
836
+ {
837
+ "type": "text",
838
+ "text": "",
839
+ "bbox": [
840
+ 173,
841
+ 222,
842
+ 825,
843
+ 334
844
+ ],
845
+ "page_idx": 6
846
+ },
847
+ {
848
+ "type": "text",
849
+ "text": "5 Distributed Algorithms ",
850
+ "text_level": 1,
851
+ "bbox": [
852
+ 174,
853
+ 352,
854
+ 400,
855
+ 369
856
+ ],
857
+ "page_idx": 6
858
+ },
859
+ {
860
+ "type": "text",
861
+ "text": "In this section, we describe a general family of distributed learning and unlearning algorithms that are in the spirit of the “SISA” framework of Bourtoule et al. [2021] (with one crucial modification). At a high level, the SISA framework operates by first randomly dividing the data into $k$ “shards”, and separately training a model on each shard. When a new point is deleted, it is removed from the shards that contained it, and only the models corresponding to those shards are retrained. The flexibility of this methodology is that the models and training procedures used in each shard can be arbitrary, as can the aggregation done at the end to convert the resulting ensemble into predictions: however these choices are instantiated, this framework gives a $( 0 , 0 , 0 )$ -unlearning algorithm against any non-adaptive update requester (Lemma 5.1). Here we show that if the $k$ shards are selected independently of one another, then we can apply our reduction given in the previous section with $m = k$ and obtain algorithms that satisfy deletion guarantees against adaptive update requesters. ",
862
+ "bbox": [
863
+ 173,
864
+ 382,
865
+ 826,
866
+ 535
867
+ ],
868
+ "page_idx": 6
869
+ },
870
+ {
871
+ "type": "text",
872
+ "text": "A distributed learning algorithm $\\mathcal { A } ^ { \\mathrm { d i s t r } } : \\mathcal { Z } ^ { * } \\to \\Theta ^ { * }$ is described by a single-shard learning algorithm $\\mathcal { A } ^ { \\mathrm { s i n g l e } } : \\mathcal { Z } ^ { * } \\to \\Theta$ and a routine Sampler, used to select the points in a shard. Sampler, given a dataset $D$ and some probability $p \\in [ 0 , 1 ]$ , includes each element of $D$ in the shard with probability $p$ ",
873
+ "bbox": [
874
+ 174,
875
+ 540,
876
+ 823,
877
+ 583
878
+ ],
879
+ "page_idx": 6
880
+ },
881
+ {
882
+ "type": "text",
883
+ "text": "Distributed learning algorithm ${ \\mathcal { A } } ^ { \\mathrm { d i s t r } }$ creates $k$ independent shards from the dataset $D$ of size $n$ by running Sampler $k$ times and training a model with $\\bar { \\mathcal { A } } ^ { \\mathrm { s i n g l e } }$ on each shard $i \\in [ k ]$ to form an ensemble of $k$ models. To emphasize that the randomness across shards is independent, we will instantiate $k$ independent samplers $\\mathtt { S a m p l e r } _ { i }$ and training algorithms $\\mathcal { A } _ { i } ^ { \\mathrm { s i n g l e } }$ for each shard $i \\in [ k ]$ . We formally describe ${ \\mathcal { A } } ^ { \\mathrm { d i s t r } }$ in Algorithm 2. ",
884
+ "bbox": [
885
+ 174,
886
+ 588,
887
+ 825,
888
+ 662
889
+ ],
890
+ "page_idx": 6
891
+ },
892
+ {
893
+ "type": "text",
894
+ "text": "The state $s$ of the unlearning algorithm ${ \\mathcal { R } } _ { A ^ { \\mathrm { d i s t r } } }$ records the $k$ shards $\\{ D _ { i } \\} _ { i }$ and the ensemble of $k$ models $\\{ \\theta _ { i } \\} _ { i }$ . Thus $\\mathcal { S } = \\{ \\mathcal { Z } ^ { * } \\} ^ { k } \\times \\Theta ^ { k }$ . As an update request $u$ is received, the update function removes the data point from every shard that contains it (for deletion) or adds the new point to each shard with probability $p$ (for addition). In either case, only the models corresponding to shards that have been updated are retrained using $\\mathcal { A } ^ { \\mathrm { s i n g l e } }$ . We formally describe ${ \\mathcal { R } } _ { A ^ { \\mathrm { d i s t r } } }$ in Algorithm 3. ",
895
+ "bbox": [
896
+ 174,
897
+ 667,
898
+ 825,
899
+ 739
900
+ ],
901
+ "page_idx": 6
902
+ },
903
+ {
904
+ "type": "text",
905
+ "text": "First, we show that if the update requester is non-adaptive, ${ \\mathcal { R } } _ { A ^ { \\mathrm { d i s t r } } }$ is a $( 0 , 0 , 0 )$ -unlearning algorithm: Lemma 5.1. $\\mathcal { R } _ { \\mathcal { A } ^ { d i s t r } }$ is a non-adaptive $( 0 , 0 , 0 )$ -unlearning algorithm for $\\mathcal { A } ^ { d i s t r }$ . ",
906
+ "bbox": [
907
+ 173,
908
+ 746,
909
+ 823,
910
+ 779
911
+ ],
912
+ "page_idx": 6
913
+ },
914
+ {
915
+ "type": "text",
916
+ "text": "Now, by combining Lemma 5.1 and our general Theorem 4.1, we can show the following: ",
917
+ "bbox": [
918
+ 171,
919
+ 786,
920
+ 766,
921
+ 801
922
+ ],
923
+ "page_idx": 6
924
+ },
925
+ {
926
+ "type": "text",
927
+ "text": "Theorem 5.1 (Unlearning Guarantees). If for every round $t$ , the sequence of publishing functions $\\{ f _ { p u b l i s h } ^ { t ^ { \\prime } } \\} _ { t ^ { \\prime } \\leq t }$ is $( \\epsilon , \\delta )$ -differentially private in the random seeds $r \\sim \\mathcal { P } ^ { k }$ of the algorithms for $0 < \\epsilon \\leq 1 / 2$ and $0 < \\delta < \\epsilon _ { \\cdot }$ , then $\\mathcal { R } _ { \\mathcal { A } ^ { d i s t r } }$ is an $( \\alpha , \\beta , \\gamma )$ -unlearning algorithm for $\\mathcal { A } ^ { d i s t r }$ where ",
928
+ "bbox": [
929
+ 174,
930
+ 806,
931
+ 825,
932
+ 852
933
+ ],
934
+ "page_idx": 6
935
+ },
936
+ {
937
+ "type": "equation",
938
+ "img_path": "images/129e8e9ed74c537bbd51cd4895d8c06221772667ff86984801778b047e7df81f.jpg",
939
+ "text": "$$\n\\alpha = O \\left( \\epsilon ^ { 2 } k + k \\sqrt { \\delta / \\epsilon } \\right) , \\quad \\beta = \\gamma = O \\left( \\sqrt { e ^ { - \\epsilon ^ { 2 } k } + k \\sqrt { \\delta / \\epsilon } } \\right)\n$$",
940
+ "text_format": "latex",
941
+ "bbox": [
942
+ 292,
943
+ 854,
944
+ 705,
945
+ 888
946
+ ],
947
+ "page_idx": 6
948
+ },
949
+ {
950
+ "type": "text",
951
+ "text": "Next, we bound the time complexity of our algorithms: ",
952
+ "bbox": [
953
+ 174,
954
+ 897,
955
+ 535,
956
+ 912
957
+ ],
958
+ "page_idx": 6
959
+ },
960
+ {
961
+ "type": "text",
962
+ "text": "Input: dataset $D ^ { t - 1 }$ , update $u ^ { t } = ( z ^ { t } , \\bullet ^ { t } )$ , state $s ^ { t - 1 } = ( \\{ D _ { i } ^ { t - 1 } \\} _ { i \\in [ k ] } , \\{ \\theta _ { i } ^ { t - 1 } \\} _ { i \\in [ k ] } )$ \nif $\\bullet ^ { t } = { } ^ { \\prime } \\mathtt { d e l e t e } ^ { \\prime }$ then $S = \\left\\{ i \\in [ k ] : z ^ { t } \\in D _ { i } ^ { t - 1 } \\right\\} / /$ the shards $z ^ { t }$ belongs to. \nelse $S = \\{ i \\in [ k ] : \\mathtt { S a m p l e r } _ { i } ( \\{ z ^ { t } \\} , p ) \\neq \\{ \\} \\} / \\prime$ the shards $z ^ { t }$ will be added to. \nUpdate the shards: $D _ { i } ^ { t } = \\left\\{ { D _ { i } ^ { t - 1 } \\circ u } \\right.$ t if ot $i \\in S$ se , for every $i \\in [ k ]$ . \nUpdate the models: $\\theta _ { i } ^ { t } = \\Big \\{ \\mathcal { A } _ { i } ^ { \\mathrm { s i n g l e } } ( D _ { i } ^ { t } )$ if ot $i \\in S$ se , for every $i \\in [ k ]$ . \nUpdate the state: $s ^ { t } = ( \\{ D _ { i } ^ { t } \\} _ { i \\in [ k ] } , \\{ \\theta _ { i } ^ { t } \\} _ { i \\in [ k ] } ) / /$ to be used for the next update. \nOutput: {θti }i∈[k] ",
963
+ "bbox": [
964
+ 183,
965
+ 112,
966
+ 779,
967
+ 291
968
+ ],
969
+ "page_idx": 7
970
+ },
971
+ {
972
+ "type": "text",
973
+ "text": "Theorem 5.2 (Run-time Guarantees). Let $p = 1 / k$ . Suppose the publishing functions satisfy the differential privacy requirement of Theorem 5.1. Let $N ^ { t }$ denote the number of times $\\mathcal { R } _ { \\mathcal { A } } ^ { d i s t r }$ calls $\\mathcal { A } ^ { s i n g l e }$ at round $t$ . We have that $N ^ { 0 } = k$ , and for every round $t \\geq 1$ : 1) if the update requester is non-adaptive, for every $\\xi$ , with probability at least $1 - \\xi$ , $N ^ { t } \\leq 1 + \\sqrt { 2 \\log { ( 1 / \\xi ) } }$ . 2) if the update requester is adaptive, for every $\\xi$ , with probability at least 1 − ξ, $N ^ { t } \\leq 1 + \\sqrt { 2 \\log { ( ( n + t ) / \\xi ) } }$ . Furthermore, for $\\xi > \\delta ^ { \\prime }$ , with probability at least $1 - \\xi$ , we have ",
974
+ "bbox": [
975
+ 173,
976
+ 321,
977
+ 825,
978
+ 414
979
+ ],
980
+ "page_idx": 7
981
+ },
982
+ {
983
+ "type": "equation",
984
+ "img_path": "images/ae1774c441c6ddb0054e6f3f295ae6b952de2af5475d4b11fb5793e00a93a87f.jpg",
985
+ "text": "$$\n\\begin{array} { c } { { N ^ { t } \\leq 1 + \\operatorname* { m i n } \\left\\{ \\sqrt { 2 \\log \\left( 2 ( n + t ) / ( \\xi - \\delta ^ { \\prime } ) \\right) } , \\sqrt { 2 \\epsilon ^ { \\prime } + 2 \\log \\left( 2 / ( \\xi - \\delta ^ { \\prime } ) \\right) } \\right\\} } } \\\\ { { { } } } \\\\ { { = O \\left( \\epsilon ^ { 2 } k + k \\sqrt { \\delta / \\epsilon } \\right) a n d \\delta ^ { \\prime } = e ^ { - \\epsilon ^ { 2 } k } + O \\left( k \\sqrt { \\delta / \\epsilon } \\right) } } \\end{array}\n$$",
986
+ "text_format": "latex",
987
+ "bbox": [
988
+ 236,
989
+ 419,
990
+ 743,
991
+ 481
992
+ ],
993
+ "page_idx": 7
994
+ },
995
+ {
996
+ "type": "text",
997
+ "text": "The proof can be found in the appendix, but at a high level it proceeds as follows. For a deletion request, we must retrain every shard that contains the point to be deleted. For a non-adaptive deletion request, we retrain one shard in expectation and we can obtain a high probability upper bound by using a Hoeffding bound. In the adaptive case, this may no longer be true, but there are two ways to obtain upper bounds that correspond to the two bounds in our Theorem. We can provide a worst-case upper bound on the number of shards that any of the √ $n$ data points belongs to, which incurs a cost of order $\\sqrt { \\log n }$ . Alternately, we can apply max-information bounds to reduce to the non-adaptive case, using an argument that is similar to our reduction for deletion guarantees. ",
998
+ "bbox": [
999
+ 173,
1000
+ 488,
1001
+ 825,
1002
+ 599
1003
+ ],
1004
+ "page_idx": 7
1005
+ },
1006
+ {
1007
+ "type": "text",
1008
+ "text": "Remark 5.1. We note that there is an alternative algorithm that one might consider, resulting from group differential privacy. If a learning algorithm satisfies $\\frac { \\epsilon } { k }$ −differential privacy, a valid unlearning procedure is to do nothing for $k$ updates and then fully retrain on the $( k + 1 ) ^ { t h }$ update. This follows from the \u000f−differential privacy guarantee the algorithm will have for groups of size $k$ . Our algorithm substantially outperforms this alternative algorithm as well, namely because our privacy parameter degrades much slower than in this group privacy baseline. Our analysis leverages adaptive composition of privacy across the publishing functions which means that privacy degrades with the square root of the number of updates, while it degrades linearly with group privacy. Consequently the group privacy baseline would require a full retraining every $k$ updates, but our algorithm requires a full retraining only every $k ^ { 2 }$ updates. ",
1009
+ "bbox": [
1010
+ 173,
1011
+ 603,
1012
+ 825,
1013
+ 746
1014
+ ],
1015
+ "page_idx": 7
1016
+ },
1017
+ {
1018
+ "type": "text",
1019
+ "text": "5.1 Private Aggregation ",
1020
+ "text_level": 1,
1021
+ "bbox": [
1022
+ 174,
1023
+ 761,
1024
+ 352,
1025
+ 776
1026
+ ],
1027
+ "page_idx": 7
1028
+ },
1029
+ {
1030
+ "type": "text",
1031
+ "text": "We briefly describe how we serve prediction requests by privately aggregating the output of the ensemble of models such that the published predictions are differentially private in the random seeds $r$ . At each round $t$ , while $\\mathcal { R } _ { \\mathcal { A } } ^ { \\mathrm { d i s t r } }$ is waiting for the next update request $\\hat { u ^ { t + 1 } }$ , we receive prediction requests $x$ and serve predictions $\\hat { y }$ . For each prediction request, we privately aggregate the predictions made by the ensemble of models $\\{ \\theta _ { i } ^ { t } \\} _ { i }$ ; Dwork and Feldman [2018] show several ways to privately aggregate predictions (one simple technique is to use the exponential mechanism to approximate the majority vote). Suppose we aggregate the predictions made by the ensemble of models using PrivatePredi $\\mathfrak { L } _ { \\epsilon ^ { \\prime } } ^ { k } : \\bar { \\Theta } ^ { k } \\times \\mathcal { X } \\stackrel { \\left. } { \\right. } \\mathcal { Y }$ , which takes in an ensemble of $k$ models and a data point, aggregates predictions from the ensemble models, and outputs a label that is $\\epsilon ^ { \\prime }$ -differentially private in the models. If we receive $l ^ { t }$ many prediction requests $( x _ { 1 } ^ { t } , \\ldots , x _ { l ^ { t } } ^ { t } )$ before our next update request $\\boldsymbol u ^ { t + 1 }$ , we can write $( \\hat { y } _ { 1 } ^ { t } , \\dots , \\hat { y } _ { l ^ { t } } ^ { t } ) = f _ { \\mathrm { p u b l i s h } } ^ { t } ( \\{ \\theta _ { i } ^ { t } \\} _ { i } )$ where $\\begin{array} { r } { \\hat { y } _ { j } ^ { t } = \\mathtt { P r i v a t e P r e d i c t } _ { \\epsilon ^ { \\prime } } ^ { k } ( \\{ \\theta _ { i } ^ { t } \\} _ { i } , x _ { j } ^ { t } ) . } \\end{array}$ . ",
1032
+ "bbox": [
1033
+ 173,
1034
+ 786,
1035
+ 825,
1036
+ 911
1037
+ ],
1038
+ "page_idx": 7
1039
+ },
1040
+ {
1041
+ "type": "text",
1042
+ "text": "",
1043
+ "bbox": [
1044
+ 174,
1045
+ 90,
1046
+ 823,
1047
+ 125
1048
+ ],
1049
+ "page_idx": 8
1050
+ },
1051
+ {
1052
+ "type": "text",
1053
+ "text": "Theorem 5.1, tells us that desired unlearning parameters $( \\alpha , \\beta , \\gamma )$ can be obtained by guaranteeing that the sequence of predictions is $( \\epsilon , \\delta )$ differentially private in the models (and hence $r$ ), for target parameters $\\epsilon , \\delta$ . As we serve prediction requests using PrivatePredict $\\mathbf { \\Sigma } _ { \\epsilon ^ { \\prime } } ^ { k }$ our privacy loss will accumulate and eventually exhaust our budget of $( \\epsilon , \\delta )$ -differential privacy. Hence we must track our accumulated privacy loss in the state of our unlearning algorithm, and when it is exhausted, fully retrain using $\\bar { \\mathcal { A } } ^ { \\mathrm { d i s t r } }$ . This resamples $r$ and hence resets our privacy budget. Standard composition theorems (see Dwork and Roth [2014]) show that we exhaust our privacy budget (and need to fully retrain) every time the number of prediction requests made since the last full retraining exceeds $\\left\\lfloor { \\frac { \\epsilon ^ { 2 } } { 8 ( \\epsilon ^ { \\prime } ) ^ { 2 } \\ln ( { \\frac { 1 } { \\delta } } ) } } \\right\\rfloor$ We formally describe this process denoted as PrivatePredictionInteraction $( \\epsilon ^ { \\prime } , \\epsilon , \\delta , k )$ in the appendix and state its unlearning guarantee in Theorem 5.3. ",
1054
+ "bbox": [
1055
+ 173,
1056
+ 130,
1057
+ 826,
1058
+ 280
1059
+ ],
1060
+ "page_idx": 8
1061
+ },
1062
+ {
1063
+ "type": "text",
1064
+ "text": "Theorem 5.3. The models $\\{ \\{ \\theta _ { i } ^ { t } \\} _ { i } \\} _ { t }$ in PrivatePredictionInteraction $( \\epsilon ^ { \\prime } , \\epsilon , \\delta , k )$ satisfy $( \\alpha , \\beta , \\gamma )$ -unlearning guarantee for $\\mathcal { A } ^ { d i s t r }$ where $\\begin{array} { r l r } { \\alpha } & { { } = } & { O \\left( \\epsilon ^ { 2 } k + k \\sqrt { \\delta / \\epsilon } \\right) } \\end{array}$ and $\\beta , \\gamma \\quad = \\quad$ $O \\left( \\sqrt { e ^ { - \\epsilon ^ { 2 } k } + k \\sqrt { \\delta / \\epsilon } } \\right)$ , $i f 0 < \\epsilon \\leq 1 / 2$ and $0 < \\delta < \\epsilon$ . ",
1065
+ "bbox": [
1066
+ 173,
1067
+ 287,
1068
+ 825,
1069
+ 361
1070
+ ],
1071
+ "page_idx": 8
1072
+ },
1073
+ {
1074
+ "type": "text",
1075
+ "text": "6 Evaluation of Unlearning Guarantees ",
1076
+ "text_level": 1,
1077
+ "bbox": [
1078
+ 173,
1079
+ 388,
1080
+ 519,
1081
+ 407
1082
+ ],
1083
+ "page_idx": 8
1084
+ },
1085
+ {
1086
+ "type": "text",
1087
+ "text": "In this section we consider the white-box setting in which the models in each shard are made public. SISA continues to have perfect deletion guarantees against non-adaptive deletion sequences in this setting. Experimental results on CIFAR-10 [Krizhevsky and Hinton, 2009], MNIST [Lecun et al., 1998], and Fashion-MNIST [Xiao et al., 2017] show both the failure of SISA to satisfy adaptive deletion guarantees, and give evidence that differential privacy can mitigate this problem well beyond the setting of our theorems while achieving accuracy only modestly worse than SISA. The code for our experiments can be found at https://github.com/ChrisWaites/adaptive-machine-unlearning. ",
1088
+ "bbox": [
1089
+ 173,
1090
+ 428,
1091
+ 826,
1092
+ 526
1093
+ ],
1094
+ "page_idx": 8
1095
+ },
1096
+ {
1097
+ "type": "text",
1098
+ "text": "We train SISA with an ensemble of convolutional neural networks on several datasets of points with categorical labels. Given a new point at query time, each model in the ensemble votes on the most likely label and aggregates their votes. The models are exposed publicly. This scheme has perfect non-adaptive deletion guarantees. ",
1099
+ "bbox": [
1100
+ 174,
1101
+ 531,
1102
+ 825,
1103
+ 588
1104
+ ],
1105
+ "page_idx": 8
1106
+ },
1107
+ {
1108
+ "type": "text",
1109
+ "text": "To construct an adaptive deletion sequence to falsify the hypothesis that the scheme has adaptive deletion guarantees, we exploit the observation that neural networks are often overconfident in the correct label for points on which they have been trained. For each training point, we guess that it falls into the shard corresponding to the model that has the highest confidence for the correct label. We then delete points for which we guess that they fall into the first $k / 2$ of the shards, and do not delete any others. After deleting the targeted points, we compute a test statistic: the indicator of whether the average accuracy of the models from the targeted shards is lower than the average accuracy of the models from the non-targeted shards. Under full retraining, by the symmetry of the random partition, the expectation of this test statistic is 0.5. Thus under the null hypothesis that the deletion algorithm satisfies perfect deletion guarantees, the test statistic also has expectation 0.5. Therefore, to the extent that the expectation of the indicator differs from 0.5, we falsify the null hypothesis that SISA has adaptive data deletion guarantees, and larger deviations from 0.5 falsify weaker deletion guarantees. ",
1110
+ "bbox": [
1111
+ 174,
1112
+ 593,
1113
+ 825,
1114
+ 760
1115
+ ],
1116
+ "page_idx": 8
1117
+ },
1118
+ {
1119
+ "type": "text",
1120
+ "text": "We run this experiment on three datasets (CIFAR-10, MNIST, and Fashion-MNIST), and plot the results in Figure 1. We then repeat the experiment by adding various amounts of noise to the gradients in the model training process to guarantee finite levels of differential privacy (though much weaker privacy guarantees than would be needed to invoke our theorems). We observe that on each dataset, modest amounts of noise are sufficient to break our attack (i.e. $9 5 \\%$ confidence intervals for the expectation of our indicator include 0.5, and hence fail to falsify the null hypothesis) while still approaching the accuracy of our models trained without differential privacy. This is also plotted in Figure 1. This gives evidence that differential privacy can improve deletion guarantees in the presence of adaptivity even in regimes beyond which our theory gives nontrivial guarantees. ",
1121
+ "bbox": [
1122
+ 174,
1123
+ 765,
1124
+ 825,
1125
+ 891
1126
+ ],
1127
+ "page_idx": 8
1128
+ },
1129
+ {
1130
+ "type": "text",
1131
+ "text": "Full experimental details can be found in the appendix. ",
1132
+ "bbox": [
1133
+ 174,
1134
+ 897,
1135
+ 534,
1136
+ 911
1137
+ ],
1138
+ "page_idx": 8
1139
+ },
1140
+ {
1141
+ "type": "image",
1142
+ "img_path": "images/44fba5964c6c783ca2ae42a63a10ae0552b68072bfa7bccf8697ae8c62cbba64.jpg",
1143
+ "image_caption": [
1144
+ "Figure 1: The top row and bottom row show experiments with $k = 6$ and $k = 2$ shards respectively. The 3 columns report on 3 datasets. The $x$ axis denotes estimated expectation of our test statistic (the null hypothesis is expectation 0.5). The $y$ axis denotes the accuracy of the ensemble after deletion. Each point is annotated with the noise multiplier used in DP-SGD, the standard deviation of Gaussian noise applied to gradients during training. A label of 0.0 for a point represents the baseline case of no noise (original SISA algorithm). Points are affixed with $9 5 \\%$ confidence intervals along both axes (over the randomness of repeating the training/deletion experiment). Horizontal confidence intervals that overlap the line denoting expectation 0.5 fail to reject the null hypothesis that the algorithm has adaptive data deletion guarantees at $p \\leq 0 . 0 5$ . We get to this point with a level of noise addition that results in only a modest degradation in ensemble performance compared to SISA. "
1145
+ ],
1146
+ "image_footnote": [],
1147
+ "bbox": [
1148
+ 191,
1149
+ 93,
1150
+ 820,
1151
+ 373
1152
+ ],
1153
+ "page_idx": 9
1154
+ },
1155
+ {
1156
+ "type": "text",
1157
+ "text": "7 Conclusion and Discussion ",
1158
+ "text_level": 1,
1159
+ "bbox": [
1160
+ 176,
1161
+ 558,
1162
+ 426,
1163
+ 575
1164
+ ],
1165
+ "page_idx": 9
1166
+ },
1167
+ {
1168
+ "type": "text",
1169
+ "text": "We identify an important blindspot in the data deletion literature (the tenuous implicit assumption that deletion requests are independent of previously released models), and provide a very general methodology to reduce adaptive deletion guarantees to oblivious deletion guarantees. Through this reduction we get the first model and training algorithm agnostic methodology that allows for deletion of arbitrary sequences of adaptively chosen points while giving rigorous guarantees. The constants that our theorems inherit from the max information bounds of Rogers et al. [2016] are such that in most realistic settings they will not give useful parameters. But we hope that these constants will be improved in future work, and we give empirical evidence that differential privacy mitigates adaptive deletion “attacks” at very practical levels, beyond the promises of our theoretical results. We note that like for differential privacy, the $( \\alpha , \\beta , \\gamma )$ -deletion guarantees we give in this paper are parameterized, and are not meaningful absent a specification of those parameters. There is a risk with such technologies that they will be used with large values of the parameters that give only very weak guarantees, but will be described publicly in a way that glosses over this issue. We therefore recommend that if adopted in deployed products, deletion guarantees always be discussed in public in a way that is precise about what they promise, including the relevant parameter settings. ",
1170
+ "bbox": [
1171
+ 173,
1172
+ 599,
1173
+ 825,
1174
+ 808
1175
+ ],
1176
+ "page_idx": 9
1177
+ },
1178
+ {
1179
+ "type": "text",
1180
+ "text": "Acknowledgements ",
1181
+ "text_level": 1,
1182
+ "bbox": [
1183
+ 176,
1184
+ 842,
1185
+ 338,
1186
+ 858
1187
+ ],
1188
+ "page_idx": 9
1189
+ },
1190
+ {
1191
+ "type": "text",
1192
+ "text": "V.G., C.J., A.R., and S.S. were supported in part by NSF grants CCF-1934876 and AF-1763307, and a grant from the Simons Foundation. ",
1193
+ "bbox": [
1194
+ 174,
1195
+ 882,
1196
+ 823,
1197
+ 911
1198
+ ],
1199
+ "page_idx": 9
1200
+ },
1201
+ {
1202
+ "type": "text",
1203
+ "text": "References ",
1204
+ "text_level": 1,
1205
+ "bbox": [
1206
+ 174,
1207
+ 89,
1208
+ 267,
1209
+ 106
1210
+ ],
1211
+ "page_idx": 10
1212
+ },
1213
+ {
1214
+ "type": "text",
1215
+ "text": "Raef Bassily, Kobbi Nissim, Adam Smith, Thomas Steinke, Uri Stemmer, and Jonathan Ullman. Algorithmic stability for adaptive data analysis. SIAM Journal on Computing, (0):STOC16–377, 2021. ",
1216
+ "bbox": [
1217
+ 174,
1218
+ 114,
1219
+ 825,
1220
+ 155
1221
+ ],
1222
+ "page_idx": 10
1223
+ },
1224
+ {
1225
+ "type": "text",
1226
+ "text": "Lucas Bourtoule, Varun Chandrasekaran, Christopher Choquette-Choo, Hengrui Jia, Adelin Travers, Baiwu Zhang, David Lie, and Nicolas Papernot. Machine unlearning. In Proceedings of the 42nd IEEE Symposium on Security and Privacy, San Francisco, CA., 2021. ",
1227
+ "bbox": [
1228
+ 174,
1229
+ 166,
1230
+ 823,
1231
+ 209
1232
+ ],
1233
+ "page_idx": 10
1234
+ },
1235
+ {
1236
+ "type": "text",
1237
+ "text": "James Bradbury, Roy Frostig, Peter Hawkins, Matthew James Johnson, Chris Leary, Dougal Maclaurin, George Necula, Adam Paszke, Jake VanderPlas, Skye Wanderman-Milne, and Qiao Zhang. JAX: composable transformations of Python+NumPy programs, 2018. URL http://github.com/google/jax. ",
1238
+ "bbox": [
1239
+ 173,
1240
+ 219,
1241
+ 825,
1242
+ 276
1243
+ ],
1244
+ "page_idx": 10
1245
+ },
1246
+ {
1247
+ "type": "text",
1248
+ "text": "Yinzhi Cao and Junfeng Yang. Towards making systems forget with machine unlearning. In 2015 IEEE Symposium on Security and Privacy, pages 463–480. IEEE, 2015. ",
1249
+ "bbox": [
1250
+ 173,
1251
+ 286,
1252
+ 825,
1253
+ 316
1254
+ ],
1255
+ "page_idx": 10
1256
+ },
1257
+ {
1258
+ "type": "text",
1259
+ "text": "Cynthia Dwork and Vitaly Feldman. Privacy-preserving prediction. CoRR, abs/1803.10266, 2018. URL http://arxiv.org/abs/1803.10266. ",
1260
+ "bbox": [
1261
+ 169,
1262
+ 325,
1263
+ 826,
1264
+ 356
1265
+ ],
1266
+ "page_idx": 10
1267
+ },
1268
+ {
1269
+ "type": "text",
1270
+ "text": "Cynthia Dwork and Aaron Roth. The algorithmic foundations of differential privacy. Foundations and Trends® in Theoretical Computer Science, 9(3–4):211–407, 2014. ",
1271
+ "bbox": [
1272
+ 169,
1273
+ 364,
1274
+ 825,
1275
+ 395
1276
+ ],
1277
+ "page_idx": 10
1278
+ },
1279
+ {
1280
+ "type": "text",
1281
+ "text": "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, 2006a. ",
1282
+ "bbox": [
1283
+ 178,
1284
+ 404,
1285
+ 825,
1286
+ 448
1287
+ ],
1288
+ "page_idx": 10
1289
+ },
1290
+ {
1291
+ "type": "text",
1292
+ "text": "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, 2006b. ",
1293
+ "bbox": [
1294
+ 173,
1295
+ 457,
1296
+ 823,
1297
+ 488
1298
+ ],
1299
+ "page_idx": 10
1300
+ },
1301
+ {
1302
+ "type": "text",
1303
+ "text": "Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Roth. The reusable holdout: Preserving validity in adaptive data analysis. Science, 349(6248):636–638, 2015a. ",
1304
+ "bbox": [
1305
+ 173,
1306
+ 497,
1307
+ 826,
1308
+ 539
1309
+ ],
1310
+ "page_idx": 10
1311
+ },
1312
+ {
1313
+ "type": "text",
1314
+ "text": "Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Roth. Generalization in adaptive data analysis and holdout reuse. In Proceedings of the 28th International Conference on Neural Information Processing Systems-Volume 2, pages 2350–2358, 2015b. ",
1315
+ "bbox": [
1316
+ 173,
1317
+ 549,
1318
+ 826,
1319
+ 593
1320
+ ],
1321
+ "page_idx": 10
1322
+ },
1323
+ {
1324
+ "type": "text",
1325
+ "text": "Cynthia Dwork, Vitaly Feldman, Moritz Hardt, Toniann Pitassi, Omer Reingold, and Aaron Leon Roth. Preserving statistical validity in adaptive data analysis. In Proceedings of the forty-seventh annual ACM symposium on Theory of computing, pages 117–126, 2015c. ",
1326
+ "bbox": [
1327
+ 176,
1328
+ 603,
1329
+ 825,
1330
+ 647
1331
+ ],
1332
+ "page_idx": 10
1333
+ },
1334
+ {
1335
+ "type": "text",
1336
+ "text": "Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confidence information and basic countermeasures. In Indrajit Ray, Ninghui Li, and Christopher Kruegel, editors, Proceedings of the 22nd ACM SIGSAC Conference on Computer and Communications Security, Denver, CO, USA, October 12-16, 2015, pages 1322–1333. ACM, 2015. doi: 10.1145/ 2810103.2813677. URL https://doi.org/10.1145/2810103.2813677. ",
1337
+ "bbox": [
1338
+ 174,
1339
+ 656,
1340
+ 826,
1341
+ 727
1342
+ ],
1343
+ "page_idx": 10
1344
+ },
1345
+ {
1346
+ "type": "text",
1347
+ "text": "Antonio Ginart, Melody Y. Guan, Gregory Valiant, and James Zou. Making AI forget you: Data deletion in machine learning. CoRR, abs/1907.05012, 2019. URL http://arxiv.org/abs/ 1907.05012. ",
1348
+ "bbox": [
1349
+ 174,
1350
+ 737,
1351
+ 826,
1352
+ 780
1353
+ ],
1354
+ "page_idx": 10
1355
+ },
1356
+ {
1357
+ "type": "text",
1358
+ "text": "Aditya Golatkar, Alessandro Achille, Avinash Ravichandran, Marzia Polito, and Stefano Soatto. Mixed-privacy forgetting in deep networks. arXiv preprint arXiv:2012.13431, 2020a. ",
1359
+ "bbox": [
1360
+ 168,
1361
+ 790,
1362
+ 825,
1363
+ 820
1364
+ ],
1365
+ "page_idx": 10
1366
+ },
1367
+ {
1368
+ "type": "text",
1369
+ "text": "Aditya Golatkar, Alessandro Achille, and Stefano Soatto. Forgetting outside the box: Scrubbing deep networks of information accessible from input-output observations. In European Conference on Computer Vision, pages 383–398. Springer, 2020b. ",
1370
+ "bbox": [
1371
+ 174,
1372
+ 829,
1373
+ 823,
1374
+ 872
1375
+ ],
1376
+ "page_idx": 10
1377
+ },
1378
+ {
1379
+ "type": "text",
1380
+ "text": "Chuan Guo, Tom Goldstein, Awni Hannun, and Laurens van der Maaten. Certified data removal from machine learning models. arXiv preprint arXiv:1911.03030, 2019. ",
1381
+ "bbox": [
1382
+ 174,
1383
+ 883,
1384
+ 821,
1385
+ 911
1386
+ ],
1387
+ "page_idx": 10
1388
+ },
1389
+ {
1390
+ "type": "text",
1391
+ "text": "Avinatan Hassidim, Haim Kaplan, Yishay Mansour, Yossi Matias, and Uri Stemmer. Adversarially robust streaming algorithms via differential privacy. In Hugo Larochelle, Marc’Aurelio Ranzato, Raia Hadsell, Maria-Florina Balcan, and Hsuan-Tien Lin, editors, Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS 2020, December 6-12, 2020, virtual, 2020. URL https://proceedings.neurips. cc/paper/2020/hash/0172d289da48c48de8c5ebf3de9f7ee1-Abstract.html. ",
1392
+ "bbox": [
1393
+ 174,
1394
+ 90,
1395
+ 826,
1396
+ 174
1397
+ ],
1398
+ "page_idx": 11
1399
+ },
1400
+ {
1401
+ "type": "text",
1402
+ "text": "The U.K. Information Commissioner’s Office ICO. Guidance on the ai auditing framework. Draft Consultation, 2020. URL https://ico.org.uk/media/about-the-ico/consultations/ 2617219/guidance-on-the-ai-auditing-framework-draft-for-consultation.pdf. ",
1403
+ "bbox": [
1404
+ 174,
1405
+ 184,
1406
+ 826,
1407
+ 227
1408
+ ],
1409
+ "page_idx": 11
1410
+ },
1411
+ {
1412
+ "type": "text",
1413
+ "text": "Christopher Jung, Katrina Ligett, Seth Neel, Aaron Roth, Saeed Sharifi-Malvajerdi, and Moshe Shenfeld. A new analysis of differential privacy’s generalization guarantees. In 11th Innovations in Theoretical Computer Science Conference (ITCS 2020), volume 151, page 31. Schloss Dagstuhl– Leibniz-Zentrum fuer Informatik, 2020. ",
1414
+ "bbox": [
1415
+ 174,
1416
+ 234,
1417
+ 826,
1418
+ 291
1419
+ ],
1420
+ "page_idx": 11
1421
+ },
1422
+ {
1423
+ "type": "text",
1424
+ "text": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. 2009. ",
1425
+ "bbox": [
1426
+ 171,
1427
+ 300,
1428
+ 825,
1429
+ 315
1430
+ ],
1431
+ "page_idx": 11
1432
+ },
1433
+ {
1434
+ "type": "text",
1435
+ "text": "Yann Lecun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document recognition. In Proceedings of the IEEE, pages 2278–2324, 1998. ",
1436
+ "bbox": [
1437
+ 174,
1438
+ 323,
1439
+ 823,
1440
+ 353
1441
+ ],
1442
+ "page_idx": 11
1443
+ },
1444
+ {
1445
+ "type": "text",
1446
+ "text": "Seth Neel and Aaron Roth. Mitigating bias in adaptive data gathering via differential privacy. In International Conference on Machine Learning, pages 3720–3729. PMLR, 2018. ",
1447
+ "bbox": [
1448
+ 174,
1449
+ 361,
1450
+ 821,
1451
+ 391
1452
+ ],
1453
+ "page_idx": 11
1454
+ },
1455
+ {
1456
+ "type": "text",
1457
+ "text": "Seth Neel, Aaron Roth, and Saeed Sharifi-Malvajerdi. Descent-to-delete: Gradient-based methods for machine unlearning. In Algorithmic Learning Theory, pages 931–962. PMLR, 2021. ",
1458
+ "bbox": [
1459
+ 174,
1460
+ 398,
1461
+ 823,
1462
+ 429
1463
+ ],
1464
+ "page_idx": 11
1465
+ },
1466
+ {
1467
+ "type": "text",
1468
+ "text": "Nicolas Papernot, Shuang Song, Ilya Mironov, Ananth Raghunathan, Kunal Talwar, and Úlfar Erlingsson. Scalable private learning with pate, 2018. ",
1469
+ "bbox": [
1470
+ 174,
1471
+ 438,
1472
+ 825,
1473
+ 467
1474
+ ],
1475
+ "page_idx": 11
1476
+ },
1477
+ {
1478
+ "type": "text",
1479
+ "text": "Nicolas Papernot, Abhradeep Thakurta, Shuang Song, Steve Chien, and Ulfar Erlingsson. Tempered sigmoid activations for deep learning with differential privacy. The 35th AAAI Conference on Artificial Intelligence, 2021. ",
1480
+ "bbox": [
1481
+ 174,
1482
+ 476,
1483
+ 821,
1484
+ 518
1485
+ ],
1486
+ "page_idx": 11
1487
+ },
1488
+ {
1489
+ "type": "text",
1490
+ "text": "Ryan Rogers, Aaron Roth, Adam Smith, and Om Thakkar. Max-information, differential privacy, and post-selection hypothesis testing. In 2016 IEEE 57th Annual Symposium on Foundations of Computer Science (FOCS), pages 487–494. IEEE, 2016. ",
1491
+ "bbox": [
1492
+ 173,
1493
+ 527,
1494
+ 825,
1495
+ 570
1496
+ ],
1497
+ "page_idx": 11
1498
+ },
1499
+ {
1500
+ "type": "text",
1501
+ "text": "Ayush Sekhari, Jayadev Acharya, Gautam Kamath, and Ananda Theertha Suresh. Remember what you want to forget: Algorithms for machine unlearning. arXiv preprint arXiv:2103.03279, 2021. ",
1502
+ "bbox": [
1503
+ 171,
1504
+ 579,
1505
+ 823,
1506
+ 608
1507
+ ],
1508
+ "page_idx": 11
1509
+ },
1510
+ {
1511
+ "type": "text",
1512
+ "text": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In 2017 IEEE Symposium on Security and Privacy (SP), pages 3–18. IEEE, 2017. ",
1513
+ "bbox": [
1514
+ 173,
1515
+ 616,
1516
+ 825,
1517
+ 659
1518
+ ],
1519
+ "page_idx": 11
1520
+ },
1521
+ {
1522
+ "type": "text",
1523
+ "text": "Michael Veale, Reuben Binns, and Lilian Edwards. Algorithms that remember: Model inversion attacks and data protection law. CoRR, abs/1807.04644, 2018. URL http://arxiv.org/abs/ 1807.04644. ",
1524
+ "bbox": [
1525
+ 171,
1526
+ 667,
1527
+ 823,
1528
+ 709
1529
+ ],
1530
+ "page_idx": 11
1531
+ },
1532
+ {
1533
+ "type": "text",
1534
+ "text": "Han Xiao, Kashif Rasul, and Roland Vollgraf. Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms. 2017. ",
1535
+ "bbox": [
1536
+ 171,
1537
+ 719,
1538
+ 823,
1539
+ 748
1540
+ ],
1541
+ "page_idx": 11
1542
+ }
1543
+ ]
parse/train/nWSZ30wrEw3/nWSZ30wrEw3_middle.json ADDED
The diff for this file is too large to render. See raw diff
 
parse/train/nWSZ30wrEw3/nWSZ30wrEw3_model.json ADDED
The diff for this file is too large to render. See raw diff